| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 android_resources("chrome_java_resources") { | 49 android_resources("chrome_java_resources") { |
| 50 resource_dirs = [ | 50 resource_dirs = [ |
| 51 "java/res", | 51 "java/res", |
| 52 "//chrome/android/java/res_chromium", | 52 "//chrome/android/java/res_chromium", |
| 53 ] | 53 ] |
| 54 deps = [ | 54 deps = [ |
| 55 ":chrome_locale_paks", | 55 ":chrome_locale_paks", |
| 56 ":chrome_strings_grd", | 56 ":chrome_strings_grd", |
| 57 "//chrome/app:java_strings_grd", | 57 "//chrome/app:java_strings_grd", |
| 58 "//components/policy:app_restrictions_resources", | 58 "//components/policy:app_restrictions_resources", |
| 59 "//components/strings:components_locale_settings_grd", |
| 59 "//components/strings:components_strings_grd", | 60 "//components/strings:components_strings_grd", |
| 60 "//content/public/android:content_java_resources", | 61 "//content/public/android:content_java_resources", |
| 61 "//third_party/android_data_chart:android_data_chart_java_resources", | 62 "//third_party/android_data_chart:android_data_chart_java_resources", |
| 62 "//third_party/android_media:android_media_resources", | 63 "//third_party/android_media:android_media_resources", |
| 63 ] | 64 ] |
| 64 custom_package = "org.chromium.chrome" | 65 custom_package = "org.chromium.chrome" |
| 65 } | 66 } |
| 66 | 67 |
| 67 # GYP: //chrome/chrome.gyp:chrome_strings_grd | 68 # GYP: //chrome/chrome.gyp:chrome_strings_grd |
| 68 java_strings_grd("chrome_strings_grd") { | 69 java_strings_grd("chrome_strings_grd") { |
| (...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 593 instrumentation_test_apk("chrome_sync_shell_test_apk") { | 594 instrumentation_test_apk("chrome_sync_shell_test_apk") { |
| 594 apk_name = "ChromeSyncShellTest" | 595 apk_name = "ChromeSyncShellTest" |
| 595 apk_under_test = ":chrome_sync_shell_apk" | 596 apk_under_test = ":chrome_sync_shell_apk" |
| 596 android_manifest = chrome_sync_shell_test_apk_manifest | 597 android_manifest = chrome_sync_shell_test_apk_manifest |
| 597 deps = [ | 598 deps = [ |
| 598 ":chrome_sync_shell_test_apk_java", | 599 ":chrome_sync_shell_test_apk_java", |
| 599 ":chrome_sync_shell_test_apk_manifest", | 600 ":chrome_sync_shell_test_apk_manifest", |
| 600 ] | 601 ] |
| 601 proguard_enabled = !is_debug | 602 proguard_enabled = !is_debug |
| 602 } | 603 } |
| OLD | NEW |