summaryrefslogtreecommitdiffstats
path: root/build/config
diff options
context:
space:
mode:
authorwzhong <wzhong@chromium.org>2016-01-12 12:02:49 -0800
committerCommit bot <commit-bot@chromium.org>2016-01-12 20:04:20 +0000
commitf36b8e8274a5f07914c27a1abefb38f4c9a6ec24 (patch)
tree30c73edced7f10e01b78fa6a34777783a8cebba6 /build/config
parent82ef4cd7095c86fe780fe95bcdb180e67db014ee (diff)
downloadchromium_src-f36b8e8274a5f07914c27a1abefb38f4c9a6ec24.zip
chromium_src-f36b8e8274a5f07914c27a1abefb38f4c9a6ec24.tar.gz
chromium_src-f36b8e8274a5f07914c27a1abefb38f4c9a6ec24.tar.bz2
Fix typo
GN string needs double rather than single quote. BUG= Review URL: https://codereview.chromium.org/1576113005 Cr-Commit-Position: refs/heads/master@{#368961}
Diffstat (limited to 'build/config')
-rw-r--r--build/config/chromecast/BUILD.gn3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/config/chromecast/BUILD.gn b/build/config/chromecast/BUILD.gn
index 31edbea..f7a1f50 100644
--- a/build/config/chromecast/BUILD.gn
+++ b/build/config/chromecast/BUILD.gn
@@ -11,10 +11,11 @@ config("static_config") {
# We want to statically link libstdc++/libgcc.
"-static-libstdc++",
"-static-libgcc",
+
# Don't allow visible symbols from libraries that contain
# assembly code with symbols that aren't hidden properly.
# http://b/26390825
- '-Wl,--exclude-libs=libffmpeg.a',
+ "-Wl,--exclude-libs=libffmpeg.a",
]
}