| OLD | NEW |
| (Empty) |
| 1 # DEPS file for unit tests. | |
| 2 | |
| 3 vars = { | |
| 4 'chromium_git': 'https://chromium.googlesource.com', | |
| 5 'chromium_revision': '1b9c098a08e40114e44b6c1ec33ddf95c40b901d', | |
| 6 } | |
| 7 | |
| 8 deps = { | |
| 9 # Entry that is a directory in Chromium, so we're using a Git subtree mirror f
or it. | |
| 10 'src/build': | |
| 11 Var('chromium_git') + '/chromium/src/build' + '@' + '52f7afeca991d96d68cf050
7e20dbdd5b845691f', | |
| 12 | |
| 13 # Entry that's also a DEPS entry in the Chromium DEPS file. | |
| 14 'src/buildtools': | |
| 15 Var('chromium_git') + '/chromium/buildtools.git' + '@' + '64e38f0cebdde27aa0
cfb405f330063582f9ac76', | |
| 16 | |
| 17 # Entry only present in WebRTC, not Chromium. | |
| 18 'src/third_party/gflags/src': | |
| 19 Var('chromium_git') + '/external/github.com/gflags/gflags@03bebcb065c83beff8
3d50ae025a55a4bf94dfca', | |
| 20 } | |
| 21 | |
| 22 deps_os = { | |
| 23 # Entry only present in WebRTC, not Chromium. | |
| 24 'win': { | |
| 25 'src/third_party/winsdk_samples': | |
| 26 Var('chromium_git') + '/external/webrtc/deps/third_party/winsdk_samples_v7
1@e71b549167a665d7424d6f1dadfbff4b4aad1589', | |
| 27 }, | |
| 28 } | |
| OLD | NEW |