From edbf8ac5c5381a9e0dcc32032eafb823f571d7df Mon Sep 17 00:00:00 2001 From: Brett Wilson Date: Mon, 8 Sep 2014 16:36:48 -0700 Subject: Convert GN visibility to be a list. 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 --- BUILD.gn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BUILD.gn b/BUILD.gn index f811cf0130..c4c802eefd 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -116,7 +116,7 @@ static_library("pdfium") { } # Targets below this are only visible within this file. -visibility = ":*" +visibility = [ ":*" ] component("safemath") { sources = [ -- cgit v1.2.3