| 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/util/process_version.gni") | 7 import("//build/util/process_version.gni") |
| 8 import("//build_overrides/v8.gni") | 8 import("//build_overrides/v8.gni") |
| 9 import("//chrome/android/chrome_public_apk_tmpl.gni") | 9 import("//chrome/android/chrome_public_apk_tmpl.gni") |
| 10 import("//chrome/chrome_paks.gni") | 10 import("//chrome/chrome_paks.gni") |
| (...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 "//chrome/test/data/google/", | 470 "//chrome/test/data/google/", |
| 471 "//chrome/test/data/image_search/valid.png", | 471 "//chrome/test/data/image_search/valid.png", |
| 472 "//chrome/test/data/navigation_interception/", | 472 "//chrome/test/data/navigation_interception/", |
| 473 "//chrome/test/data/notifications/", | 473 "//chrome/test/data/notifications/", |
| 474 "//chrome/test/data/popup_blocker/", | 474 "//chrome/test/data/popup_blocker/", |
| 475 "//chrome/test/data/push_messaging/", | 475 "//chrome/test/data/push_messaging/", |
| 476 "//chrome/test/data/translate/", | 476 "//chrome/test/data/translate/", |
| 477 "//chrome/test/media_router/resources/", | 477 "//chrome/test/media_router/resources/", |
| 478 "//content/test/data/android/geolocation.html", | 478 "//content/test/data/android/geolocation.html", |
| 479 "//content/test/data/android/media_permissions.html", | 479 "//content/test/data/android/media_permissions.html", |
| 480 "//content/test/data/android/webshare.html", |
| 480 "//content/test/data/media/getusermedia.html", | 481 "//content/test/data/media/getusermedia.html", |
| 481 "//content/test/data/media/session/", | 482 "//content/test/data/media/session/", |
| 482 "//content/test/data/media/webrtc_test_utilities.js", | 483 "//content/test/data/media/webrtc_test_utilities.js", |
| 483 ] | 484 ] |
| 484 } | 485 } |
| 485 | 486 |
| 486 # Overrides icon / name defined in chrome_java_resources. | 487 # Overrides icon / name defined in chrome_java_resources. |
| 487 android_resources("chrome_public_apk_resources") { | 488 android_resources("chrome_public_apk_resources") { |
| 488 resource_dirs = [ "java/res_chromium" ] | 489 resource_dirs = [ "java/res_chromium" ] |
| 489 | 490 |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 771 instrumentation_test_apk("chrome_sync_shell_test_apk") { | 772 instrumentation_test_apk("chrome_sync_shell_test_apk") { |
| 772 apk_name = "ChromeSyncShellTest" | 773 apk_name = "ChromeSyncShellTest" |
| 773 apk_under_test = ":chrome_sync_shell_apk" | 774 apk_under_test = ":chrome_sync_shell_apk" |
| 774 android_manifest = chrome_sync_shell_test_apk_manifest | 775 android_manifest = chrome_sync_shell_test_apk_manifest |
| 775 android_manifest_dep = ":chrome_sync_shell_test_apk_manifest" | 776 android_manifest_dep = ":chrome_sync_shell_test_apk_manifest" |
| 776 deps = [ | 777 deps = [ |
| 777 ":chrome_sync_shell_test_apk_java", | 778 ":chrome_sync_shell_test_apk_java", |
| 778 ] | 779 ] |
| 779 proguard_enabled = !is_java_debug | 780 proguard_enabled = !is_java_debug |
| 780 } | 781 } |
| OLD | NEW |