aboutsummaryrefslogtreecommitdiff
path: root/DEPS
blob: 6d7234404d62923227ee845a9284f4f162252d0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
use_relative_paths = True

vars = {
  'github': 'https://github.com',

  'abseil_revision': '1315c900e1ddbb08a23e06eeb9a06450052ccb5e',

  'effcee_revision': 'd74d33d93043952a99ae7cd7458baf6bc8df1da0',

  'googletest_revision': '1d17ea141d2c11b8917d2c7d029f1c4e2b9769b2',

  # Use protobufs before they gained the dependency on abseil
  'protobuf_revision': 'v21.12',

  're2_revision': '4a8cee3dd3c3d81b6fe8b867811e193d5819df07',

  'spirv_headers_revision': '2acb319af38d43be3ea76bfabf3998e5281d8d12',
}

deps = {
  'external/abseil_cpp':
      Var('github') + '/abseil/abseil-cpp.git@' + Var('abseil_revision'),

  'external/effcee':
      Var('github') + '/google/effcee.git@' + Var('effcee_revision'),

  'external/googletest':
      Var('github') + '/google/googletest.git@' + Var('googletest_revision'),

  'external/protobuf':
      Var('github') + '/protocolbuffers/protobuf.git@' + Var('protobuf_revision'),

  'external/re2':
      Var('github') + '/google/re2.git@' + Var('re2_revision'),

  'external/spirv-headers':
      Var('github') +  '/KhronosGroup/SPIRV-Headers.git@' +
          Var('spirv_headers_revision'),
}