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

Side by Side Diff: GITDEPS

Issue 2693423007: Introduce GN config files. (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 | « DEPS ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 Google Inc. All Rights Reserved. 1 # Copyright 2015 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,
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 # This file is read by gitdeps.py to allow loading subsections of git repos 15 # This file is read by gitdeps.py to allow loading subsections of git repos
16 # through sparse checkouts. 16 # through sparse checkouts.
17 17
18 vars = { 18 vars = {
19 "chrome_revision": "HEAD", 19 "chrome_base_git": "https://chromium.googlesource.com/",
20
21 "ced_revision": "9012c0ab648025dd0f8df14294bf5d6d73793ac9",
22 "chrome_revision": "080936f5193590e65409c60127a510f71e910d73",
23 "gmock_revision": "0421b6f358139f02e102c9c332ce19a33faf75be",
24 "gtest_revision": "6f8a66431cb592dad629028a50b3dd418a408c87",
20 "gyp_revision": "bac4680ec9a5c55ab692490b6732999648ecf1e9", 25 "gyp_revision": "bac4680ec9a5c55ab692490b6732999648ecf1e9",
21 "chrome_base_git": "https://chromium.googlesource.com/",
22 } 26 }
23 27
24 deps = { 28 deps = {
25 "":( 29 "":(
26 Var("chrome_base_git") + "chromium/src", 30 Var("chrome_base_git") + "chromium/src",
27 [ 31 [
28 # Chrome base and other top-level dependencies. 32 # Chrome base and other top-level dependencies.
29 "base", 33 "base",
30 "build", 34 "build",
35 "build_overrides",
31 "testing", 36 "testing",
32 "tools", 37 "tools",
33 38
34 # third_party dependencies. 39 # third_party dependencies.
40 "third_party/ced",
41 "third_party/libxml",
42 "third_party/modp_b64",
35 "third_party/protobuf", 43 "third_party/protobuf",
44 "third_party/zlib",
36 ], 45 ],
37 Var("chrome_revision") 46 Var("chrome_revision")
38 ), 47 ),
48 "third_party/ced/src":
49 (Var("chrome_base_git") + "external/github.com/google/compact_enc_det.git",
50 [],
51 Var("ced_revision")),
39 "tools/gyp": 52 "tools/gyp":
40 (Var("chrome_base_git") + "external/gyp/", 53 (Var("chrome_base_git") + "external/gyp/",
41 [], 54 [],
42 Var("gyp_revision")), 55 Var("gyp_revision")),
56 "testing/gmock":
57 (Var("chrome_base_git") + "external/googlemock.git/",
58 [],
59 Var("gmock_revision")),
60 "testing/gtest":
61 (Var("chrome_base_git") + "external/github.com/google/googletest.git/",
62 [],
63 Var("gtest_revision")),
43 } 64 }
OLDNEW
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698