| 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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 args = [ | 219 args = [ |
| 220 "--srcjar", | 220 "--srcjar", |
| 221 rebase_path(_output_path, root_build_dir), | 221 rebase_path(_output_path, root_build_dir), |
| 222 ] | 222 ] |
| 223 } | 223 } |
| 224 | 224 |
| 225 java_cpp_enum("chrome_android_java_enums_srcjar") { | 225 java_cpp_enum("chrome_android_java_enums_srcjar") { |
| 226 sources = [ | 226 sources = [ |
| 227 "//chrome/browser/android/activity_type_ids.h", | 227 "//chrome/browser/android/activity_type_ids.h", |
| 228 "//chrome/browser/android/feedback/connectivity_checker.cc", | 228 "//chrome/browser/android/feedback/connectivity_checker.cc", |
| 229 "//chrome/browser/android/most_visited_sites.cc", | 229 "//chrome/browser/android/ntp/most_visited_sites.cc", |
| 230 "//chrome/browser/android/shortcut_info.h", | 230 "//chrome/browser/android/shortcut_info.h", |
| 231 "//chrome/browser/android/tab_android.h", | 231 "//chrome/browser/android/tab_android.h", |
| 232 "//chrome/browser/browsing_data/browsing_data_counter_utils.h", | 232 "//chrome/browser/browsing_data/browsing_data_counter_utils.h", |
| 233 "//chrome/browser/browsing_data/browsing_data_remover.h", | 233 "//chrome/browser/browsing_data/browsing_data_remover.h", |
| 234 "//chrome/browser/profiles/profile_metrics.h", | 234 "//chrome/browser/profiles/profile_metrics.h", |
| 235 "//chrome/browser/ui/android/infobars/infobar_android.h", | 235 "//chrome/browser/ui/android/infobars/infobar_android.h", |
| 236 ] | 236 ] |
| 237 } | 237 } |
| 238 | 238 |
| 239 # GYP: //chrome/chrome_browser.gypi:document_tab_model_info_proto_java | 239 # GYP: //chrome/chrome_browser.gypi:document_tab_model_info_proto_java |
| (...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 598 apk_name = "ChromeSyncShellTest" | 598 apk_name = "ChromeSyncShellTest" |
| 599 apk_under_test = ":chrome_sync_shell_apk" | 599 apk_under_test = ":chrome_sync_shell_apk" |
| 600 android_manifest = chrome_sync_shell_test_apk_manifest | 600 android_manifest = chrome_sync_shell_test_apk_manifest |
| 601 deps = [ | 601 deps = [ |
| 602 ":chrome_sync_shell_test_apk_java", | 602 ":chrome_sync_shell_test_apk_java", |
| 603 ":chrome_sync_shell_test_apk_manifest", | 603 ":chrome_sync_shell_test_apk_manifest", |
| 604 ] | 604 ] |
| 605 isolate_file = "../chrome_sync_shell_test_apk.isolate" | 605 isolate_file = "../chrome_sync_shell_test_apk.isolate" |
| 606 proguard_enabled = !is_debug | 606 proguard_enabled = !is_debug |
| 607 } | 607 } |
| OLD | NEW |