blob: 43434a216cdb053d5488e9b21c8d412978a2b32d [file] [log] [blame]
Nicolas Capens9b0e6552017-01-26 21:49:04 -08001# This file is used to manage SwiftShader's dependencies in the Chromium src
Alexis Hetu39061652017-01-19 10:59:25 -05002# repo. It is used by gclient to determine what version of each dependency to
3# check out, and where.
4
5use_relative_paths = True
6
7vars = {
Csaba Osztrogonác17982c42017-02-21 17:59:33 +01008 'chromium_git': 'https://chromium.googlesource.com',
Alexis Hetu39061652017-01-19 10:59:25 -05009 # Current revision of subzero.
Nicolas Capens1ba26112017-05-02 11:57:06 -040010 'subzero_revision': 'fb705a6d55003b2c32772ae49e25b0babcff5acc',
Alexis Hetu39061652017-01-19 10:59:25 -050011}
12
13deps = {
14 'third_party/pnacl-subzero':
Csaba Osztrogonác17982c42017-02-21 17:59:33 +010015 Var('chromium_git') + '/native_client/pnacl-subzero@' + Var('subzero_revision'),
Nicolas Capens1ba26112017-05-02 11:57:06 -040016}