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 'skia_revision': '8cc209111876b7c78b5ec577c9221d8ed5e21024', | 22 'skia_revision': '8cc209111876b7c78b5ec577c9221d8ed5e21024', |
23 'v8_revision': '3f036fc0ba4ca4483fe77822f8605c277d37ee24', | 23 'v8_revision': '3f036fc0ba4ca4483fe77822f8605c277d37ee24', |
24 'base_revision': '163fb42027bea947916ba4d2fa03aa0ed7c3f99e', | 24 'base_revision': '5e00da80f6adb7082d1c0e88d3274cf87cc43bc5', |
25 'angle_revision': '46ccef1992a8ede16a596c3dd73cff13c047267d', | 25 'angle_revision': '46ccef1992a8ede16a596c3dd73cff13c047267d', |
26 'buildtools_revision': '222bd42ce39d1bd8f08fe089b066f49c469e1cdf', | 26 'buildtools_revision': '222bd42ce39d1bd8f08fe089b066f49c469e1cdf', |
27 'dart_revision': 'f64c907557646699fada4acb7e9a82346a369993', | 27 'dart_revision': 'f64c907557646699fada4acb7e9a82346a369993', |
28 'dart_root_certificates_revision': 'aed07942ce98507d2be28cbd29e879525410c7fc', | 28 'dart_root_certificates_revision': 'aed07942ce98507d2be28cbd29e879525410c7fc', |
29 'dart_observatory_packages_revision': 'cf90eb9077177d3d6b3fd5e8289477c2385c026
a', | 29 'dart_observatory_packages_revision': 'cf90eb9077177d3d6b3fd5e8289477c2385c026
a', |
30 'pdfium_revision': 'ae4256f45df69bbfdf722a6ec17e1e851911ae4e', | 30 'pdfium_revision': 'ae4256f45df69bbfdf722a6ec17e1e851911ae4e', |
31 'boringssl_revision': '642f1498d056dbba3e50ed5a232ab2f482626dec', | 31 'boringssl_revision': '642f1498d056dbba3e50ed5a232ab2f482626dec', |
32 'lss_revision': '6f97298fe3794e92c8c896a6bc06e0b36e4c3de3', | 32 'lss_revision': '6f97298fe3794e92c8c896a6bc06e0b36e4c3de3', |
33 'nacl_revision': 'f5bc68c59b147b66d553dc6fc17426682cf138e2', | 33 'nacl_revision': 'f5bc68c59b147b66d553dc6fc17426682cf138e2', |
34 'tonic_revision': 'e41f72c684e0da61304ebd6f3147d0fe23ffbb56', | 34 'tonic_revision': 'f7acabb8fa6c91124486a41194eac3cd421b70d0', |
35 'gurl_revision': '561639dfb664ee4c14371f569213b9d41f4fe110', | 35 'gurl_revision': '561639dfb664ee4c14371f569213b9d41f4fe110', |
36 } | 36 } |
37 | 37 |
38 # Only these hosts are allowed for dependencies in this DEPS file. | 38 # Only these hosts are allowed for dependencies in this DEPS file. |
39 # If you need to add a new host, contact chrome infrastructure team. | 39 # If you need to add a new host, contact chrome infrastructure team. |
40 allowed_hosts = [ | 40 allowed_hosts = [ |
41 'boringssl.googlesource.com', | 41 'boringssl.googlesource.com', |
42 'chromium.googlesource.com', | 42 'chromium.googlesource.com', |
43 'pdfium.googlesource.com', | 43 'pdfium.googlesource.com', |
44 ] | 44 ] |
45 | 45 |
46 deps = { | 46 deps = { |
47 'src/base': | 47 'src/base': |
48 Var('chromium_git') + '/external/github.com/domokit/base' + '@' + Var('base_
revision'), | 48 Var('chromium_git') + '/external/github.com/domokit/base' + '@' + Var('base_
revision'), |
49 | 49 |
50 'src/buildtools': | 50 'src/buildtools': |
51 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_rev
ision'), | 51 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_rev
ision'), |
52 | 52 |
53 'src/testing/gtest': | 53 'src/testing/gtest': |
54 Var('chromium_git') + '/external/googletest.git' + '@' + 'be1868139ffe0ccd0e8
e3b37292b84c821d9c8ad', # from svn revision 704 | 54 Var('chromium_git') + '/external/googletest.git' + '@' + '00a70a9667d92a4695d
84e4fa36b64f611f147da', # from svn revision 725 |
55 | 55 |
56 'src/testing/gmock': | 56 'src/testing/gmock': |
57 Var('chromium_git') + '/external/googlemock.git' + '@' + '29763965ab52f245652
99976b936d1265cb6a271', # from svn revision 501 | 57 Var('chromium_git') + '/external/googlemock.git' + '@' + '29763965ab52f245652
99976b936d1265cb6a271', # from svn revision 501 |
58 | 58 |
59 'src/third_party/angle': | 59 'src/third_party/angle': |
60 Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), | 60 Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), |
61 | 61 |
62 'src/third_party/icu': | 62 'src/third_party/icu': |
63 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + '94e4b770ce2f6065d4261
d29c32683a6099b9d93', | 63 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + '94e4b770ce2f6065d4261
d29c32683a6099b9d93', |
64 | 64 |
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
450 'action': [ 'src/tools/download_from_google_storage.py', | 450 'action': [ 'src/tools/download_from_google_storage.py', |
451 '--no_resume', | 451 '--no_resume', |
452 '--quiet', | 452 '--quiet', |
453 '--platform=linux*', | 453 '--platform=linux*', |
454 '--no_auth', | 454 '--no_auth', |
455 '--bucket', 'mojo/mojom_parser/linux64/generators', | 455 '--bucket', 'mojo/mojom_parser/linux64/generators', |
456 '-d', 'src/mojo/public/tools/bindings/mojom_tool/bin/linux64/gen
erators', | 456 '-d', 'src/mojo/public/tools/bindings/mojom_tool/bin/linux64/gen
erators', |
457 ], | 457 ], |
458 }, | 458 }, |
459 ] | 459 ] |
OLD | NEW |