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

Side by Side Diff: DEPS

Issue 2707493002: Presubmit checks for the Pipa repository (Closed)
Patch Set: Created 3 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
« no previous file with comments | « no previous file | PRESUBMIT.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 2014 Google Inc. All Rights Reserved. 1 # Copyright 2014 Google Inc. All Rights Reserved.
2 # 2 #
3 # Licensed under the Apache License, Version 2.0 (the "License"); 3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License. 4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at 5 # You may obtain a copy of the License at
6 # 6 #
7 # http://www.apache.org/licenses/LICENSE-2.0 7 # http://www.apache.org/licenses/LICENSE-2.0
8 # 8 #
9 # Unless required by applicable law or agreed to in writing, software 9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS, 10 # distributed under the License is distributed on an "AS IS" BASIS,
(...skipping 17 matching lines...) Expand all
28 } 28 }
29 29
30 include_rules = [ 30 include_rules = [
31 ] 31 ]
32 32
33 hooks = [ 33 hooks = [
34 { 34 {
35 "name": "run_gitdeps", 35 "name": "run_gitdeps",
36 "pattern": ".", 36 "pattern": ".",
37 "action": [Var("python_path"), 37 "action": [Var("python_path"),
38 Var("root") + "/pipa/build/gitdeps.py", 38 Var("root") + "/pipa/py/gitdeps.py",
39 Var("root") + "/GITDEPS", 39 Var("root") + "/GITDEPS",
40 "--output-dir=" + Var("root"), 40 "--output-dir=" + Var("root"),
41 "--cache-dir", Var("root") + "/.gitdeps-cache"], 41 "--cache-dir", Var("root") + "/.gitdeps-cache"],
42 }, 42 },
43 # Pull GN binaries. This needs to be before running GN below. 43 # Pull GN binaries. This needs to be before running GN below.
44 { 44 {
45 "name": "gn_win", 45 "name": "gn_win",
46 "pattern": ".", 46 "pattern": ".",
47 "action": [ "download_from_google_storage", 47 "action": [ "download_from_google_storage",
48 "--no_resume", 48 "--no_resume",
(...skipping 18 matching lines...) Expand all
67 "pattern": ".", 67 "pattern": ".",
68 "action": ["download_from_google_storage", 68 "action": ["download_from_google_storage",
69 "--no_resume", 69 "--no_resume",
70 "--platform=win32", 70 "--platform=win32",
71 "--no_auth", 71 "--no_auth",
72 "--bucket", "chromium-clang-format", 72 "--bucket", "chromium-clang-format",
73 "-s", Var("root") + "/buildtools/win/clang-format.exe.sha1", 73 "-s", Var("root") + "/buildtools/win/clang-format.exe.sha1",
74 ], 74 ],
75 }, 75 },
76 ] 76 ]
OLDNEW
« no previous file with comments | « no previous file | PRESUBMIT.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698