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

Side by Side Diff: native_client_sdk/PRESUBMIT.py

Issue 2437593005: Fix compilation of uber-fat binaries. (Closed)
Patch Set: Fix typo in native_client_sdk/PRESUBMIT.py Created 4 years, 2 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 unified diff | Download patch
« no previous file with comments | « build/config/ios/rules.gni ('k') | native_client_sdk/src/build_tools/build_sdk.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « build/config/ios/rules.gni ('k') | native_client_sdk/src/build_tools/build_sdk.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698