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

Side by Side Diff: DEPS

Issue 2750463006: ChromePrompt Mojo IPC interface (Closed)
Patch Set: Standard directory layout Created 3 years, 9 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.gn ('k') | GITDEPS » ('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 2017 The Chromium Authors. 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,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and 12 # See the License for the specific language governing permissions and
13 # limitations under the License. 13 # limitations under the License.
14 14
15 vars = { 15 vars = {
16 # Name of the directory to which the repository is pulled in. 16 # Name of the directory to which the repository is pulled in.
17 "root": "src", 17 "root": "src",
18 # This is expected to be Python 2.7 from depot_tools. 18 # This is expected to be Python 2.7 from depot_tools.
19 "python_path": "python", 19 "python_path": "python",
20 20
21 "chromium_git": "https://chromium.googlesource.com", 21 "chromium_git": "https://chromium.googlesource.com",
22
22 "buildtools_revision": "a7cc7a3e21a061975b33dcdcd81a9716ba614c3c", 23 "buildtools_revision": "a7cc7a3e21a061975b33dcdcd81a9716ba614c3c",
24 "catapult_revision": "e9f547be045d4e50cb2d4927261d500e425c364c",
23 "icu_revision": "9cd2828740572ba6f694b9365236a8356fd06147", 25 "icu_revision": "9cd2828740572ba6f694b9365236a8356fd06147",
24 } 26 }
25 27
26 deps = { 28 deps = {
27 Var("root") + "/buildtools": 29 Var("root") + "/buildtools":
28 (Var('chromium_git') + '/chromium/buildtools.git' + '@' + 30 (Var('chromium_git') + '/chromium/buildtools.git' + '@' +
29 Var('buildtools_revision')), 31 Var('buildtools_revision')),
32 Var("root") + "/third_party/catapult":
33 Var('chromium_git') +
34 '/external/github.com/catapult-project/catapult.git' + '@' +
35 Var('catapult_revision'),
30 Var("root") + "/third_party/icu": 36 Var("root") + "/third_party/icu":
31 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + Var('icu_revision'), 37 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + Var('icu_revision'),
32 } 38 }
33 39
34 include_rules = [ 40 include_rules = [
35 ] 41 ]
36 42
37 hooks = [ 43 hooks = [
38 { 44 {
39 "name": "run_gitdeps", 45 "name": "run_gitdeps",
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 "pattern": ".", 83 "pattern": ".",
78 "action": ["download_from_google_storage", 84 "action": ["download_from_google_storage",
79 "--no_resume", 85 "--no_resume",
80 "--platform=win32", 86 "--platform=win32",
81 "--no_auth", 87 "--no_auth",
82 "--bucket", "chromium-clang-format", 88 "--bucket", "chromium-clang-format",
83 "-s", Var("root") + "/buildtools/win/clang-format.exe.sha1", 89 "-s", Var("root") + "/buildtools/win/clang-format.exe.sha1",
84 ], 90 ],
85 }, 91 },
86 ] 92 ]
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | GITDEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698