| 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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 } | 220 } |
| 221 | 221 |
| 222 java_cpp_enum("chrome_android_java_enums_srcjar") { | 222 java_cpp_enum("chrome_android_java_enums_srcjar") { |
| 223 sources = [ | 223 sources = [ |
| 224 "//chrome/browser/android/activity_type_ids.h", | 224 "//chrome/browser/android/activity_type_ids.h", |
| 225 "//chrome/browser/android/feedback/connectivity_checker.cc", | 225 "//chrome/browser/android/feedback/connectivity_checker.cc", |
| 226 "//chrome/browser/android/most_visited_sites.cc", | 226 "//chrome/browser/android/most_visited_sites.cc", |
| 227 "//chrome/browser/android/shortcut_info.h", | 227 "//chrome/browser/android/shortcut_info.h", |
| 228 "//chrome/browser/android/tab_android.h", | 228 "//chrome/browser/android/tab_android.h", |
| 229 "//chrome/browser/profiles/profile_metrics.h", | 229 "//chrome/browser/profiles/profile_metrics.h", |
| 230 "//chrome/browser/ssl/security_state_model.h", | 230 "//chrome/browser/ssl/security_state_model_android.h", |
| 231 "//chrome/browser/ui/android/infobars/infobar_android.h", | 231 "//chrome/browser/ui/android/infobars/infobar_android.h", |
| 232 ] | 232 ] |
| 233 } | 233 } |
| 234 | 234 |
| 235 # GYP: //chrome/chrome_browser.gypi:document_tab_model_info_proto_java | 235 # GYP: //chrome/chrome_browser.gypi:document_tab_model_info_proto_java |
| 236 proto_java_library("document_tab_model_info_proto_java") { | 236 proto_java_library("document_tab_model_info_proto_java") { |
| 237 proto_path = "java/src/org/chromium/chrome/browser/tabmodel/document" | 237 proto_path = "java/src/org/chromium/chrome/browser/tabmodel/document" |
| 238 sources = [ | 238 sources = [ |
| 239 "$proto_path/document_tab_model_info.proto", | 239 "$proto_path/document_tab_model_info.proto", |
| 240 ] | 240 ] |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 567 apk_name = "ChromeSyncShellTest" | 567 apk_name = "ChromeSyncShellTest" |
| 568 apk_under_test = ":chrome_sync_shell_apk" | 568 apk_under_test = ":chrome_sync_shell_apk" |
| 569 android_manifest = chrome_sync_shell_test_apk_manifest | 569 android_manifest = chrome_sync_shell_test_apk_manifest |
| 570 deps = [ | 570 deps = [ |
| 571 ":chrome_sync_shell_test_apk_java", | 571 ":chrome_sync_shell_test_apk_java", |
| 572 ":chrome_sync_shell_test_apk_manifest", | 572 ":chrome_sync_shell_test_apk_manifest", |
| 573 ] | 573 ] |
| 574 isolate_file = "../chrome_sync_shell_test_apk.isolate" | 574 isolate_file = "../chrome_sync_shell_test_apk.isolate" |
| 575 proguard_enabled = !is_debug | 575 proguard_enabled = !is_debug |
| 576 } | 576 } |
| OLD | NEW |