diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-17 21:53:09 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-17 21:53:09 +0000 |
commit | 1bbdb52ce17b6a46ff230ecb27fea5c9ecdbfae3 (patch) | |
tree | a05247484966290ee20050ff5c2c39a7cca889ac /third_party/opus | |
parent | 55e1899ad566c8292ab54c780625f13c5a7f60e5 (diff) | |
download | chromium_src-1bbdb52ce17b6a46ff230ecb27fea5c9ecdbfae3.zip chromium_src-1bbdb52ce17b6a46ff230ecb27fea5c9ecdbfae3.tar.gz chromium_src-1bbdb52ce17b6a46ff230ecb27fea5c9ecdbfae3.tar.bz2 |
Fix most GN clang errors.
Finally enabling Clang requires openssl and hunspell rolls. This should
fix everything else.
R=dalecurtis@chromium.org
Review URL: https://codereview.chromium.org/402683003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@283894 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/opus')
-rw-r--r-- | third_party/opus/BUILD.gn | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/third_party/opus/BUILD.gn b/third_party/opus/BUILD.gn index cdf400c58..6f4a584 100644 --- a/third_party/opus/BUILD.gn +++ b/third_party/opus/BUILD.gn @@ -53,6 +53,8 @@ source_set("opus") { "src/silk", ] + configs -= [ "//build/config/compiler:chromium_code" ] + configs += [ "//build/config/compiler:no_chromium_code" ] direct_dependent_configs = [ ":opus_config" ] if (is_win) { @@ -141,6 +143,9 @@ executable("opus_demo") { "src/src/opus_demo.c", ] + configs -= [ "//build/config/compiler:chromium_code" ] + configs += [ "//build/config/compiler:no_chromium_code" ] + include_dirs = [ "src/celt", "src/silk", |