Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # This file is automatically processed to create .DEPS.git which is the file | 1 # This file is automatically processed to create .DEPS.git which is the file |
| 2 # that gclient uses under git. | 2 # that gclient uses under git. |
| 3 # | 3 # |
| 4 # See http://code.google.com/p/chromium/wiki/UsingGit | 4 # See http://code.google.com/p/chromium/wiki/UsingGit |
| 5 # | 5 # |
| 6 # To test manually, run: | 6 # To test manually, run: |
| 7 # python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir> | 7 # python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir> |
| 8 # where <gcliendir> is the absolute path to the directory containing the | 8 # where <gcliendir> is the absolute path to the directory containing the |
| 9 # .gclient file (the parent of 'src'). | 9 # .gclient file (the parent of 'src'). |
| 10 # | 10 # |
| 11 # Then commit .DEPS.git locally (gclient doesn't like dirty trees) and run | 11 # Then commit .DEPS.git locally (gclient doesn't like dirty trees) and run |
| 12 # gclient sync | 12 # gclient sync |
| 13 # Verify the thing happened you wanted. Then revert your .DEPS.git change | 13 # Verify the thing happened you wanted. Then revert your .DEPS.git change |
| 14 # DO NOT CHECK IN CHANGES TO .DEPS.git upstream. It will be automatically | 14 # DO NOT CHECK IN CHANGES TO .DEPS.git upstream. It will be automatically |
| 15 # updated by a bot when you modify this one. | 15 # updated by a bot when you modify this one. |
| 16 # | 16 # |
| 17 # When adding a new dependency, please update the top-level .gitignore file | 17 # When adding a new dependency, please update the top-level .gitignore file |
| 18 # to list the dependency's destination directory. | 18 # to list the dependency's destination directory. |
| 19 | 19 |
| 20 vars = { | 20 vars = { |
| 21 'chromium_git': 'https://chromium.googlesource.com', | 21 'chromium_git': 'https://chromium.googlesource.com', |
| 22 'dart_svn': 'https://dart.googlecode.com', | 22 'dart_svn': 'https://dart.googlecode.com', |
| 23 'dart_git': 'https://github.com', | |
| 23 'skia_revision': '409fd66a5afcef5f165f7ccec7c3473add231752', | 24 'skia_revision': '409fd66a5afcef5f165f7ccec7c3473add231752', |
| 24 'v8_revision': '230d131d173ab2d60291d303177bc04ec3f6e519', | 25 'v8_revision': '230d131d173ab2d60291d303177bc04ec3f6e519', |
| 25 'angle_revision': 'bdd419f9f5b006e913606e7363125942c8ae06bc', | 26 'angle_revision': 'bdd419f9f5b006e913606e7363125942c8ae06bc', |
| 26 'buildtools_revision': '15308f469a704c45d15567fa69cd94ce07ad0e1b', | 27 'buildtools_revision': '15308f469a704c45d15567fa69cd94ce07ad0e1b', |
| 27 'dart_revision': '45606', | 28 'dart_revision': 'd7450e43fb603b4f18e53f96b35b61da47b5bc8d', |
| 28 'dart_observatory_packages_revision': '45565', | 29 'dart_observatory_packages_revision': '45565', |
| 29 'pdfium_revision': 'b0115665b0f33971f1b7077740d51e155583cec0', | 30 'pdfium_revision': 'b0115665b0f33971f1b7077740d51e155583cec0', |
| 30 'boringssl_revision': '642f1498d056dbba3e50ed5a232ab2f482626dec', | 31 'boringssl_revision': '642f1498d056dbba3e50ed5a232ab2f482626dec', |
| 31 'lss_revision': 'e079768b7e3a94dcbe7d338496c0c3bde7151b6e', | 32 'lss_revision': 'e079768b7e3a94dcbe7d338496c0c3bde7151b6e', |
| 32 'nss_revision': 'bb4e75a43d007518ae7d618665ea2f25b0c60b63', | 33 'nss_revision': 'bb4e75a43d007518ae7d618665ea2f25b0c60b63', |
| 33 'nacl_revision': '87d5dd90911a0657c27574f78e86b7dfc4ad8b29', | 34 'nacl_revision': '87d5dd90911a0657c27574f78e86b7dfc4ad8b29', |
| 34 } | 35 } |
| 35 | 36 |
| 36 # Only these hosts are allowed for dependencies in this DEPS file. | 37 # Only these hosts are allowed for dependencies in this DEPS file. |
| 37 # If you need to add a new host, contact chrome infrastructure team. | 38 # If you need to add a new host, contact chrome infrastructure team. |
| 38 allowed_hosts = [ | 39 allowed_hosts = [ |
| 39 'boringssl.googlesource.com', | 40 'boringssl.googlesource.com', |
| 40 'chromium.googlesource.com', | 41 'chromium.googlesource.com', |
| 41 'dart.googlecode.com', | 42 'dart.googlecode.com', |
| 43 'github.com', | |
|
eseidel
2015/05/22 20:21:15
I missed this initially. I doubt this is OK. I'v
| |
| 42 'pdfium.googlesource.com', | 44 'pdfium.googlesource.com', |
| 43 ] | 45 ] |
| 44 | 46 |
| 45 deps = { | 47 deps = { |
| 46 'src/buildtools': | 48 'src/buildtools': |
| 47 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_rev ision'), | 49 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_rev ision'), |
| 48 | 50 |
| 49 'src/testing/gtest': | 51 'src/testing/gtest': |
| 50 Var('chromium_git') + '/external/googletest.git' + '@' + 'be1868139ffe0ccd0e8 e3b37292b84c821d9c8ad', # from svn revision 704 | 52 Var('chromium_git') + '/external/googletest.git' + '@' + 'be1868139ffe0ccd0e8 e3b37292b84c821d9c8ad', # from svn revision 704 |
| 51 | 53 |
| 52 'src/testing/gmock': | 54 'src/testing/gmock': |
| 53 Var('chromium_git') + '/external/googlemock.git' + '@' + '29763965ab52f245652 99976b936d1265cb6a271', # from svn revision 501 | 55 Var('chromium_git') + '/external/googlemock.git' + '@' + '29763965ab52f245652 99976b936d1265cb6a271', # from svn revision 501 |
| 54 | 56 |
| 55 'src/third_party/angle': | 57 'src/third_party/angle': |
| 56 Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), | 58 Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), |
| 57 | 59 |
| 58 'src/third_party/icu': | 60 'src/third_party/icu': |
| 59 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + '7c81740601355556e630d a515b74d889ba2f8d08', | 61 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + '7c81740601355556e630d a515b74d889ba2f8d08', |
| 60 | 62 |
| 61 'src/tools/grit': | 63 'src/tools/grit': |
| 62 Var('chromium_git') + '/external/grit-i18n.git' + '@' + 'c1b1591a05209c1ad46 7e845ba8543c22f9072af', # from svn revision 189 | 64 Var('chromium_git') + '/external/grit-i18n.git' + '@' + 'c1b1591a05209c1ad46 7e845ba8543c22f9072af', # from svn revision 189 |
| 63 | 65 |
| 64 'src/v8': | 66 'src/v8': |
| 65 Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'), | 67 Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'), |
| 66 | 68 |
| 67 'src/dart/runtime': | 69 'src/dart/': |
| 68 Var('dart_svn') + '/svn/branches/bleeding_edge/dart/runtime' + '@' + Var('da rt_revision'), | 70 Var('dart_git') + '/dart-lang/sdk.git' + '@' + Var('dart_revision'), |
| 69 | |
| 70 'src/dart/sdk/lib': | |
| 71 Var('dart_svn') + '/svn/branches/bleeding_edge/dart/sdk/lib' + '@' + Var('da rt_revision'), | |
| 72 | |
| 73 'src/dart/tools': | |
| 74 Var('dart_svn') + '/svn/branches/bleeding_edge/dart/tools' + '@' + Var('dart _revision'), | |
| 75 | 71 |
| 76 'src/dart/third_party/observatory_pub_packages': | 72 'src/dart/third_party/observatory_pub_packages': |
| 77 Var('dart_svn') + '/svn/third_party/observatory_pub_packages' + '@' + | 73 Var('dart_svn') + '/svn/third_party/observatory_pub_packages' + '@' + |
| 78 Var('dart_observatory_packages_revision'), | 74 Var('dart_observatory_packages_revision'), |
| 79 | 75 |
| 80 'src/third_party/skia': | 76 'src/third_party/skia': |
| 81 Var('chromium_git') + '/skia.git' + '@' + Var('skia_revision'), | 77 Var('chromium_git') + '/skia.git' + '@' + Var('skia_revision'), |
| 82 | 78 |
| 83 'src/third_party/yasm/source/patched-yasm': | 79 'src/third_party/yasm/source/patched-yasm': |
| 84 Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + '4671120 cd8558ce62ee8672ebf3eb6f5216f909b', | 80 Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + '4671120 cd8558ce62ee8672ebf3eb6f5216f909b', |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 335 'name': 'dejavu-fonts', | 331 'name': 'dejavu-fonts', |
| 336 'pattern': '', | 332 'pattern': '', |
| 337 'action': [ 'download_from_google_storage', | 333 'action': [ 'download_from_google_storage', |
| 338 '--no_resume', | 334 '--no_resume', |
| 339 '--no_auth', | 335 '--no_auth', |
| 340 '--bucket', 'mojo/dejavu-fonts', | 336 '--bucket', 'mojo/dejavu-fonts', |
| 341 '-s', 'src/third_party/dejavu-fonts-ttf-2.34/ttf/DejaVuSansMono. ttf.sha1', | 337 '-s', 'src/third_party/dejavu-fonts-ttf-2.34/ttf/DejaVuSansMono. ttf.sha1', |
| 342 ], | 338 ], |
| 343 }, | 339 }, |
| 344 ] | 340 ] |
| OLD | NEW |