summaryrefslogtreecommitdiff
path: root/tools/gclient_config.py
diff options
context:
space:
mode:
authorRy Dahl <ry@tinyclouds.org>2019-10-31 22:33:27 -0400
committerBert Belder <bertbelder@gmail.com>2019-10-31 19:33:27 -0700
commitaf61dbed874863db308f3a421ad142a7f106687a (patch)
tree083946a0071ddf4ddde51df54064ce8b56d1e812 /tools/gclient_config.py
parent9d6cbb73a8dcf63b24630129f47dc98d3cc735d5 (diff)
Upgrade node_modules, change tagline, clean up root directory (#3247)
* Upgrade node_modules * Simplify tagline * Move gclient_config.py out of root * Move package.json to tools * Remove yarn.lock * Remove CONTRIBUTING.md
Diffstat (limited to 'tools/gclient_config.py')
-rw-r--r--tools/gclient_config.py39
1 files changed, 39 insertions, 0 deletions
diff --git a/tools/gclient_config.py b/tools/gclient_config.py
new file mode 100644
index 000000000..f7ca728e7
--- /dev/null
+++ b/tools/gclient_config.py
@@ -0,0 +1,39 @@
+# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+# pylint: disable=line-too-long
+solutions = [
+ {
+ 'url': 'https://chromium.googlesource.com/v8/v8.git@7.9.317.12',
+ 'name': 'v8',
+ 'deps_file': 'DEPS',
+ 'custom_deps': {
+ 'v8/build': None,
+ 'v8/third_party/catapult': None,
+ 'v8/third_party/colorama/src': None,
+ 'v8/testing/gmock': None,
+ 'v8/tools/swarming_client': None,
+ 'v8/tools/gyp': None,
+ 'v8/third_party/instrumented_libraries': None,
+ 'v8/third_party/android_tools': None,
+ 'v8/third_party/depot_tools': None,
+ 'v8/test/wasm-js': None,
+ 'v8/test/benchmarks/data': None,
+ 'v8/test/mozilla/data': None,
+ 'v8/third_party/icu': None,
+ 'v8/test/test262/data': None,
+ 'v8/test/test262/harness': None,
+ 'v8/tools/luci-go': None
+ }
+ },
+ {
+ 'url':
+ 'https://chromium.googlesource.com/chromium/tools/depot_tools@efce0d1b7657c440c90f0f4bce614b96672b9e0b',
+ 'name':
+ 'depot_tools'
+ },
+ {
+ 'url':
+ 'https://github.com/cpplint/cpplint.git@a33992f68f36fcaa6d0f531a25012a4c474d3542',
+ 'name':
+ 'cpplint'
+ }
+]