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

Unified Diff: build/common.gypi

Issue 7611005: Don't make clang plugins stuff dependent on _toolset=target either. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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 14839d30eed22551a0e90c9565ab56e07b8c5714..60d9dcced0f71f46ea5e753b6fc2fa90525200d8 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -1533,21 +1533,15 @@
],
}],
['clang==1 and clang_use_chrome_plugins==1', {
- 'target_conditions': [
- ['_toolset=="target"', {
- 'cflags': [
- '<(clang_chrome_plugins_flags)',
- ],
- }]],
+ 'cflags': [
+ '<(clang_chrome_plugins_flags)',
+ ],
}],
['clang==1 and clang_load!="" and clang_add_plugin!=""', {
- 'target_conditions': [
- ['_toolset=="target"', {
- 'cflags': [
- '-Xclang', '-load', '-Xclang', '<(clang_load)',
- '-Xclang', '-add-plugin', '-Xclang', '<(clang_add_plugin)',
- ],
- }]],
+ 'cflags': [
+ '-Xclang', '-load', '-Xclang', '<(clang_load)',
+ '-Xclang', '-add-plugin', '-Xclang', '<(clang_add_plugin)',
+ ],
}],
['no_strict_aliasing==1', {
'cflags': [
« 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