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

Unified Diff: Source/modules/BUILD.gn

Issue 550333003: Convert GN visibility to lists. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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 | « Source/devtools/BUILD.gn ('k') | Source/platform/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/BUILD.gn
diff --git a/Source/modules/BUILD.gn b/Source/modules/BUILD.gn
index 79509345fd54506cfaadde7f295ac2d66f7b5a09..a6c6cbde3eb1de61d9d2ba1eb76c19b80383e63b 100644
--- a/Source/modules/BUILD.gn
+++ b/Source/modules/BUILD.gn
@@ -9,11 +9,12 @@ import("//third_party/WebKit/Source/build/make_file_arrays.gni")
import("//third_party/WebKit/Source/build/scripts/scripts.gni")
import("//third_party/WebKit/Source/modules/modules.gni")
-visibility = "//third_party/WebKit/Source/*"
+visibility = [ "//third_party/WebKit/Source/*" ]
# GYP version: WebKit/Source/modules/modules.gyp:modules
source_set("modules") {
- visibility = "//third_party/WebKit/*"
+ visibility = [] # Allow re-assignment of list.
+ visibility = [ "//third_party/WebKit/*" ]
sources = rebase_path(modules_files, ".", "//")
sources += bindings_modules_v8_files
« no previous file with comments | « Source/devtools/BUILD.gn ('k') | Source/platform/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698