diff options
author | davemoore@chromium.org <davemoore@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-10 15:42:43 +0000 |
---|---|---|
committer | davemoore@chromium.org <davemoore@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-10 15:42:43 +0000 |
commit | 50ea926b3c8ea4686baed702efaf46459f363c3c (patch) | |
tree | 26bba491e1d9b871f9d96edfa67f8d7b3ed26778 | |
parent | 75ab47e7b0a74d347bc88c9181c742b4765722de (diff) | |
download | chromium_src-50ea926b3c8ea4686baed702efaf46459f363c3c.zip chromium_src-50ea926b3c8ea4686baed702efaf46459f363c3c.tar.gz chromium_src-50ea926b3c8ea4686baed702efaf46459f363c3c.tar.bz2 |
Add gyp rules to exclude _aurax11 and _aurawin files when appropriate
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/8201015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@104719 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | build/common.gypi | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/build/common.gypi b/build/common.gypi index 1d3c3aa..dbdd9cb 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -1241,6 +1241,12 @@ ['use_aura==0', { 'sources/': [ ['exclude', '_aura\\.(h|cc)$'] ] }], + ['use_aura==0 or use_x11==0', { + 'sources/': [ ['exclude', '_aurax11\\.(h|cc)$'] ] + }], + ['use_aura==0 or OS!="win"', { + 'sources/': [ ['exclude', '_aurawin\\.(h|cc)$'] ] + }], ], }], ], # target_conditions for 'target_defaults' |