diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-08 16:50:01 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-08 16:50:01 +0000 |
commit | 6e5e4c9b1eb16f4eb4b1f2e8c7def4e241c00048 (patch) | |
tree | 9c86caa521ee796a5231666e3890f95e2efcb5f4 /base/third_party | |
parent | 2c69d82e5561766f6242745b25b5bbe5d58b78e4 (diff) | |
download | chromium_src-6e5e4c9b1eb16f4eb4b1f2e8c7def4e241c00048.zip chromium_src-6e5e4c9b1eb16f4eb4b1f2e8c7def4e241c00048.tar.gz chromium_src-6e5e4c9b1eb16f4eb4b1f2e8c7def4e241c00048.tar.bz2 |
Pull GN @ r262225
Implement GN visibility in the build, which this new version implements
BUG=
R=scottmg@chromium.org
Review URL: https://codereview.chromium.org/217273004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262438 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/third_party')
-rw-r--r-- | base/third_party/nspr/BUILD.gn | 1 | ||||
-rw-r--r-- | base/third_party/symbolize/BUILD.gn | 1 | ||||
-rw-r--r-- | base/third_party/xdg_mime/BUILD.gn | 1 | ||||
-rw-r--r-- | base/third_party/xdg_user_dirs/BUILD.gn | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/base/third_party/nspr/BUILD.gn b/base/third_party/nspr/BUILD.gn index c67874a..eb5b45d 100644 --- a/base/third_party/nspr/BUILD.gn +++ b/base/third_party/nspr/BUILD.gn @@ -3,6 +3,7 @@ # found in the LICENSE file. static_library("nspr") { + visibility = "//base/*" sources = [ "prtime.cc", "prtime.h", diff --git a/base/third_party/symbolize/BUILD.gn b/base/third_party/symbolize/BUILD.gn index 79bc133..2d2128f5 100644 --- a/base/third_party/symbolize/BUILD.gn +++ b/base/third_party/symbolize/BUILD.gn @@ -3,6 +3,7 @@ # found in the LICENSE file. static_library("symbolize") { + visibility = "//base/*" sources = [ "config.h", "demangle.cc", diff --git a/base/third_party/xdg_mime/BUILD.gn b/base/third_party/xdg_mime/BUILD.gn index 7c61593..8abbbde 100644 --- a/base/third_party/xdg_mime/BUILD.gn +++ b/base/third_party/xdg_mime/BUILD.gn @@ -3,6 +3,7 @@ # found in the LICENSE file. static_library("xdg_mime") { + visibility = "//base/*" sources = [ "xdgmime.c", "xdgmime.h", diff --git a/base/third_party/xdg_user_dirs/BUILD.gn b/base/third_party/xdg_user_dirs/BUILD.gn index f2145b7..1065de37 100644 --- a/base/third_party/xdg_user_dirs/BUILD.gn +++ b/base/third_party/xdg_user_dirs/BUILD.gn @@ -3,6 +3,7 @@ # found in the LICENSE file. static_library("xdg_user_dirs") { + visibility = "//base/*" sources = [ "xdg_user_dir_lookup.cc", "xdg_user_dir_lookup.h", |