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

Side by Side Diff: GITDEPS

Issue 2750463006: ChromePrompt Mojo IPC interface (Closed)
Patch Set: Fix typo 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
OLDNEW
1 # Copyright 2015 Google Inc. All Rights Reserved. 1 # Copyright 2015 Google Inc. All Rights Reserved.
grt (UTC plus 2) 2017/03/22 13:48:13 was this file originally committed in 2017?
ftirelo 2017/03/22 14:25:36 Done.
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_base_git": "https://chromium.googlesource.com/", 19 "chrome_base_git": "https://chromium.googlesource.com/",
20 20
21 "ced_revision": "9012c0ab648025dd0f8df14294bf5d6d73793ac9", 21 "ced_revision": "9012c0ab648025dd0f8df14294bf5d6d73793ac9",
22 "chrome_revision": "080936f5193590e65409c60127a510f71e910d73", 22 "chrome_revision": "a99e55b90960fc708f568e525c5621365ceab8e4",
23 "gmock_revision": "0421b6f358139f02e102c9c332ce19a33faf75be", 23 "gmock_revision": "0421b6f358139f02e102c9c332ce19a33faf75be",
24 "gtest_revision": "6f8a66431cb592dad629028a50b3dd418a408c87", 24 "gtest_revision": "6f8a66431cb592dad629028a50b3dd418a408c87",
25 "gyp_revision": "bac4680ec9a5c55ab692490b6732999648ecf1e9", 25 "gyp_revision": "bac4680ec9a5c55ab692490b6732999648ecf1e9",
26 } 26 }
27 27
28 deps = { 28 deps = {
29 "":( 29 "":(
30 Var("chrome_base_git") + "chromium/src", 30 Var("chrome_base_git") + "chromium/src",
31 [ 31 [
32 # Chrome base and other top-level dependencies. 32 # Chrome base and other top-level dependencies.
33 "base", 33 "base",
34 "build", 34 "build",
35 "build_overrides", 35 "build_overrides",
36 # Needed because of //base/win/BUILD.gn.
37 "chrome",
38 "crypto",
39 "ipc",
40 "mojo",
36 "testing", 41 "testing",
37 "tools", 42 "tools",
38 43
39 # third_party dependencies. 44 # third_party dependencies.
45 "third_party/boringssl",
40 "third_party/ced", 46 "third_party/ced",
47 "third_party/jinja2",
41 "third_party/libxml", 48 "third_party/libxml",
49 "third_party/markupsafe",
42 "third_party/modp_b64", 50 "third_party/modp_b64",
51 "third_party/ply",
43 "third_party/protobuf", 52 "third_party/protobuf",
53 # This is needed due to a dependency in mojo/public/cpp/bindings
54 # (see crbug.com/617718).
55 "third_party/Webkit",
56 "third_party/yasm",
44 "third_party/zlib", 57 "third_party/zlib",
45 ], 58 ],
46 Var("chrome_revision") 59 Var("chrome_revision")
47 ), 60 ),
48 "third_party/ced/src": 61 "third_party/ced/src":
49 (Var("chrome_base_git") + "external/github.com/google/compact_enc_det.git", 62 (Var("chrome_base_git") + "external/github.com/google/compact_enc_det.git",
50 [], 63 [],
51 Var("ced_revision")), 64 Var("ced_revision")),
52 "tools/gyp": 65 "tools/gyp":
53 (Var("chrome_base_git") + "external/gyp/", 66 (Var("chrome_base_git") + "external/gyp/",
54 [], 67 [],
55 Var("gyp_revision")), 68 Var("gyp_revision")),
56 "testing/gmock": 69 "testing/gmock":
57 (Var("chrome_base_git") + "external/googlemock.git/", 70 (Var("chrome_base_git") + "external/googlemock.git/",
58 [], 71 [],
59 Var("gmock_revision")), 72 Var("gmock_revision")),
60 "testing/gtest": 73 "testing/gtest":
61 (Var("chrome_base_git") + "external/github.com/google/googletest.git/", 74 (Var("chrome_base_git") + "external/github.com/google/googletest.git/",
62 [], 75 [],
63 Var("gtest_revision")), 76 Var("gtest_revision")),
64 } 77 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698