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

Unified Diff: content/shell/BUILD.gn

Issue 544423002: Convert GN visibility variables to lists. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/plugin/BUILD.gn ('k') | extensions/generated_extensions_api.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/BUILD.gn
diff --git a/content/shell/BUILD.gn b/content/shell/BUILD.gn
index 3ef1c6d10aecf8b55f7b17cdaee7539dd962f728..0b2a34b5c386de9e525b0d5ced7cfc76be7c3a6d 100644
--- a/content/shell/BUILD.gn
+++ b/content/shell/BUILD.gn
@@ -316,7 +316,7 @@ static_library("content_shell_lib") {
}
grit("content_shell_resources_grit") {
- visibility = ":*"
+ visibility = [ ":*" ]
source = "shell_resources.grd"
outputs = [
"grit/shell_resources.h",
@@ -336,14 +336,14 @@ copy("copy_shell_resources") {
# Font copies.
if (!is_mac) {
copy("copy_ahem") {
- visibility = ":*"
+ visibility = [ ":*" ]
sources = [ "renderer/test_runner/resources/fonts/AHEM____.TTF" ]
outputs = [ "$root_out_dir/AHEM____.TTF" ]
}
}
if (use_x11) {
copy("copy_x11_fonts") {
- visibility = ":*"
+ visibility = [ ":*" ]
sources = [
"renderer/test_runner/resources/fonts/fonts.conf",
"//third_party/gardiner_mod/GardinerModBug.ttf",
@@ -354,7 +354,7 @@ if (use_x11) {
}
if (is_android) {
copy("copy_android_fonts") {
- visibility = ":*"
+ visibility = [ ":*" ]
sources = [
"renderer/test_runner/resources/fonts/android_main_fonts.xml",
"renderer/test_runner/resources/fonts/android_fallback_fonts.xml",
« no previous file with comments | « content/plugin/BUILD.gn ('k') | extensions/generated_extensions_api.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698