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

Side by Side Diff: PRESUBMIT.py

Issue 12226130: [nacltoons] Add initial frontend and physics game scenes. (Closed) Base URL: https://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 7 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | nacltoons/data/res/blocks.png » ('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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 # Documentation on PRESUBMIT.py can be found at: 5 # Documentation on PRESUBMIT.py can be found at:
6 # http://www.chromium.org/developers/how-tos/depottools/presubmit-scripts 6 # http://www.chromium.org/developers/how-tos/depottools/presubmit-scripts
7 7
8 8
9 def CheckChangeOnUpload(input_api, output_api): 9 def CheckChangeOnUpload(input_api, output_api):
10 report = [] 10 report = []
11 affected_files = input_api.AffectedFiles(include_deletes=False) 11 affected_files = input_api.AffectedFiles(include_deletes=False)
12 report.extend(input_api.canned_checks.PanProjectChecks( 12 report.extend(input_api.canned_checks.PanProjectChecks(
13 input_api, output_api)) 13 input_api, output_api))
14 return report 14 return report
15 15
16 16
17 def CheckChangeOnCommit(input_api, output_api): 17 def CheckChangeOnCommit(input_api, output_api):
18 report = [] 18 report = []
19 report.extend(CheckChangeOnUpload(input_api, output_api))
19 20
20 # Disable presubmit until we fix tree status 21 # Disable presubmit until we fix tree status
21
22 # report.extend(CheckChangeOnUpload(input_api, output_api))
23 # report.extend(input_api.canned_checks.CheckTreeIsOpen( 22 # report.extend(input_api.canned_checks.CheckTreeIsOpen(
24 # input_api, output_api, 23 # input_api, output_api,
25 # json_url='http://naclsdk-status.appspot.com/current?format=json')) 24 # json_url='http://naclsdk-status.appspot.com/current?format=json'))
26 return report 25 return report
OLDNEW
« no previous file with comments | « no previous file | nacltoons/data/res/blocks.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698