Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2391)

Unified Diff: build/common.gypi

Issue 8201015: Add gyp rules to exclude _aurax11 and _aurawin files when appropriate (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index 9963f45adc6a35d42de45243423560146fb14703..29d3d63e5bf3d25d782f5a5e1302f94e2f37b9d7 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -1240,6 +1240,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'
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698