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

Side by Side Diff: GITDEPS

Issue 2750463006: ChromePrompt Mojo IPC interface (Closed)
Patch Set: Additional comment 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.
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 "third_party/Webkit",
Ken Rockot(use gerrit already) 2017/03/14 18:13:06 I would probably try to avoid bringing this in if
ftirelo 2017/03/14 20:26:58 For the moment, this will be needed, because of th
ftirelo 2017/03/21 16:54:28 Done.
54 "third_party/yasm",
44 "third_party/zlib", 55 "third_party/zlib",
45 ], 56 ],
46 Var("chrome_revision") 57 Var("chrome_revision")
47 ), 58 ),
48 "third_party/ced/src": 59 "third_party/ced/src":
49 (Var("chrome_base_git") + "external/github.com/google/compact_enc_det.git", 60 (Var("chrome_base_git") + "external/github.com/google/compact_enc_det.git",
50 [], 61 [],
51 Var("ced_revision")), 62 Var("ced_revision")),
52 "tools/gyp": 63 "tools/gyp":
53 (Var("chrome_base_git") + "external/gyp/", 64 (Var("chrome_base_git") + "external/gyp/",
54 [], 65 [],
55 Var("gyp_revision")), 66 Var("gyp_revision")),
56 "testing/gmock": 67 "testing/gmock":
57 (Var("chrome_base_git") + "external/googlemock.git/", 68 (Var("chrome_base_git") + "external/googlemock.git/",
58 [], 69 [],
59 Var("gmock_revision")), 70 Var("gmock_revision")),
60 "testing/gtest": 71 "testing/gtest":
61 (Var("chrome_base_git") + "external/github.com/google/googletest.git/", 72 (Var("chrome_base_git") + "external/github.com/google/googletest.git/",
62 [], 73 [],
63 Var("gtest_revision")), 74 Var("gtest_revision")),
64 } 75 }
OLDNEW
« no previous file with comments | « DEPS ('k') | pipa/mojom/BUILD.gn » ('j') | pipa/mojom/chrome_prompt.mojom » ('J')

Powered by Google App Engine
This is Rietveld 408576698