Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(398)

Side by Side Diff: chrome/android/BUILD.gn

Issue 1851423003: Make Web Push use InstanceID tokens instead of GCM registrations (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@iid4default
Patch Set: Address review comments, and rewrite following rebase (e.g. no longer depends on NestedMessagePumpA… Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/android/rules.gni") 6 import("//build/config/android/rules.gni")
7 import("//build_overrides/v8.gni") 7 import("//build_overrides/v8.gni")
8 import("//chrome/android/chrome_public_apk_tmpl.gni") 8 import("//chrome/android/chrome_public_apk_tmpl.gni")
9 import("//chrome/common/features.gni") 9 import("//chrome/common/features.gni")
10 import("//chrome/version.gni") 10 import("//chrome/version.gni")
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 358
359 deps = [ 359 deps = [
360 "//base:base_java", 360 "//base:base_java",
361 "//base:base_java_test_support", 361 "//base:base_java_test_support",
362 "//chrome/android:chrome_java", 362 "//chrome/android:chrome_java",
363 "//chrome/android:chrome_java_resources", 363 "//chrome/android:chrome_java_resources",
364 "//chrome/test/android:chrome_java_test_support", 364 "//chrome/test/android:chrome_java_test_support",
365 "//components/bookmarks/common/android:bookmarks_java", 365 "//components/bookmarks/common/android:bookmarks_java",
366 "//components/dom_distiller/android:dom_distiller_core_java", 366 "//components/dom_distiller/android:dom_distiller_core_java",
367 "//components/gcm_driver/android:gcm_driver_java", 367 "//components/gcm_driver/android:gcm_driver_java",
368 "//components/gcm_driver/instance_id/android:instance_id_driver_java",
368 "//components/invalidation/impl:java", 369 "//components/invalidation/impl:java",
369 "//components/invalidation/impl:javatests", 370 "//components/invalidation/impl:javatests",
370 "//components/navigation_interception/android:navigation_interception_java", 371 "//components/navigation_interception/android:navigation_interception_java",
371 "//components/policy/android:policy_java", 372 "//components/policy/android:policy_java",
372 "//components/precache/android:precache_java", 373 "//components/precache/android:precache_java",
373 "//components/precache/android:precache_javatests", 374 "//components/precache/android:precache_javatests",
374 "//components/web_contents_delegate_android:web_contents_delegate_android_ja va", 375 "//components/web_contents_delegate_android:web_contents_delegate_android_ja va",
375 "//components/web_restrictions:web_restrictions_java", 376 "//components/web_restrictions:web_restrictions_java",
376 "//content/public/android:content_java", 377 "//content/public/android:content_java",
377 "//content/public/test/android:content_java_test_support", 378 "//content/public/test/android:content_java_test_support",
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
605 instrumentation_test_apk("chrome_sync_shell_test_apk") { 606 instrumentation_test_apk("chrome_sync_shell_test_apk") {
606 apk_name = "ChromeSyncShellTest" 607 apk_name = "ChromeSyncShellTest"
607 apk_under_test = ":chrome_sync_shell_apk" 608 apk_under_test = ":chrome_sync_shell_apk"
608 android_manifest = chrome_sync_shell_test_apk_manifest 609 android_manifest = chrome_sync_shell_test_apk_manifest
609 deps = [ 610 deps = [
610 ":chrome_sync_shell_test_apk_java", 611 ":chrome_sync_shell_test_apk_java",
611 ":chrome_sync_shell_test_apk_manifest", 612 ":chrome_sync_shell_test_apk_manifest",
612 ] 613 ]
613 proguard_enabled = !is_debug 614 proguard_enabled = !is_debug
614 } 615 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698