| 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 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 | 302 |
| 303 # GYP: //chrome/chrome_tests.gypi:chrome_junit_tests | 303 # GYP: //chrome/chrome_tests.gypi:chrome_junit_tests |
| 304 junit_binary("chrome_junit_tests") { | 304 junit_binary("chrome_junit_tests") { |
| 305 # From java_sources.gni. | 305 # From java_sources.gni. |
| 306 java_files = chrome_junit_test_java_sources | 306 java_files = chrome_junit_test_java_sources |
| 307 deps = [ | 307 deps = [ |
| 308 ":chrome_java", | 308 ":chrome_java", |
| 309 ":chrome_java_resources", | 309 ":chrome_java_resources", |
| 310 "//base:base_java", | 310 "//base:base_java", |
| 311 "//base:base_java_test_support", | 311 "//base:base_java_test_support", |
| 312 "//chrome/android/webapk/libs/common:common_java", |
| 312 "//components/bookmarks/common/android:bookmarks_java", | 313 "//components/bookmarks/common/android:bookmarks_java", |
| 313 "//components/invalidation/impl:java", | 314 "//components/invalidation/impl:java", |
| 314 "//components/sync:sync_java_test_support", | 315 "//components/sync:sync_java_test_support", |
| 315 "//components/sync/android:sync_java", | 316 "//components/sync/android:sync_java", |
| 316 "//components/web_restrictions:web_restrictions_java", | 317 "//components/web_restrictions:web_restrictions_java", |
| 317 "//content/public/android:content_java", | 318 "//content/public/android:content_java", |
| 318 "//device/geolocation:geolocation_java", | 319 "//device/geolocation:geolocation_java", |
| 319 "//net/android:net_java", | 320 "//net/android:net_java", |
| 320 "//third_party/WebKit/public:blink_headers_java", | 321 "//third_party/WebKit/public:blink_headers_java", |
| 321 "//third_party/android_tools:android_support_v7_mediarouter_java", | 322 "//third_party/android_tools:android_support_v7_mediarouter_java", |
| (...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 640 instrumentation_test_apk("chrome_sync_shell_test_apk") { | 641 instrumentation_test_apk("chrome_sync_shell_test_apk") { |
| 641 apk_name = "ChromeSyncShellTest" | 642 apk_name = "ChromeSyncShellTest" |
| 642 apk_under_test = ":chrome_sync_shell_apk" | 643 apk_under_test = ":chrome_sync_shell_apk" |
| 643 android_manifest = chrome_sync_shell_test_apk_manifest | 644 android_manifest = chrome_sync_shell_test_apk_manifest |
| 644 android_manifest_dep = ":chrome_sync_shell_test_apk_manifest" | 645 android_manifest_dep = ":chrome_sync_shell_test_apk_manifest" |
| 645 deps = [ | 646 deps = [ |
| 646 ":chrome_sync_shell_test_apk_java", | 647 ":chrome_sync_shell_test_apk_java", |
| 647 ] | 648 ] |
| 648 proguard_enabled = !is_java_debug | 649 proguard_enabled = !is_java_debug |
| 649 } | 650 } |
| OLD | NEW |