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

Side by Side Diff: DEPS

Issue 2112003: Create a tool to save a pinned dep file for the current sync. (Closed) Base URL: ssh://git@chromiumos-git/chromeos
Patch Set: Fix repository reset and verify that we are in a git repo. Created 10 years, 7 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 | « .gitignore ('k') | src/scripts/make_relative_solution » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
2 2
3 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved. 3 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 # NOTES 7 # NOTES
8 # 8 #
9 # This file must exist both in trunk and trunk/src, since some users sync 9 # This file must exist both in trunk and trunk/src, since some users sync
10 # trunk and some sync src. (In the end, src will win, since src-internal will 10 # trunk and some sync src. (In the end, src will win, since src-internal will
(...skipping 14 matching lines...) Expand all
25 # Base is prefixed with "src/" if this is trunk/DEPS, or "" if this 25 # Base is prefixed with "src/" if this is trunk/DEPS, or "" if this
26 # is trunk/src/DEPS. 26 # is trunk/src/DEPS.
27 _third_party_base = "src/third_party/" 27 _third_party_base = "src/third_party/"
28 _platform_base = "src/platform/" 28 _platform_base = "src/platform/"
29 29
30 vars = { 30 vars = {
31 "chromium_revision": "36775", 31 "chromium_revision": "36775",
32 } 32 }
33 33
34 deps = { 34 deps = {
35 # deps
36 "deps": "/deps.git",
37
35 # cros 38 # cros
36 _platform_base + "cros": "/cros.git", 39 _platform_base + "cros": "/cros.git",
37 40
38 # login_manager 41 # login_manager
39 _platform_base + "login_manager": "/login_manager.git", 42 _platform_base + "login_manager": "/login_manager.git",
40 43
41 # pam_google 44 # pam_google
42 _platform_base + "pam_google": "/pam_google.git", 45 _platform_base + "pam_google": "/pam_google.git",
43 46
44 # entd source 47 # entd source
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 192
190 # grub2 source 193 # grub2 source
191 _third_party_base + "grub2": "/grub2.git", 194 _third_party_base + "grub2": "/grub2.git",
192 195
193 # DBus C++ bindings. Gitosis won't let us name the repo dbus-c++ 196 # DBus C++ bindings. Gitosis won't let us name the repo dbus-c++
194 _third_party_base + "dbus-c++": "/dbus-cplusplus.git", 197 _third_party_base + "dbus-c++": "/dbus-cplusplus.git",
195 198
196 # gyp 199 # gyp
197 _third_party_base + "gyp/files": "http://gyp.googlecode.com/svn/trunk@824", 200 _third_party_base + "gyp/files": "http://gyp.googlecode.com/svn/trunk@824",
198 } 201 }
OLDNEW
« no previous file with comments | « .gitignore ('k') | src/scripts/make_relative_solution » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698