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

Unified 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 side-by-side diff with in-line comments
Download patch
« .gitignore ('K') | « docs/quickstart.md ('k') | tools/grab_deps.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/DEPS.py
diff --git a/tools/DEPS.py b/tools/DEPS.py
new file mode 100644
index 0000000000000000000000000000000000000000..2ef506c46c907fa51bea9cf396f77e5c8f4a84b9
--- /dev/null
+++ b/tools/DEPS.py
@@ -0,0 +1,97 @@
+# 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.
+#
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+deps = {
+ "ALL" : {
+ "third_party/externals/angle" : (
+ "https://chromium.googlesource.com/external/angleproject.git",
+ None
+ ),
+ "third_party/externals/fontconfig" : (
+ "https://skia.googlesource.com/third_party/fontconfig.git",
+ "2.11.0"
+ ),
+ "third_party/externals/freetype" : (
+ "https://skia.googlesource.com/third_party/freetype2.git",
+ "VER-2-5-0-1"
+ ),
+ "third_party/externals/gyp" : (
+ "https://chromium.googlesource.com/external/gyp.git",
+ "5917c6a6b77c9e97a0cbb66847194381bd36ec4c"
+ ),
+ "third_party/externals/iconv" : (
+ "https://skia.googlesource.com/third_party/libiconv.git",
+ "v1.14"
+ ),
+ "third_party/externals/libjpeg" : (
+ "https://chromium.googlesource.com/chromium/deps/libjpeg_turbo.git",
+ "82ce8a6d4ebe12a177c0c3597192f2b4f09e81c3"
+ ),
+ "third_party/externals/jsoncpp" : (
+ "https://chromium.googlesource.com/external/jsoncpp/jsoncpp.git",
+ "ab1e40f3bce061ea6f9bdc60351d6cde2a4f872b",
+ ),
+ "third_party/externals/jsoncpp-chromium" : (
+ "https://chromium.googlesource.com/chromium/src/third_party/jsoncpp.git",
+ "41239939c0c60481f34887d52c038facf05f5533"
+ ),
+ "third_party/externals/libwebp" : (
+ "https://chromium.googlesource.com/webm/libwebp.git",
+ "3fe91635df8734b23f3c1b9d1f0c4fa8cfaf4e39"
+ ),
+ "third_party/externals/poppler" : (
+ "https://skia.googlesource.com/third_party/poppler.git",
+ "poppler-0.22.5",
+ ),
+ },
+ "android" : {
+ "platform_tools/android/third_party/externals/expat" : (
+ "https://android.googlesource.com/platform/external/expat.git",
+ "android-4.2.2_r1.2",
+ ),
+ "platform_tools/android/third_party/externals/gif" : (
+ "https://android.googlesource.com/platform/external/giflib.git",
+ "android-4.2.2_r1.2",
+ ),
+ "platform_tools/android/third_party/externals/png" : (
+ "https://android.googlesource.com/platform/external/libpng.git",
+ "android-4.2.2_r1.2",
+ ),
+ "platform_tools/android/third_party/externals/jpeg" : (
+ "https://android.googlesource.com/platform/external/jpeg.git",
+ "android-4.2.2_r1.2",
+ ),
+ },
+ "chromeos" : {
+ "platform_tools/chromeos/third_party/externals/gif" : (
+ "https://android.googlesource.com/platform/external/giflib.git",
+ "android-4.2.2_r1.2",
+ ),
+ "platform_tools/chromeos/toolchain/src/third_party/chromite" : (
+ "https://chromium.googlesource.com/chromiumos/chromite.git",
+ "d6a4c7e0ee4d53ddc5238dbddfc0417796a70e54",
+ ),
+ "platform_tools/chromeos/toolchain/src/third_party/pyelftools" : (
+ "https://chromium.googlesource.com/chromiumos/third_party/pyelftools.git",
+ "bdc1d380acd88d4bfaf47265008091483b0d614e",
+ ),
+ },
+ # barelinux is a DEPS target that has no shared libraries to link
+ # to, similar to android or chromeos.
+ "barelinux" : {
+ "third_party/externals/giflib" : (
+ "https://android.googlesource.com/platform/external/giflib.git",
+ "android-4.2.2_r1.2",
+ ),
+ "third_party/externals/libpng" : (
+ "https://android.googlesource.com/platform/external/libpng.git",
+ "android-4.2.2_r1.2",
+ ),
+ "third_party/externals/zlib" : (
+ "https://android.googlesource.com/platform/external/zlib.git",
+ "android-4.2.2_r1.2",
+ ),
+ }
+}
« .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