diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-11 16:14:24 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-11 16:14:24 +0000 |
commit | ac4fbedeefe7f5cae229a545ddc679eaf42351ca (patch) | |
tree | f61f52bab50fbbfe5281d0b83ea2bb5363d516fe /build/common.gypi | |
parent | 374a58ad2d511d8b21a4526810bd6488df86e32d (diff) | |
download | chromium_src-ac4fbedeefe7f5cae229a545ddc679eaf42351ca.zip chromium_src-ac4fbedeefe7f5cae229a545ddc679eaf42351ca.tar.gz chromium_src-ac4fbedeefe7f5cae229a545ddc679eaf42351ca.tar.bz2 |
Revert 74597 - clang: Make it possible to run Elliot's plugin on the bots
To make it possible to change the exact plugin command line without a master restart, the command line is loaded from a bash script. This script is used if clang_use_chrome_plugins and clang are both set in GYP_DEFINES when runhooks runs.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6461026
TBR=thakis@chromium.org
Review URL: http://codereview.chromium.org/6489036
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74598 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/common.gypi')
-rw-r--r-- | build/common.gypi | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/build/common.gypi b/build/common.gypi index 827be4c..73a57d9 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -284,12 +284,6 @@ 'clang_load%': '', 'clang_add_plugin%': '', - # If this is set, the clang plugins used on the buildbot will be used. - # Run tools/clang/scripts/update.sh to make sure they are compiled. - # This causes 'clang_chrome_plugins_flags' to be set. - # Has no effect if 'clang' is not set as well. - 'clang_use_chrome_plugins%': 0, - # Enable sampling based profiler. # See http://google-perftools.googlecode.com/svn/trunk/doc/cpuprofile.html 'profiling%': '0', @@ -494,11 +488,6 @@ 'grit_defines': ['-D', 'use_third_party_translations'], 'locales': ['ast', 'eu', 'gl', 'ka', 'ku', 'ug'], }], - - ['clang_use_chrome_plugins==1', { - 'clang_chrome_plugins_flags': - '<!(<(DEPTH)/tools/clang/scripts/plugin_flags.sh)', - }], ], }, 'target_defaults': { @@ -1221,14 +1210,6 @@ ], }]], }], - ['clang==1 and clang_use_chrome_plugins==1', { - 'target_conditions': [ - ['_toolset=="target"', { - 'cflags': [ - '<(clang_chrome_plugins_flags)', - ], - }]], - }], ['clang==1 and clang_load!="" and clang_add_plugin!=""', { 'target_conditions': [ ['_toolset=="target"', { @@ -1352,11 +1333,6 @@ '-Wno-overloaded-virtual', ], }], - ['clang==1 and clang_use_chrome_plugins==1', { - 'OTHER_CFLAGS': [ - '<(clang_chrome_plugins_flags)', - ], - }], ['clang==1 and clang_load!="" and clang_add_plugin!=""', { 'OTHER_CFLAGS': [ '-Xclang', '-load', '-Xclang', '<(clang_load)', |