diff options
author | bbudge@chromium.org <bbudge@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-12 04:02:33 +0000 |
---|---|---|
committer | bbudge@chromium.org <bbudge@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-12 04:02:33 +0000 |
commit | 9342b3f456ea8ecf44b024e789ca666ce3dbaef2 (patch) | |
tree | 3fe71bea9ab40cb184421c62e8997707c33be2ca /build | |
parent | 4e975123a7781515e47a9446cdf84f0f62bf5c09 (diff) | |
download | chromium_src-9342b3f456ea8ecf44b024e789ca666ce3dbaef2.zip chromium_src-9342b3f456ea8ecf44b024e789ca666ce3dbaef2.tar.gz chromium_src-9342b3f456ea8ecf44b024e789ca666ce3dbaef2.tar.bz2 |
Add files and exclusions needed for NaCl IPC proxy to base_untrusted target.
BUG=116317
TEST=compiles
Review URL: https://chromiumcodereview.appspot.com/10544095
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@141613 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/filename_rules.gypi | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/build/filename_rules.gypi b/build/filename_rules.gypi index ec34264..2f043e2 100644 --- a/build/filename_rules.gypi +++ b/build/filename_rules.gypi @@ -41,7 +41,7 @@ ['exclude', '(^|/)android/'], ], }], - ['OS=="win" or >(nacl_untrusted_build)==1', { + ['OS=="win" and >(nacl_untrusted_build)==0', { 'sources/': [ ['exclude', '_posix(_unittest)?\\.(h|cc)$'], ['exclude', '(^|/)posix/'], @@ -50,6 +50,11 @@ ['<(chromeos)!=1 or >(nacl_untrusted_build)==1', { 'sources/': [ ['exclude', '_chromeos\\.(h|cc)$'] ] }], + ['>(nacl_untrusted_build)==0', { + 'sources/': [ + ['exclude', '_nacl(_unittest)?\\.(h|cc)$'], + ], + }], ['OS!="linux" and OS!="openbsd" and OS!="freebsd" or >(nacl_untrusted_build)==1', { 'sources/': [ ['exclude', '_xdg(_unittest)?\\.(h|cc)$'], |