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

Side by Side Diff: android_webview/BUILD.gn

Issue 1948223003: 💦Rename libmonochrome target to monochrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 | « no previous file | no next file » | 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 357 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698