| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 # If you need to add a new host, contact chrome infrastracture team. | 94 # If you need to add a new host, contact chrome infrastracture team. |
| 95 allowed_hosts = [ | 95 allowed_hosts = [ |
| 96 'chromium.googlesource.com', | 96 'chromium.googlesource.com', |
| 97 'boringssl.googlesource.com', | 97 'boringssl.googlesource.com', |
| 98 'pdfium.googlesource.com', | 98 'pdfium.googlesource.com', |
| 99 'android.googlesource.com', | 99 'android.googlesource.com', |
| 100 ] | 100 ] |
| 101 | 101 |
| 102 deps = { | 102 deps = { |
| 103 'src/breakpad/src': | 103 'src/breakpad/src': |
| 104 Var('chromium_git') + '/breakpad/breakpad/src.git' + '@' + '9e9c3563a356ce441
eed044257a54aa8b4114693', | 104 Var('chromium_git') + '/breakpad/breakpad/src.git' + '@' + 'b0383cd494e736720
d237d61af2912bb60960cd8', |
| 105 | 105 |
| 106 'src/buildtools': | 106 'src/buildtools': |
| 107 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_rev
ision'), | 107 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_rev
ision'), |
| 108 | 108 |
| 109 'src/sdch/open-vcdiff': | 109 'src/sdch/open-vcdiff': |
| 110 Var('chromium_git') + '/external/github.com/google/open-vcdiff.git' + '@' + '
21d7d0b9c3d0c3ccbdb221c85ae889373f0a2a58', | 110 Var('chromium_git') + '/external/github.com/google/open-vcdiff.git' + '@' + '
21d7d0b9c3d0c3ccbdb221c85ae889373f0a2a58', |
| 111 | 111 |
| 112 'src/testing/gtest': | 112 'src/testing/gtest': |
| 113 Var('chromium_git') + '/external/googletest.git' + '@' + '9855a87157778d39b95
eccfb201a9dc90f6d61c6', # from svn revision 746 | 113 Var('chromium_git') + '/external/googletest.git' + '@' + '9855a87157778d39b95
eccfb201a9dc90f6d61c6', # from svn revision 746 |
| 114 | 114 |
| (...skipping 689 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 804 'name': 'check_git_config', | 804 'name': 'check_git_config', |
| 805 'pattern': '.', | 805 'pattern': '.', |
| 806 'action': [ | 806 'action': [ |
| 807 'python', | 807 'python', |
| 808 'src/tools/check_git_config.py', | 808 'src/tools/check_git_config.py', |
| 809 '--running-as-hook', | 809 '--running-as-hook', |
| 810 ], | 810 ], |
| 811 }, | 811 }, |
| 812 ] | 812 ] |
| 813 | 813 |
| OLD | NEW |