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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 # TODO(sievers): Split java code into components. Not everything | 177 # TODO(sievers): Split java code into components. Not everything |
178 # is really all that UI related here. | 178 # is really all that UI related here. |
179 if (android_java_ui) { | 179 if (android_java_ui) { |
180 # From java_sources.gni. | 180 # From java_sources.gni. |
181 java_files = chrome_java_sources | 181 java_files = chrome_java_sources |
182 | 182 |
183 srcjar_deps += [ | 183 srcjar_deps += [ |
184 "//chrome:page_info_connection_type_javagen", | 184 "//chrome:page_info_connection_type_javagen", |
185 "//chrome:website_settings_action_javagen", | 185 "//chrome:website_settings_action_javagen", |
186 "//components/infobars/core:infobar_enums_java", | 186 "//components/infobars/core:infobar_enums_java", |
| 187 "//components/ntp_snippets:ntp_snippets_java_enums_srcjar", |
187 "//components/ntp_tiles:ntp_tiles_enums_java", | 188 "//components/ntp_tiles:ntp_tiles_enums_java", |
188 "//components/offline_pages:offline_page_model_enums_java", | 189 "//components/offline_pages:offline_page_model_enums_java", |
189 "//components/omnibox/browser:autocomplete_match_javagen", | 190 "//components/omnibox/browser:autocomplete_match_javagen", |
190 "//components/omnibox/browser:autocomplete_match_type_javagen", | 191 "//components/omnibox/browser:autocomplete_match_type_javagen", |
191 "//components/security_state:security_state_enums_java", | 192 "//components/security_state:security_state_enums_java", |
192 "//components/signin/core/browser:investigated_scenario_java", | 193 "//components/signin/core/browser:investigated_scenario_java", |
193 ] | 194 ] |
194 | 195 |
195 deps += [ | 196 deps += [ |
196 ":chrome_java_resources", | 197 ":chrome_java_resources", |
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
597 instrumentation_test_apk("chrome_sync_shell_test_apk") { | 598 instrumentation_test_apk("chrome_sync_shell_test_apk") { |
598 apk_name = "ChromeSyncShellTest" | 599 apk_name = "ChromeSyncShellTest" |
599 apk_under_test = ":chrome_sync_shell_apk" | 600 apk_under_test = ":chrome_sync_shell_apk" |
600 android_manifest = chrome_sync_shell_test_apk_manifest | 601 android_manifest = chrome_sync_shell_test_apk_manifest |
601 deps = [ | 602 deps = [ |
602 ":chrome_sync_shell_test_apk_java", | 603 ":chrome_sync_shell_test_apk_java", |
603 ":chrome_sync_shell_test_apk_manifest", | 604 ":chrome_sync_shell_test_apk_manifest", |
604 ] | 605 ] |
605 proguard_enabled = !is_java_debug | 606 proguard_enabled = !is_java_debug |
606 } | 607 } |
OLD | NEW |