| use_relative_paths = True |
| |
| vars = { |
| 'chromium_url': 'https://chromium.googlesource.com', |
| |
| # |
| # TODO(crbug.com/941824): The values below need to be kept in sync |
| # between //DEPS and //buildtools/DEPS, so if you're updating one, |
| # update the other. There is a presubmit check that checks that |
| # you've done so; if you are adding new tools to //buildtools and |
| # hence new revisions to this list, make sure you update the |
| # _CheckBuildtoolsRevsAreInSync in PRESUBMIT.py to include the additional |
| # revisions. |
| # |
| |
| # GN CIPD package version. |
| 'gn_version': 'git_revision:97cc440d84f050f99ff0161f9414bfa2ffa38f65', |
| |
| # When changing these, also update the svn revisions in deps_revisions.gni |
| 'clang_format_revision': '96636aa0e9f047f17447f2d45a094d0b59ed7917', |
| 'libcxx_revision': '78d6a7767ed57b50122a161b91f59f19c9bd0d19', |
| 'libcxxabi_revision': '0d529660e32d77d9111912d73f2c74fc5fa2a858', |
| 'libunwind_revision': '69d9b84cca8354117b9fe9705a4430d789ee599b', |
| } |
| |
| deps = { |
| 'clang_format/script': |
| Var('chromium_url') + '/chromium/llvm-project/cfe/tools/clang-format.git@' + |
| Var('clang_format_revision'), |
| 'linux64': { |
| 'packages': [ |
| { |
| 'package': 'gn/gn/linux-amd64', |
| 'version': Var('gn_version'), |
| } |
| ], |
| 'dep_type': 'cipd', |
| 'condition': 'host_os == "linux"', |
| }, |
| 'mac': { |
| 'packages': [ |
| { |
| 'package': 'gn/gn/mac-amd64', |
| 'version': Var('gn_version'), |
| } |
| ], |
| 'dep_type': 'cipd', |
| 'condition': 'host_os == "mac"', |
| }, |
| 'third_party/libc++/trunk': |
| Var('chromium_url') + '/chromium/llvm-project/libcxx.git' + '@' + |
| Var('libcxx_revision'), |
| 'third_party/libc++abi/trunk': |
| Var('chromium_url') + '/chromium/llvm-project/libcxxabi.git' + '@' + |
| Var('libcxxabi_revision'), |
| 'third_party/libunwind/trunk': |
| Var('chromium_url') + '/external/llvm.org/libunwind.git' + '@' + |
| Var('libunwind_revision'), |
| 'win': { |
| 'packages': [ |
| { |
| 'package': 'gn/gn/windows-amd64', |
| 'version': Var('gn_version'), |
| } |
| ], |
| 'dep_type': 'cipd', |
| 'condition': 'host_os == "win"', |
| }, |
| } |