Skip to content

Commit

Permalink
Drop GCM (flutter#2795)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hixie authored and jason-simmons committed Jul 13, 2016
1 parent ca72520 commit 6303108
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 36 deletions.
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,7 @@ Thumbs.db
/third_party/colorama/src/
/third_party/dart-sdk/
/third_party/dejavu-fonts-ttf-2.34/ttf/*.ttf
/third_party/firebase
/third_party/freetype-android/src
/third_party/gcm/
/third_party/go/tool/
/third_party/icu/
/third_party/jsr-305/src/
Expand All @@ -58,7 +56,6 @@ Thumbs.db
/third_party/requests/src/
/third_party/robolectric/lib/
/third_party/skia/
/third_party/smhasher/src/
/third_party/yasm/binaries/
/third_party/yasm/source/patched-yasm/
/tools/grit/
Expand Down
3 changes: 0 additions & 3 deletions DEPS
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,6 @@ deps = {

'src/third_party/libjpeg_turbo':
Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + '7260e4d8b8e1e40b17f03fafdf1cd83296900f76',

'src/third_party/gcm':
'https://github.com/flutter/flutter_gcm.git@master',
}

deps_os = {
Expand Down
3 changes: 0 additions & 3 deletions build/gn_migration.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,6 @@
'../third_party/mojo/mojo_edk_tests.gyp:mojo_public_utility_unittests',
'../third_party/pdfium/samples/samples.gyp:pdfium_diff',
'../third_party/pdfium/samples/samples.gyp:pdfium_test',
'../third_party/smhasher/smhasher.gyp:pmurhash',
'../tools/gn/gn.gyp:gn',
'../tools/gn/gn.gyp:generate_test_gn_data',
'../tools/gn/gn.gyp:gn_unittests',
Expand Down Expand Up @@ -332,7 +331,6 @@

# TODO(GYP): Are these needed?
#"//chrome/test:test_support_unit",
#"//third_party/smhasher:murmurhash3",
#"//ui/message_center:test_support",
],
'dependencies!': [
Expand Down Expand Up @@ -443,7 +441,6 @@
#"//third_party/libphonenumber",
#"//third_party/ots",
#"//third_party/qcms",
#"//third_party/smhasher:murmurhash3",
#"//third_party/speex",
#"//third_party/webrtc/system_wrappers",
#"//ui/native_theme",
Expand Down
20 changes: 0 additions & 20 deletions sky/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,6 @@

import("//sky/engine/bindings/bindings.gni")

declare_args() {
enable_gcm = false
enable_firebase = false
enable_google_sign_in = false
}

group("sky") {
testonly = true

Expand All @@ -31,18 +25,4 @@ group("sky") {
if (is_android) {
deps += [ "//sky/services/activity" ]
}

# TODO(mpcomplete): This is temporary until we move GCM and Firebase
# out of the engine repo.
if (enable_firebase) {
deps += [ "//third_party/firebase" ]
}

if (enable_gcm) {
deps += [ "//third_party/gcm:gcm" ]
}

if (enable_google_sign_in) {
deps += [ "//third_party/google_sign_in" ]
}
}
6 changes: 0 additions & 6 deletions sky/tools/gn
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,6 @@ def to_gn_args(args):
gn_args['use_goma'] = False
gn_args['goma_dir'] = None

gn_args['enable_firebase'] = args.enable_firebase
gn_args['enable_gcm'] = args.enable_gcm
gn_args['enable_google_sign_in'] = args.enable_google_sign_in
gn_args['use_glfw'] = args.use_glfw

return gn_args
Expand Down Expand Up @@ -141,9 +138,6 @@ def parse_args(args):
parser.add_argument('--target-sysroot', type=str)
parser.add_argument('--toolchain-prefix', type=str)

parser.add_argument('--enable-firebase', action='store_true', default=False)
parser.add_argument('--enable-gcm', action='store_true', default=False)
parser.add_argument('--enable-google-sign-in', action='store_true', default=False)
parser.add_argument('--use-glfw', action='store_true', default=False)

return parser.parse_args(args)
Expand Down
1 change: 0 additions & 1 deletion third_party/gcm
Submodule gcm deleted from aba2f7

0 comments on commit 6303108

Please sign in to comment.