| 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 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 ] | 292 ] |
| 293 deps = [ | 293 deps = [ |
| 294 ":chrome_java", | 294 ":chrome_java", |
| 295 "//base:base_java", | 295 "//base:base_java", |
| 296 "//base:base_java_test_support", | 296 "//base:base_java_test_support", |
| 297 "//base:base_junit_test_support", | 297 "//base:base_junit_test_support", |
| 298 "//components/bookmarks/common/android:bookmarks_java", | 298 "//components/bookmarks/common/android:bookmarks_java", |
| 299 "//components/invalidation/impl:java", | 299 "//components/invalidation/impl:java", |
| 300 "//components/web_restrictions:web_restrictions_java", | 300 "//components/web_restrictions:web_restrictions_java", |
| 301 "//content/public/android:content_java", | 301 "//content/public/android:content_java", |
| 302 "//net/android:net_java", |
| 302 "//sync:sync_java_test_support", | 303 "//sync:sync_java_test_support", |
| 303 "//sync/android:sync_java", | 304 "//sync/android:sync_java", |
| 304 "//third_party/android_tools:android_support_v7_mediarouter_java", | 305 "//third_party/android_tools:android_support_v7_mediarouter_java", |
| 305 "//third_party/cacheinvalidation:cacheinvalidation_javalib", | 306 "//third_party/cacheinvalidation:cacheinvalidation_javalib", |
| 306 "//third_party/junit:hamcrest", | 307 "//third_party/junit:hamcrest", |
| 307 "//ui/android:ui_java", | 308 "//ui/android:ui_java", |
| 308 google_play_services_library, | 309 google_play_services_library, |
| 309 ] | 310 ] |
| 310 } | 311 } |
| 311 | 312 |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 599 apk_name = "ChromeSyncShellTest" | 600 apk_name = "ChromeSyncShellTest" |
| 600 apk_under_test = ":chrome_sync_shell_apk" | 601 apk_under_test = ":chrome_sync_shell_apk" |
| 601 android_manifest = chrome_sync_shell_test_apk_manifest | 602 android_manifest = chrome_sync_shell_test_apk_manifest |
| 602 deps = [ | 603 deps = [ |
| 603 ":chrome_sync_shell_test_apk_java", | 604 ":chrome_sync_shell_test_apk_java", |
| 604 ":chrome_sync_shell_test_apk_manifest", | 605 ":chrome_sync_shell_test_apk_manifest", |
| 605 ] | 606 ] |
| 606 isolate_file = "../chrome_sync_shell_test_apk.isolate" | 607 isolate_file = "../chrome_sync_shell_test_apk.isolate" |
| 607 proguard_enabled = !is_debug | 608 proguard_enabled = !is_debug |
| 608 } | 609 } |
| OLD | NEW |