OLD | NEW |
1 # This file is used to manage the dependencies of the Chromium src repo. It is | 1 # This file is used to manage the dependencies of the Chromium src repo. It is |
2 # used by gclient to determine what version of each dependency to check out, and | 2 # used by gclient to determine what version of each dependency to check out, and |
3 # where. | 3 # where. |
4 # | 4 # |
5 # For more information, please refer to the official documentation: | 5 # For more information, please refer to the official documentation: |
6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code | 6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code |
7 # | 7 # |
8 # When adding a new dependency, please update the top-level .gitignore file | 8 # When adding a new dependency, please update the top-level .gitignore file |
9 # to list the dependency's destination directory. | 9 # to list the dependency's destination directory. |
10 # | 10 # |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 # If you need to add a new host, contact chrome infrastracture team. | 89 # If you need to add a new host, contact chrome infrastracture team. |
90 allowed_hosts = [ | 90 allowed_hosts = [ |
91 'chromium.googlesource.com', | 91 'chromium.googlesource.com', |
92 'boringssl.googlesource.com', | 92 'boringssl.googlesource.com', |
93 'pdfium.googlesource.com', | 93 'pdfium.googlesource.com', |
94 'android.googlesource.com', | 94 'android.googlesource.com', |
95 ] | 95 ] |
96 | 96 |
97 deps = { | 97 deps = { |
98 'src/breakpad/src': | 98 'src/breakpad/src': |
99 Var('chromium_git') + '/external/google-breakpad/src.git' + '@' + '0bccfcc380
87bf8b71c04befe6cd83c683db980a', # from svn revision 1465 | 99 Var('chromium_git') + '/external/google-breakpad/src.git' + '@' + '242fb9a38d
b6ba534b1f7daa341dd4d79171658b', # from svn revision 1471 |
100 | 100 |
101 'src/buildtools': | 101 'src/buildtools': |
102 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_rev
ision'), | 102 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_rev
ision'), |
103 | 103 |
104 'src/sdch/open-vcdiff': | 104 'src/sdch/open-vcdiff': |
105 Var('chromium_git') + '/external/open-vcdiff.git' + '@' + '438f2a5be6d809bc21
611a94cd37bfc8c28ceb33', # from svn revision 41 | 105 Var('chromium_git') + '/external/open-vcdiff.git' + '@' + '438f2a5be6d809bc21
611a94cd37bfc8c28ceb33', # from svn revision 41 |
106 | 106 |
107 'src/testing/gtest': | 107 'src/testing/gtest': |
108 Var('chromium_git') + '/external/googletest.git' + '@' + '23574bf2333f834ff66
5f894c97bef8a5b33a0a9', # from svn revision 711 | 108 Var('chromium_git') + '/external/googletest.git' + '@' + '23574bf2333f834ff66
5f894c97bef8a5b33a0a9', # from svn revision 711 |
109 | 109 |
(...skipping 679 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
789 # migration completes (let's say Sep 1 2014). | 789 # migration completes (let's say Sep 1 2014). |
790 'name': 'check_git_config', | 790 'name': 'check_git_config', |
791 'pattern': '.', | 791 'pattern': '.', |
792 'action': [ | 792 'action': [ |
793 'python', | 793 'python', |
794 'src/tools/check_git_config.py', | 794 'src/tools/check_git_config.py', |
795 '--running-as-hook', | 795 '--running-as-hook', |
796 ], | 796 ], |
797 }, | 797 }, |
798 ] | 798 ] |
OLD | NEW |