Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(732)

Side by Side Diff: android_webview/BUILD.gn

Issue 2138163002: try v8 Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « BUILD.gn ('k') | build/config/BUILDCONFIG.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | build/config/BUILDCONFIG.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698