OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/config/locales.gni") | 7 import("//build/config/locales.gni") |
8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
9 import("system_webview_apk_tmpl.gni") | 9 import("system_webview_apk_tmpl.gni") |
10 import("webview_repack_locales.gni") | 10 import("webview_repack_locales.gni") |
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
367 ] | 367 ] |
368 } | 368 } |
369 | 369 |
370 shared_library("libwebviewchromium") { | 370 shared_library("libwebviewchromium") { |
371 deps = [ | 371 deps = [ |
372 ":webview_entry_point", | 372 ":webview_entry_point", |
373 ] | 373 ] |
374 configs -= [ "//build/config/android:hide_native_jni_exports" ] | 374 configs -= [ "//build/config/android:hide_native_jni_exports" ] |
375 } | 375 } |
376 | 376 |
377 if (defined(webview_only_libmonochrome) && webview_only_libmonochrome) { | 377 if (android_64bit_target_cpu) { |
378 shared_library("monochrome") { | 378 shared_library("monochrome") { |
379 deps = [ | 379 deps = [ |
380 ":webview_entry_point", | 380 ":webview_entry_point", |
381 ] | 381 ] |
382 configs -= [ "//build/config/android:hide_native_jni_exports" ] | 382 configs -= [ "//build/config/android:hide_native_jni_exports" ] |
383 } | 383 } |
384 } | 384 } |
385 | 385 |
386 source_set("common") { | 386 source_set("common") { |
387 sources = [ | 387 sources = [ |
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
748 android_manifest = get_target_outputs(":system_webview_manifest") | 748 android_manifest = get_target_outputs(":system_webview_manifest") |
749 android_manifest = android_manifest[1] | 749 android_manifest = android_manifest[1] |
750 android_manifest_dep = ":system_webview_manifest" | 750 android_manifest_dep = ":system_webview_manifest" |
751 deps = [ | 751 deps = [ |
752 ":system_webview_resources", | 752 ":system_webview_resources", |
753 "//android_webview/glue", | 753 "//android_webview/glue", |
754 ] | 754 ] |
755 apk_name = "SystemWebView" | 755 apk_name = "SystemWebView" |
756 } | 756 } |
757 } | 757 } |
OLD | NEW |