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

Side by Side Diff: tools/DEPS.py

Issue 191133005: git-sync-deps tool (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: AnotherPatchSet Created 6 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
(Empty)
1 # Copyright 2014 Google Inc.
borenet 2014/03/10 20:13:30 Again, I think duplicating these is a bad idea.
hal.canary 2014/04/11 15:52:36 Okay. We now parse DEPS as is.
2 #
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 deps = {
7 "ALL" : {
8 "third_party/externals/angle" : (
9 "https://chromium.googlesource.com/external/angleproject.git",
10 None
11 ),
12 "third_party/externals/fontconfig" : (
13 "https://skia.googlesource.com/third_party/fontconfig.git",
14 "2.11.0"
15 ),
16 "third_party/externals/freetype" : (
17 "https://skia.googlesource.com/third_party/freetype2.git",
18 "VER-2-5-0-1"
19 ),
20 "third_party/externals/gyp" : (
21 "https://chromium.googlesource.com/external/gyp.git",
22 "5917c6a6b77c9e97a0cbb66847194381bd36ec4c"
23 ),
24 "third_party/externals/iconv" : (
25 "https://skia.googlesource.com/third_party/libiconv.git",
26 "v1.14"
27 ),
28 "third_party/externals/libjpeg" : (
29 "https://chromium.googlesource.com/chromium/deps/libjpeg_turbo.git",
30 "82ce8a6d4ebe12a177c0c3597192f2b4f09e81c3"
31 ),
32 "third_party/externals/jsoncpp" : (
33 "https://chromium.googlesource.com/external/jsoncpp/jsoncpp.git",
34 "ab1e40f3bce061ea6f9bdc60351d6cde2a4f872b",
35 ),
36 "third_party/externals/jsoncpp-chromium" : (
37 "https://chromium.googlesource.com/chromium/src/third_party/jsoncpp.git",
38 "41239939c0c60481f34887d52c038facf05f5533"
39 ),
40 "third_party/externals/libwebp" : (
41 "https://chromium.googlesource.com/webm/libwebp.git",
42 "3fe91635df8734b23f3c1b9d1f0c4fa8cfaf4e39"
43 ),
44 "third_party/externals/poppler" : (
45 "https://skia.googlesource.com/third_party/poppler.git",
46 "poppler-0.22.5",
47 ),
48 },
49 "android" : {
50 "platform_tools/android/third_party/externals/expat" : (
51 "https://android.googlesource.com/platform/external/expat.git",
52 "android-4.2.2_r1.2",
53 ),
54 "platform_tools/android/third_party/externals/gif" : (
55 "https://android.googlesource.com/platform/external/giflib.git",
56 "android-4.2.2_r1.2",
57 ),
58 "platform_tools/android/third_party/externals/png" : (
59 "https://android.googlesource.com/platform/external/libpng.git",
60 "android-4.2.2_r1.2",
61 ),
62 "platform_tools/android/third_party/externals/jpeg" : (
63 "https://android.googlesource.com/platform/external/jpeg.git",
64 "android-4.2.2_r1.2",
65 ),
66 },
67 "chromeos" : {
68 "platform_tools/chromeos/third_party/externals/gif" : (
69 "https://android.googlesource.com/platform/external/giflib.git",
70 "android-4.2.2_r1.2",
71 ),
72 "platform_tools/chromeos/toolchain/src/third_party/chromite" : (
73 "https://chromium.googlesource.com/chromiumos/chromite.git",
74 "d6a4c7e0ee4d53ddc5238dbddfc0417796a70e54",
75 ),
76 "platform_tools/chromeos/toolchain/src/third_party/pyelftools" : (
77 "https://chromium.googlesource.com/chromiumos/third_party/pyelftools.git",
78 "bdc1d380acd88d4bfaf47265008091483b0d614e",
79 ),
80 },
81 # barelinux is a DEPS target that has no shared libraries to link
82 # to, similar to android or chromeos.
83 "barelinux" : {
84 "third_party/externals/giflib" : (
85 "https://android.googlesource.com/platform/external/giflib.git",
86 "android-4.2.2_r1.2",
87 ),
88 "third_party/externals/libpng" : (
89 "https://android.googlesource.com/platform/external/libpng.git",
90 "android-4.2.2_r1.2",
91 ),
92 "third_party/externals/zlib" : (
93 "https://android.googlesource.com/platform/external/zlib.git",
94 "android-4.2.2_r1.2",
95 ),
96 }
97 }
OLDNEW
« .gitignore ('K') | « docs/quickstart.md ('k') | tools/grab_deps.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698