Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(59)

Side by Side Diff: chrome/android/BUILD.gn

Issue 2507223002: Implement IsReadyToPay handling (Closed)
Patch Set: Use aidl Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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("//android_webview/webview_repack_locales_list.gni") 5 import("//android_webview/webview_repack_locales_list.gni")
6 import("//build/config/android/config.gni") 6 import("//build/config/android/config.gni")
7 import("//build/config/android/rules.gni") 7 import("//build/config/android/rules.gni")
8 import("//build/util/process_version.gni") 8 import("//build/util/process_version.gni")
9 import("//build_overrides/v8.gni") 9 import("//build_overrides/v8.gni")
10 import("//chrome/android/chrome_public_apk_tmpl.gni") 10 import("//chrome/android/chrome_public_apk_tmpl.gni")
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 "values-sw/android_chrome_strings.xml", 132 "values-sw/android_chrome_strings.xml",
133 "values-th/android_chrome_strings.xml", 133 "values-th/android_chrome_strings.xml",
134 "values-tr/android_chrome_strings.xml", 134 "values-tr/android_chrome_strings.xml",
135 "values-uk/android_chrome_strings.xml", 135 "values-uk/android_chrome_strings.xml",
136 "values-vi/android_chrome_strings.xml", 136 "values-vi/android_chrome_strings.xml",
137 "values-zh-rCN/android_chrome_strings.xml", 137 "values-zh-rCN/android_chrome_strings.xml",
138 "values-zh-rTW/android_chrome_strings.xml", 138 "values-zh-rTW/android_chrome_strings.xml",
139 ] 139 ]
140 } 140 }
141 141
142 android_aidl("is_ready_to_pay_service_aidl") {
143 sources = [
144 "java/src/org/chromium/IsReadyToPayService.aidl",
145 ]
146 }
147
142 android_library("chrome_java") { 148 android_library("chrome_java") {
143 deps = [ 149 deps = [
144 ":chrome_public_android_manifest", 150 ":chrome_public_android_manifest",
145 ":chrome_public_apk_template_resources", 151 ":chrome_public_apk_template_resources",
146 "//base:base_java", 152 "//base:base_java",
147 "//chrome/android/webapk/libs/client:client_java", 153 "//chrome/android/webapk/libs/client:client_java",
148 "//chrome/android/webapk/libs/common:common_java", 154 "//chrome/android/webapk/libs/common:common_java",
149 "//chrome/android/webapk/libs/runtime_library:webapk_service_aidl_java", 155 "//chrome/android/webapk/libs/runtime_library:webapk_service_aidl_java",
150 "//components/autofill/android:autofill_java", 156 "//components/autofill/android:autofill_java",
151 "//components/minidump_uploader:minidump_uploader_java", 157 "//components/minidump_uploader:minidump_uploader_java",
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 srcjar_deps = [ 200 srcjar_deps = [
195 ":chrome_android_java_enums_srcjar", 201 ":chrome_android_java_enums_srcjar",
196 ":chrome_webapk_signature_srcjar", 202 ":chrome_webapk_signature_srcjar",
197 ":chrome_android_java_google_api_keys_srcjar", 203 ":chrome_android_java_google_api_keys_srcjar",
198 ":chrome_version_srcjar", 204 ":chrome_version_srcjar",
199 ":resource_id_javagen", 205 ":resource_id_javagen",
200 "//chrome:content_setting_javagen", 206 "//chrome:content_setting_javagen",
201 "//chrome:content_settings_type_javagen", 207 "//chrome:content_settings_type_javagen",
202 "//chrome:data_use_ui_message_enum_javagen", 208 "//chrome:data_use_ui_message_enum_javagen",
203 "//chrome:signin_metrics_enum_javagen", 209 "//chrome:signin_metrics_enum_javagen",
210 ":is_ready_to_pay_service_aidl",
204 ] 211 ]
205 212
206 # Manifest used for linting (determining unused resources). 213 # Manifest used for linting (determining unused resources).
207 android_manifest = chrome_public_android_manifest 214 android_manifest = chrome_public_android_manifest
208 215
209 # TODO(sievers): Split java code into components. Not everything 216 # TODO(sievers): Split java code into components. Not everything
210 # is really all that UI related here. 217 # is really all that UI related here.
211 if (android_java_ui) { 218 if (android_java_ui) {
212 # From java_sources.gni. 219 # From java_sources.gni.
213 java_files = chrome_java_sources 220 java_files = chrome_java_sources
(...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after
747 instrumentation_test_apk("chrome_sync_shell_test_apk") { 754 instrumentation_test_apk("chrome_sync_shell_test_apk") {
748 apk_name = "ChromeSyncShellTest" 755 apk_name = "ChromeSyncShellTest"
749 apk_under_test = ":chrome_sync_shell_apk" 756 apk_under_test = ":chrome_sync_shell_apk"
750 android_manifest = chrome_sync_shell_test_apk_manifest 757 android_manifest = chrome_sync_shell_test_apk_manifest
751 android_manifest_dep = ":chrome_sync_shell_test_apk_manifest" 758 android_manifest_dep = ":chrome_sync_shell_test_apk_manifest"
752 deps = [ 759 deps = [
753 ":chrome_sync_shell_test_apk_java", 760 ":chrome_sync_shell_test_apk_java",
754 ] 761 ]
755 proguard_enabled = !is_java_debug 762 proguard_enabled = !is_java_debug
756 } 763 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698