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=kjellander@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/25439004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@7111 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
brettw@chromium.org
2014-09-08 22:45:18 +00:00
parent 7118e61669
commit 519c9e207d
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@
# be found in the AUTHORS file in the root of the source tree.
config("internal_config") {
visibility = ":*" # Only targets in this file can depend on this.
visibility = [ ":*" ] # Only targets in this file can depend on this.
include_dirs = [
"interface",
"../interface",

View File

@@ -9,7 +9,7 @@
import("../../build/webrtc.gni")
config("internal_config") {
visibility = ":*" # Only targets in this file can depend on this.
visibility = [ ":*" ] # Only targets in this file can depend on this.
include_dirs = [
"interface",
"../interface",