| 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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 | 171 |
| 172 # TODO(sievers): Split java code into components. Not everything | 172 # TODO(sievers): Split java code into components. Not everything |
| 173 # is really all that UI related here. | 173 # is really all that UI related here. |
| 174 if (android_java_ui) { | 174 if (android_java_ui) { |
| 175 DEPRECATED_java_in_dir = "java/src" | 175 DEPRECATED_java_in_dir = "java/src" |
| 176 | 176 |
| 177 srcjar_deps += [ | 177 srcjar_deps += [ |
| 178 ":custom_tabs_service_aidl", | 178 ":custom_tabs_service_aidl", |
| 179 "//chrome:page_info_connection_type_javagen", | 179 "//chrome:page_info_connection_type_javagen", |
| 180 "//components/enhanced_bookmarks:enhanced_bookmarks_java_enums_srcjar", | 180 "//components/enhanced_bookmarks:enhanced_bookmarks_java_enums_srcjar", |
| 181 "//components/infobars/core:infobar_enums_java", |
| 181 "//components/offline_pages:offline_page_feature_enums_java", | 182 "//components/offline_pages:offline_page_feature_enums_java", |
| 182 "//components/offline_pages:offline_page_model_enums_java", | 183 "//components/offline_pages:offline_page_model_enums_java", |
| 183 "//components/omnibox/browser:autocomplete_match_type_javagen", | 184 "//components/omnibox/browser:autocomplete_match_type_javagen", |
| 184 "//components/security_state:security_state_enums_java", | 185 "//components/security_state:security_state_enums_java", |
| 185 ] | 186 ] |
| 186 | 187 |
| 187 deps += [ | 188 deps += [ |
| 188 ":chrome_java_resources", | 189 ":chrome_java_resources", |
| 189 ":document_tab_model_info_proto_java", | 190 ":document_tab_model_info_proto_java", |
| 190 "//components/bookmarks/common/android:bookmarks_java", | 191 "//components/bookmarks/common/android:bookmarks_java", |
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 575 apk_name = "ChromeSyncShellTest" | 576 apk_name = "ChromeSyncShellTest" |
| 576 apk_under_test = ":chrome_sync_shell_apk" | 577 apk_under_test = ":chrome_sync_shell_apk" |
| 577 android_manifest = chrome_sync_shell_test_apk_manifest | 578 android_manifest = chrome_sync_shell_test_apk_manifest |
| 578 deps = [ | 579 deps = [ |
| 579 ":chrome_sync_shell_test_apk_java", | 580 ":chrome_sync_shell_test_apk_java", |
| 580 ":chrome_sync_shell_test_apk_manifest", | 581 ":chrome_sync_shell_test_apk_manifest", |
| 581 ] | 582 ] |
| 582 isolate_file = "../chrome_sync_shell_test_apk.isolate" | 583 isolate_file = "../chrome_sync_shell_test_apk.isolate" |
| 583 proguard_enabled = !is_debug | 584 proguard_enabled = !is_debug |
| 584 } | 585 } |
| OLD | NEW |