diff options
author | binji@chromium.org <binji@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-07 21:53:02 +0000 |
---|---|---|
committer | binji@chromium.org <binji@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-07 21:53:02 +0000 |
commit | 848faac64224f5b3a835897606c6b65a834a88ca (patch) | |
tree | bd9dd9be7a43fa1312dde3f44112c9186c7b504b /PRESUBMIT.py | |
parent | ab5870577fc65b5f64ef28f60010dfee1b0896bd (diff) | |
download | chromium_src-848faac64224f5b3a835897606c6b65a834a88ca.zip chromium_src-848faac64224f5b3a835897606c6b65a834a88ca.tar.gz chromium_src-848faac64224f5b3a835897606c6b65a834a88ca.tar.bz2 |
Remove NaCl SDK bots from top-level PRESUBMIT.py
This change was originally introduced to only run the NaCl SDK bots when
all changes were to files in the native_client_sdk directory.
This change is no longer safe, as some changes can affect other builders
(such as changes to create_nmf.py and nacl_io).
BUG=none
R=stip@chromium.org
Review URL: https://codereview.chromium.org/112953005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@243396 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'PRESUBMIT.py')
-rw-r--r-- | PRESUBMIT.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/PRESUBMIT.py b/PRESUBMIT.py index bc16ad8..6a77b9f 100644 --- a/PRESUBMIT.py +++ b/PRESUBMIT.py @@ -1389,12 +1389,6 @@ def GetPreferredTrySlaves(project, change): 'android_clang_dbg', 'android_dbg', ]) - if all(re.search('^native_client_sdk', f) for f in files): - return GetDefaultTryConfigs([ - 'linux_nacl_sdk', - 'mac_nacl_sdk', - 'win_nacl_sdk', - ]) if all(re.search('[/_]ios[/_.]', f) for f in files): return GetDefaultTryConfigs(['ios_rel_device', 'ios_dbg_simulator']) |