| 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 "values-sk/android_chrome_strings.xml", | 130 "values-sk/android_chrome_strings.xml", |
| 131 "values-sl/android_chrome_strings.xml", | 131 "values-sl/android_chrome_strings.xml", |
| 132 "values-sr/android_chrome_strings.xml", | 132 "values-sr/android_chrome_strings.xml", |
| 133 "values-sv/android_chrome_strings.xml", | 133 "values-sv/android_chrome_strings.xml", |
| 134 "values-sw/android_chrome_strings.xml", | 134 "values-sw/android_chrome_strings.xml", |
| 135 "values-th/android_chrome_strings.xml", | 135 "values-th/android_chrome_strings.xml", |
| 136 "values-tr/android_chrome_strings.xml", | 136 "values-tr/android_chrome_strings.xml", |
| 137 "values-uk/android_chrome_strings.xml", | 137 "values-uk/android_chrome_strings.xml", |
| 138 "values-vi/android_chrome_strings.xml", | 138 "values-vi/android_chrome_strings.xml", |
| 139 "values-zh-rCN/android_chrome_strings.xml", | 139 "values-zh-rCN/android_chrome_strings.xml", |
| 140 "values-zh/android_chrome_strings.xml", | 140 "values-zh-rTW/android_chrome_strings.xml", |
| 141 ] | 141 ] |
| 142 } | 142 } |
| 143 | 143 |
| 144 # GYP: //chrome/chrome.gyp:chrome_java | 144 # GYP: //chrome/chrome.gyp:chrome_java |
| 145 android_library("chrome_java") { | 145 android_library("chrome_java") { |
| 146 deps = [ | 146 deps = [ |
| 147 ":chrome_public_apk_manifest", | 147 ":chrome_public_apk_manifest", |
| 148 ":chrome_public_apk_template_resources", | 148 ":chrome_public_apk_template_resources", |
| 149 "//base:base_java", | 149 "//base:base_java", |
| 150 "//chrome/android/webapk/libs/client:client_java", | 150 "//chrome/android/webapk/libs/client:client_java", |
| (...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 654 instrumentation_test_apk("chrome_sync_shell_test_apk") { | 654 instrumentation_test_apk("chrome_sync_shell_test_apk") { |
| 655 apk_name = "ChromeSyncShellTest" | 655 apk_name = "ChromeSyncShellTest" |
| 656 apk_under_test = ":chrome_sync_shell_apk" | 656 apk_under_test = ":chrome_sync_shell_apk" |
| 657 android_manifest = chrome_sync_shell_test_apk_manifest | 657 android_manifest = chrome_sync_shell_test_apk_manifest |
| 658 android_manifest_dep = ":chrome_sync_shell_test_apk_manifest" | 658 android_manifest_dep = ":chrome_sync_shell_test_apk_manifest" |
| 659 deps = [ | 659 deps = [ |
| 660 ":chrome_sync_shell_test_apk_java", | 660 ":chrome_sync_shell_test_apk_java", |
| 661 ] | 661 ] |
| 662 proguard_enabled = !is_java_debug | 662 proguard_enabled = !is_java_debug |
| 663 } | 663 } |
| OLD | NEW |