| OLD | NEW |
| 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 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 415 "//chrome/test/data/google/", | 415 "//chrome/test/data/google/", |
| 416 "//chrome/test/data/image_search/valid.png", | 416 "//chrome/test/data/image_search/valid.png", |
| 417 "//chrome/test/data/navigation_interception/", | 417 "//chrome/test/data/navigation_interception/", |
| 418 "//chrome/test/data/notifications/", | 418 "//chrome/test/data/notifications/", |
| 419 "//chrome/test/data/popup_blocker/", | 419 "//chrome/test/data/popup_blocker/", |
| 420 "//chrome/test/data/push_messaging/", | 420 "//chrome/test/data/push_messaging/", |
| 421 "//chrome/test/data/translate/", | 421 "//chrome/test/data/translate/", |
| 422 "//chrome/test/data/webapps/", | 422 "//chrome/test/data/webapps/", |
| 423 "//chrome/test/media_router/resources/", | 423 "//chrome/test/media_router/resources/", |
| 424 "//content/test/data/android/geolocation.html", | 424 "//content/test/data/android/geolocation.html", |
| 425 "//content/test/data/android/media_permissions.html", |
| 425 "//content/test/data/media/getusermedia.html", | 426 "//content/test/data/media/getusermedia.html", |
| 426 "//content/test/data/media/session/", | 427 "//content/test/data/media/session/", |
| 427 "//content/test/data/media/webrtc_test_utilities.js", | 428 "//content/test/data/media/webrtc_test_utilities.js", |
| 428 ] | 429 ] |
| 429 } | 430 } |
| 430 | 431 |
| 431 # Overrides icon / name defined in chrome_java_resources. | 432 # Overrides icon / name defined in chrome_java_resources. |
| 432 android_resources("chrome_public_apk_resources") { | 433 android_resources("chrome_public_apk_resources") { |
| 433 resource_dirs = [ "java/res_chromium" ] | 434 resource_dirs = [ "java/res_chromium" ] |
| 434 | 435 |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 644 instrumentation_test_apk("chrome_sync_shell_test_apk") { | 645 instrumentation_test_apk("chrome_sync_shell_test_apk") { |
| 645 apk_name = "ChromeSyncShellTest" | 646 apk_name = "ChromeSyncShellTest" |
| 646 apk_under_test = ":chrome_sync_shell_apk" | 647 apk_under_test = ":chrome_sync_shell_apk" |
| 647 android_manifest = chrome_sync_shell_test_apk_manifest | 648 android_manifest = chrome_sync_shell_test_apk_manifest |
| 648 android_manifest_dep = ":chrome_sync_shell_test_apk_manifest" | 649 android_manifest_dep = ":chrome_sync_shell_test_apk_manifest" |
| 649 deps = [ | 650 deps = [ |
| 650 ":chrome_sync_shell_test_apk_java", | 651 ":chrome_sync_shell_test_apk_java", |
| 651 ] | 652 ] |
| 652 proguard_enabled = !is_java_debug | 653 proguard_enabled = !is_java_debug |
| 653 } | 654 } |
| OLD | NEW |