| 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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 ] | 173 ] |
| 174 | 174 |
| 175 # TODO(sievers): Split java code into components. Not everything | 175 # TODO(sievers): Split java code into components. Not everything |
| 176 # is really all that UI related here. | 176 # is really all that UI related here. |
| 177 if (android_java_ui) { | 177 if (android_java_ui) { |
| 178 DEPRECATED_java_in_dir = "java/src" | 178 DEPRECATED_java_in_dir = "java/src" |
| 179 | 179 |
| 180 srcjar_deps += [ | 180 srcjar_deps += [ |
| 181 ":custom_tabs_service_aidl", | 181 ":custom_tabs_service_aidl", |
| 182 "//chrome:page_info_connection_type_javagen", | 182 "//chrome:page_info_connection_type_javagen", |
| 183 "//chrome:website_settings_action_javagen", |
| 183 "//components/infobars/core:infobar_enums_java", | 184 "//components/infobars/core:infobar_enums_java", |
| 184 "//components/offline_pages:offline_page_feature_enums_java", | 185 "//components/offline_pages:offline_page_feature_enums_java", |
| 185 "//components/offline_pages:offline_page_model_enums_java", | 186 "//components/offline_pages:offline_page_model_enums_java", |
| 186 "//components/omnibox/browser:autocomplete_match_javagen", | 187 "//components/omnibox/browser:autocomplete_match_javagen", |
| 187 "//components/omnibox/browser:autocomplete_match_type_javagen", | 188 "//components/omnibox/browser:autocomplete_match_type_javagen", |
| 188 "//components/security_state:security_state_enums_java", | 189 "//components/security_state:security_state_enums_java", |
| 189 "//components/signin/core/browser:investigated_scenario_java", | 190 "//components/signin/core/browser:investigated_scenario_java", |
| 190 ] | 191 ] |
| 191 | 192 |
| 192 deps += [ | 193 deps += [ |
| (...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 582 apk_name = "ChromeSyncShellTest" | 583 apk_name = "ChromeSyncShellTest" |
| 583 apk_under_test = ":chrome_sync_shell_apk" | 584 apk_under_test = ":chrome_sync_shell_apk" |
| 584 android_manifest = chrome_sync_shell_test_apk_manifest | 585 android_manifest = chrome_sync_shell_test_apk_manifest |
| 585 deps = [ | 586 deps = [ |
| 586 ":chrome_sync_shell_test_apk_java", | 587 ":chrome_sync_shell_test_apk_java", |
| 587 ":chrome_sync_shell_test_apk_manifest", | 588 ":chrome_sync_shell_test_apk_manifest", |
| 588 ] | 589 ] |
| 589 isolate_file = "../chrome_sync_shell_test_apk.isolate" | 590 isolate_file = "../chrome_sync_shell_test_apk.isolate" |
| 590 proguard_enabled = !is_debug | 591 proguard_enabled = !is_debug |
| 591 } | 592 } |
| OLD | NEW |