diff options
author | Eric Boren <borenet@google.com> | 2018-06-20 08:19:24 -0400 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2018-06-20 13:55:18 +0000 |
commit | ea290808b06f87487fad3f191bf7c2c95c4cb82d (patch) | |
tree | d367ffb3349e5dec17b630a88d468fde5ed351bc /DEPS | |
parent | b056e7f77f380d8f32490e164cbdbb642f6d76c9 (diff) |
Add Chromium to DEPS for CommandBuffer bots
Bug: skia:6951
Change-Id: I094b542c6930e0789db71474650235b3ce991054
Reviewed-on: https://skia-review.googlesource.com/136022
Reviewed-by: Ravi Mistry <rmistry@google.com>
Commit-Queue: Eric Boren <borenet@google.com>
Diffstat (limited to 'DEPS')
-rw-r--r-- | DEPS | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -1,5 +1,9 @@ use_relative_paths = True +vars = { + "checkout_chromium": False, +} + deps = { "buildtools" : "https://chromium.googlesource.com/chromium/buildtools.git@505de88083136eefd056e5ee4ca0f01fe9b33de8", "common" : "https://skia.googlesource.com/common.git@9737551d7a52c3db3262db5856e6bcd62c462b92", @@ -30,6 +34,14 @@ deps = { "third_party/externals/zlib" : "https://chromium.googlesource.com/chromium/src/third_party/zlib@e7afdfe128e01ca480a28f757b571957befdd962", "third_party/externals/Nima-Cpp" : "https://github.com/2d-inc/Nima-Cpp.git@4bd02269d7d1d2e650950411325eafa15defb084", "third_party/externals/Nima-Math-Cpp" : "https://github.com/2d-inc/Nima-Math-Cpp.git@e0c12772093fa8860f55358274515b86885f0108", + + "../src": { + "url": "https://chromium.googlesource.com/chromium/src.git@46931e2df7ad0925086b34329cc83479dd0fb31c", + "condition": "checkout_chromium", + }, } -recursedeps = [ "common" ] +recursedeps = [ + "common", + "../src", +] |