diff options
author | Brett Wilson <brettw@chromium.org> | 2014-09-08 16:36:48 -0700 |
---|---|---|
committer | Brett Wilson <brettw@chromium.org> | 2014-09-08 16:36:48 -0700 |
commit | edbf8ac5c5381a9e0dcc32032eafb823f571d7df (patch) | |
tree | 421166e19a563cde31d45d4e2509a013cbb3d7ed /BUILD.gn | |
parent | 1efeeeb1d9d74dc50e7a62859c1944158e72560e (diff) | |
download | pdfium-edbf8ac5c5381a9e0dcc32032eafb823f571d7df.tar.xz |
Convert GN visibility to be a list.chromium/2155chromium/2154chromium/2152
GN visibility currently allows either string or list types, but this is causing
some problems for some templates. I'm going to require it to be lists, so am
changing all callers before pushing the new binary.
R=jam@chromium.org
Review URL: https://codereview.chromium.org/555523002
Diffstat (limited to 'BUILD.gn')
-rw-r--r-- | BUILD.gn | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -116,7 +116,7 @@ static_library("pdfium") { } # Targets below this are only visible within this file. -visibility = ":*" +visibility = [ ":*" ] component("safemath") { sources = [ |