| 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("//android_webview/webview_repack_locales_list.gni") | 5 import("//android_webview/webview_repack_locales_list.gni") |
| 6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
| 7 import("//build/config/android/rules.gni") | 7 import("//build/config/android/rules.gni") |
| 8 import("//build/util/process_version.gni") | 8 import("//build/util/process_version.gni") |
| 9 import("//chrome/android/chrome_public_apk_tmpl.gni") | 9 import("//chrome/android/chrome_public_apk_tmpl.gni") |
| 10 import("//chrome/android/monochrome_android_manifest_jinja_variables.gni") | 10 import("//chrome/android/monochrome_android_manifest_jinja_variables.gni") |
| (...skipping 629 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 640 shared_library("monochrome") { | 640 shared_library("monochrome") { |
| 641 sources = [ | 641 sources = [ |
| 642 "../app/android/chrome_main_delegate_android_initializer.cc", | 642 "../app/android/chrome_main_delegate_android_initializer.cc", |
| 643 "../browser/android/monochrome_entry_point.cc", | 643 "../browser/android/monochrome_entry_point.cc", |
| 644 ] | 644 ] |
| 645 deps = [ | 645 deps = [ |
| 646 "//android_webview:common", | 646 "//android_webview:common", |
| 647 "//chrome:chrome_android_core", | 647 "//chrome:chrome_android_core", |
| 648 ] | 648 ] |
| 649 | 649 |
| 650 configs -= [ "//build/config/android:hide_all_but_jni_onload" ] | 650 configs -= [ "//build/config/android:hide_native_jni_exports" ] |
| 651 configs += [ "//build/config/android:hide_all_but_jni" ] | |
| 652 if (is_android && use_order_profiling) { | 651 if (is_android && use_order_profiling) { |
| 653 deps += [ "//tools/cygprofile" ] | 652 deps += [ "//tools/cygprofile" ] |
| 654 } | 653 } |
| 655 | 654 |
| 656 public_configs = extra_chrome_shared_library_configs | 655 public_configs = extra_chrome_shared_library_configs |
| 657 } | 656 } |
| 658 } else { | 657 } else { |
| 659 group("monochrome_secondary_abi_lib") { | 658 group("monochrome_secondary_abi_lib") { |
| 660 public_deps = [ | 659 public_deps = [ |
| 661 ":monochrome($android_secondary_abi_toolchain)", | 660 ":monochrome($android_secondary_abi_toolchain)", |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 833 apk_name = "ChromeSyncShellTest" | 832 apk_name = "ChromeSyncShellTest" |
| 834 apk_under_test = ":chrome_sync_shell_apk" | 833 apk_under_test = ":chrome_sync_shell_apk" |
| 835 android_manifest = chrome_sync_shell_test_apk_manifest | 834 android_manifest = chrome_sync_shell_test_apk_manifest |
| 836 android_manifest_dep = ":chrome_sync_shell_test_apk_manifest" | 835 android_manifest_dep = ":chrome_sync_shell_test_apk_manifest" |
| 837 deps = [ | 836 deps = [ |
| 838 ":chrome_sync_shell_test_apk_java", | 837 ":chrome_sync_shell_test_apk_java", |
| 839 "//third_party/android_support_test_runner:runner_java", | 838 "//third_party/android_support_test_runner:runner_java", |
| 840 ] | 839 ] |
| 841 proguard_enabled = !is_java_debug | 840 proguard_enabled = !is_java_debug |
| 842 } | 841 } |
| OLD | NEW |