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 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 (defined(webview_only_libmonochrome) && webview_only_libmonochrome) { |
378 shared_library("libmonochrome") { | 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 = [ |
388 "browser/aw_browser_context.cc", | 388 "browser/aw_browser_context.cc", |
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
744 android_manifest = get_target_outputs(":system_webview_manifest") | 744 android_manifest = get_target_outputs(":system_webview_manifest") |
745 android_manifest = android_manifest[1] | 745 android_manifest = android_manifest[1] |
746 android_manifest_dep = ":system_webview_manifest" | 746 android_manifest_dep = ":system_webview_manifest" |
747 deps = [ | 747 deps = [ |
748 ":system_webview_resources", | 748 ":system_webview_resources", |
749 "//android_webview/glue", | 749 "//android_webview/glue", |
750 ] | 750 ] |
751 apk_name = "SystemWebView" | 751 apk_name = "SystemWebView" |
752 } | 752 } |
753 } | 753 } |
OLD | NEW |