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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 # If you need to add a new host, contact chrome infrastracture team. | 90 # If you need to add a new host, contact chrome infrastracture team. |
91 allowed_hosts = [ | 91 allowed_hosts = [ |
92 'chromium.googlesource.com', | 92 'chromium.googlesource.com', |
93 'boringssl.googlesource.com', | 93 'boringssl.googlesource.com', |
94 'pdfium.googlesource.com', | 94 'pdfium.googlesource.com', |
95 'android.googlesource.com', | 95 'android.googlesource.com', |
96 ] | 96 ] |
97 | 97 |
98 deps = { | 98 deps = { |
99 'src/breakpad/src': | 99 'src/breakpad/src': |
100 Var('chromium_git') + '/external/google-breakpad/src.git' + '@' + '242fb9a38d
b6ba534b1f7daa341dd4d79171658b', # from svn revision 1471 | 100 Var('chromium_git') + '/external/google-breakpad/src.git' + '@' + '013acd5326
9b5822d4a4f3fd07457a01af11e3a4', # from svn revision 1495 |
101 | 101 |
102 'src/buildtools': | 102 'src/buildtools': |
103 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_rev
ision'), | 103 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_rev
ision'), |
104 | 104 |
105 'src/sdch/open-vcdiff': | 105 'src/sdch/open-vcdiff': |
106 Var('chromium_git') + '/external/github.com/google/open-vcdiff.git' + '@' + '
39ff500790fa8038f80bd2fdcd10c35568a12529', | 106 Var('chromium_git') + '/external/github.com/google/open-vcdiff.git' + '@' + '
39ff500790fa8038f80bd2fdcd10c35568a12529', |
107 | 107 |
108 'src/testing/gtest': | 108 'src/testing/gtest': |
109 Var('chromium_git') + '/external/googletest.git' + '@' + '9855a87157778d39b95
eccfb201a9dc90f6d61c6', # from svn revision 746 | 109 Var('chromium_git') + '/external/googletest.git' + '@' + '9855a87157778d39b95
eccfb201a9dc90f6d61c6', # from svn revision 746 |
110 | 110 |
(...skipping 693 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
804 'pattern': '.', | 804 'pattern': '.', |
805 'action': [ | 805 'action': [ |
806 'python', | 806 'python', |
807 'src/tools/check_git_config.py', | 807 'src/tools/check_git_config.py', |
808 '--running-as-hook', | 808 '--running-as-hook', |
809 ], | 809 ], |
810 }, | 810 }, |
811 ] | 811 ] |
812 | 812 |
813 | 813 |
OLD | NEW |