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

Side by Side Diff: GITDEPS

Issue 2693343002: Pull Chromium dependencies to Pipa checkout via DEPS and GITDEPS. (Closed)
Patch Set: One code block in Readme 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 | « DEPS ('k') | README.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2015 Google Inc. All Rights Reserved.
2 #
3 # Licensed under the Apache License, Version 2.0 (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
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14 #
15 # This file is read by gitdeps.py to allow loading subsections of git repos
16 # through sparse checkouts.
17
18 vars = {
19 "chrome_revision": "a691a7278a6f58da832b8818d2d00afa0687cd0d",
20 "gyp_revision": "bac4680ec9a5c55ab692490b6732999648ecf1e9",
21 "chrome_base_git": "https://chromium.googlesource.com/",
22 }
23
24 deps = {
25 "":(
26 Var("chrome_base_git") + "chromium/src",
27 [
28 # Chrome base and other top-level dependencies.
29 "base",
30 "build",
31 "testing",
32 "tools",
33
34 # third_party dependencies.
35 "third_party/protobuf",
36 ],
37 Var("chrome_revision")
38 ),
39 "tools/gyp":
40 (Var("chrome_base_git") + "external/gyp/",
41 [],
42 Var("gyp_revision")),
43 }
OLDNEW
« no previous file with comments | « DEPS ('k') | README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698