Commit d2372068 authored by thakis@chromium.org's avatar thakis@chromium.org

Don't make clang plugins stuff dependent on _toolset=target either.

Follow-up to http://codereview.chromium.org/7606012

BUG=none
TEST=nothing changes


Review URL: http://codereview.chromium.org/7611005

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@96272 0039d316-1c4b-4281-b951-d872f2087c98
parent 13e4f869
...@@ -1533,21 +1533,15 @@ ...@@ -1533,21 +1533,15 @@
], ],
}], }],
['clang==1 and clang_use_chrome_plugins==1', { ['clang==1 and clang_use_chrome_plugins==1', {
'target_conditions': [ 'cflags': [
['_toolset=="target"', { '<(clang_chrome_plugins_flags)',
'cflags': [ ],
'<(clang_chrome_plugins_flags)',
],
}]],
}], }],
['clang==1 and clang_load!="" and clang_add_plugin!=""', { ['clang==1 and clang_load!="" and clang_add_plugin!=""', {
'target_conditions': [ 'cflags': [
['_toolset=="target"', { '-Xclang', '-load', '-Xclang', '<(clang_load)',
'cflags': [ '-Xclang', '-add-plugin', '-Xclang', '<(clang_add_plugin)',
'-Xclang', '-load', '-Xclang', '<(clang_load)', ],
'-Xclang', '-add-plugin', '-Xclang', '<(clang_add_plugin)',
],
}]],
}], }],
['no_strict_aliasing==1', { ['no_strict_aliasing==1', {
'cflags': [ 'cflags': [
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment