| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 """Top-level presubmit script for native_client_sdk. | 5 """Top-level presubmit script for native_client_sdk. |
| 6 | 6 |
| 7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts | 7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts |
| 8 for more details on the presubmit API built into depot_tools. | 8 for more details on the presubmit API built into depot_tools. |
| 9 """ | 9 """ |
| 10 | 10 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 def CheckChangeOnCommit(input_api, output_api): | 38 def CheckChangeOnCommit(input_api, output_api): |
| 39 return CommonChecks(input_api, output_api) | 39 return CommonChecks(input_api, output_api) |
| 40 | 40 |
| 41 | 41 |
| 42 def GetPreferredTryMasters(project, change): | 42 def GetPreferredTryMasters(project, change): |
| 43 return { | 43 return { |
| 44 'master.tryserver.chromium.linux': { | 44 'master.tryserver.chromium.linux': { |
| 45 'linux_nacl_sdk': set(['defaulttests']), | 45 'linux_nacl_sdk': set(['defaulttests']), |
| 46 'linux_nacl_sdk_build': set(['defaulttests']), | 46 'linux_nacl_sdk_build': set(['defaulttests']), |
| 47 }, | 47 }, |
| 48 'master.ryserver.chromium.win': { | 48 'master.tryserver.chromium.win': { |
| 49 'win_nacl_sdk': set(['defaulttests']), | 49 'win_nacl_sdk': set(['defaulttests']), |
| 50 'win_nacl_sdk_build': set(['defaulttests']), | 50 'win_nacl_sdk_build': set(['defaulttests']), |
| 51 }, | 51 }, |
| 52 'master.tryserver.chromium.mac': { | 52 'master.tryserver.chromium.mac': { |
| 53 'mac_nacl_sdk': set(['defaulttests']), | 53 'mac_nacl_sdk': set(['defaulttests']), |
| 54 'mac_nacl_sdk_build': set(['defaulttests']), | 54 'mac_nacl_sdk_build': set(['defaulttests']), |
| 55 } | 55 } |
| 56 } | 56 } |
| OLD | NEW |