| 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 "--srcjar", | 223 "--srcjar", |
| 224 rebase_path(_output_path, root_build_dir), | 224 rebase_path(_output_path, root_build_dir), |
| 225 ] | 225 ] |
| 226 } | 226 } |
| 227 | 227 |
| 228 java_cpp_enum("chrome_android_java_enums_srcjar") { | 228 java_cpp_enum("chrome_android_java_enums_srcjar") { |
| 229 sources = [ | 229 sources = [ |
| 230 "//chrome/browser/android/activity_type_ids.h", | 230 "//chrome/browser/android/activity_type_ids.h", |
| 231 "//chrome/browser/android/feedback/connectivity_checker.cc", | 231 "//chrome/browser/android/feedback/connectivity_checker.cc", |
| 232 "//chrome/browser/android/ntp/most_visited_sites.cc", | 232 "//chrome/browser/android/ntp/most_visited_sites.cc", |
| 233 "//chrome/browser/android/policy/policy_auditor.cc", | |
| 234 "//chrome/browser/android/shortcut_info.h", | 233 "//chrome/browser/android/shortcut_info.h", |
| 235 "//chrome/browser/android/tab_android.h", | 234 "//chrome/browser/android/tab_android.h", |
| 236 "//chrome/browser/browsing_data/browsing_data_counter_utils.h", | 235 "//chrome/browser/browsing_data/browsing_data_counter_utils.h", |
| 237 "//chrome/browser/browsing_data/browsing_data_remover.h", | 236 "//chrome/browser/browsing_data/browsing_data_remover.h", |
| 238 "//chrome/browser/profiles/profile_metrics.h", | 237 "//chrome/browser/profiles/profile_metrics.h", |
| 239 "//chrome/browser/ui/android/infobars/infobar_android.h", | 238 "//chrome/browser/ui/android/infobars/infobar_android.h", |
| 240 ] | 239 ] |
| 241 } | 240 } |
| 242 | 241 |
| 243 # GYP: //chrome/chrome_browser.gypi:document_tab_model_info_proto_java | 242 # GYP: //chrome/chrome_browser.gypi:document_tab_model_info_proto_java |
| (...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 564 instrumentation_test_apk("chrome_sync_shell_test_apk") { | 563 instrumentation_test_apk("chrome_sync_shell_test_apk") { |
| 565 apk_name = "ChromeSyncShellTest" | 564 apk_name = "ChromeSyncShellTest" |
| 566 apk_under_test = ":chrome_sync_shell_apk" | 565 apk_under_test = ":chrome_sync_shell_apk" |
| 567 android_manifest = chrome_sync_shell_test_apk_manifest | 566 android_manifest = chrome_sync_shell_test_apk_manifest |
| 568 deps = [ | 567 deps = [ |
| 569 ":chrome_sync_shell_test_apk_java", | 568 ":chrome_sync_shell_test_apk_java", |
| 570 ":chrome_sync_shell_test_apk_manifest", | 569 ":chrome_sync_shell_test_apk_manifest", |
| 571 ] | 570 ] |
| 572 proguard_enabled = !is_debug | 571 proguard_enabled = !is_debug |
| 573 } | 572 } |
| OLD | NEW |