fixup! Upload upstream chromium 76.0.3809.146
[platform/framework/web/chromium-efl.git] / buildtools / DEPS
1 use_relative_paths = True
2
3 vars = {
4   'chromium_url': 'https://chromium.googlesource.com',
5
6   #
7   # TODO(crbug.com/941824): The values below need to be kept in sync
8   # between //DEPS and //buildtools/DEPS, so if you're updating one,
9   # update the other. There is a presubmit check that checks that
10   # you've done so; if you are adding new tools to //buildtools and
11   # hence new revisions to this list, make sure you update the
12   # _CheckBuildtoolsRevsAreInSync in PRESUBMIT.py to include the additional
13   # revisions.
14   #
15
16   # GN CIPD package version.
17   'gn_version': 'git_revision:81ee1967d3fcbc829bac1c005c3da59739c88df9',
18
19   # When changing these, also update the svn revisions in deps_revisions.gni
20   'clang_format_revision': '96636aa0e9f047f17447f2d45a094d0b59ed7917',
21   'libcxx_revision':       '5938e0582bac570a41edb3d6a2217c299adc1bc6',
22   'libcxxabi_revision':    '0d529660e32d77d9111912d73f2c74fc5fa2a858',
23   'libunwind_revision':    '69d9b84cca8354117b9fe9705a4430d789ee599b',
24 }
25
26 deps = {
27   'clang_format/script':
28     Var('chromium_url') + '/chromium/llvm-project/cfe/tools/clang-format.git@' +
29     Var('clang_format_revision'),
30   'linux64': {
31     'packages': [
32       {
33         'package': 'gn/gn/linux-amd64',
34         'version': Var('gn_version'),
35       }
36     ],
37     'dep_type': 'cipd',
38     'condition': 'host_os == "linux"',
39   },
40   'mac': {
41     'packages': [
42       {
43         'package': 'gn/gn/mac-amd64',
44         'version': Var('gn_version'),
45       }
46     ],
47     'dep_type': 'cipd',
48     'condition': 'host_os == "mac"',
49   },
50   'third_party/libc++/trunk':
51     Var('chromium_url') + '/chromium/llvm-project/libcxx.git' + '@' +
52     Var('libcxx_revision'),
53   'third_party/libc++abi/trunk':
54     Var('chromium_url') + '/chromium/llvm-project/libcxxabi.git' + '@' +
55     Var('libcxxabi_revision'),
56   'third_party/libunwind/trunk':
57     Var('chromium_url') + '/external/llvm.org/libunwind.git' + '@' +
58     Var('libunwind_revision'),
59   'win': {
60     'packages': [
61       {
62         'package': 'gn/gn/windows-amd64',
63         'version': Var('gn_version'),
64       }
65     ],
66     'dep_type': 'cipd',
67     'condition': 'host_os == "win"',
68   },
69 }