| OLD | NEW |
| 1 vars = { | 1 vars = { |
| 2 # npm_modules.git is special: we can't check it out on Windows because paths | 2 # npm_modules.git is special: we can't check it out on Windows because paths |
| 3 # there are too long for Windows. Instead we use 'deps_os' gclient feature to | 3 # there are too long for Windows. Instead we use 'deps_os' gclient feature to |
| 4 # checkout it out only on Linux and Mac. | 4 # checkout it out only on Linux and Mac. |
| 5 "npm_modules_revision": "029f11ae7e3189fd57f7764b4bb43d0900e16c92", | 5 "npm_modules_revision": "029f11ae7e3189fd57f7764b4bb43d0900e16c92", |
| 6 } | 6 } |
| 7 | 7 |
| 8 deps = { | 8 deps = { |
| 9 "build": | 9 "build": |
| 10 "https://chromium.googlesource.com/chromium/tools/build.git", | 10 "https://chromium.googlesource.com/chromium/tools/build.git", |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 "infra/appengine/third_party/dateutil": | 88 "infra/appengine/third_party/dateutil": |
| 89 ("https://chromium.googlesource.com/external/code.launchpad.net/dateutil/" | 89 ("https://chromium.googlesource.com/external/code.launchpad.net/dateutil/" |
| 90 "@8c6026ba09716a4e164f5420120bfe2ebb2d9d82"), | 90 "@8c6026ba09716a4e164f5420120bfe2ebb2d9d82"), |
| 91 | 91 |
| 92 ## For ease of development. These are pulled in as wheels for run.py/test.py | 92 ## For ease of development. These are pulled in as wheels for run.py/test.py |
| 93 "expect_tests": | 93 "expect_tests": |
| 94 "https://chromium.googlesource.com/infra/testing/expect_tests.git", | 94 "https://chromium.googlesource.com/infra/testing/expect_tests.git", |
| 95 "testing_support": | 95 "testing_support": |
| 96 "https://chromium.googlesource.com/infra/testing/testing_support.git", | 96 "https://chromium.googlesource.com/infra/testing/testing_support.git", |
| 97 | 97 |
| 98 # v12.0 | |
| 99 "infra/bootstrap/virtualenv": | |
| 100 ("https://chromium.googlesource.com/external/github.com/pypa/virtualenv.git" | |
| 101 "@4243b272823228dde5d18a7400c404ce52fb4cea"), | |
| 102 | |
| 103 "infra/appengine/third_party/src/github.com/golang/oauth2": | 98 "infra/appengine/third_party/src/github.com/golang/oauth2": |
| 104 ("https://chromium.googlesource.com/external/github.com/golang/oauth2.git" | 99 ("https://chromium.googlesource.com/external/github.com/golang/oauth2.git" |
| 105 "@cb029f4c1f58850787981eefaf9d9bf547c1a722"), | 100 "@cb029f4c1f58850787981eefaf9d9bf547c1a722"), |
| 106 } | 101 } |
| 107 | 102 |
| 108 | 103 |
| 109 deps_os = { | 104 deps_os = { |
| 110 "unix": { | 105 "unix": { |
| 111 "infra/appengine/third_party/npm_modules": | 106 "infra/appengine/third_party/npm_modules": |
| 112 ("https://chromium.googlesource.com/infra/third_party/npm_modules.git@" + | 107 ("https://chromium.googlesource.com/infra/third_party/npm_modules.git@" + |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 }, | 145 }, |
| 151 { | 146 { |
| 152 "pattern": ".", | 147 "pattern": ".", |
| 153 "action": [ | 148 "action": [ |
| 154 "python", "-u", "./infra/bootstrap/install_cipd_packages.py", "-v", | 149 "python", "-u", "./infra/bootstrap/install_cipd_packages.py", "-v", |
| 155 ], | 150 ], |
| 156 }, | 151 }, |
| 157 ] | 152 ] |
| 158 | 153 |
| 159 recursedeps = ['build'] | 154 recursedeps = ['build'] |
| OLD | NEW |