| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 ] | 105 ] |
| 106 | 106 |
| 107 deps = { | 107 deps = { |
| 108 'src/breakpad/src': | 108 'src/breakpad/src': |
| 109 Var('chromium_git') + '/breakpad/breakpad/src.git' + '@' + '51db53eec7293a35c
b6fc10bd2e333f22dd9d201', | 109 Var('chromium_git') + '/breakpad/breakpad/src.git' + '@' + '51db53eec7293a35c
b6fc10bd2e333f22dd9d201', |
| 110 | 110 |
| 111 'src/buildtools': | 111 'src/buildtools': |
| 112 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_rev
ision'), | 112 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_rev
ision'), |
| 113 | 113 |
| 114 'src/sdch/open-vcdiff': | 114 'src/sdch/open-vcdiff': |
| 115 Var('chromium_git') + '/external/github.com/google/open-vcdiff.git' + '@' + '
21d7d0b9c3d0c3ccbdb221c85ae889373f0a2a58', | 115 Var('chromium_git') + '/external/github.com/google/open-vcdiff.git' + '@' + '
2b9bd1fe548520e9355e457a134bab7e2f9c56c0', |
| 116 | 116 |
| 117 'src/testing/gtest': | 117 'src/testing/gtest': |
| 118 Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + '6
f8a66431cb592dad629028a50b3dd418a408c87', | 118 Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + '6
f8a66431cb592dad629028a50b3dd418a408c87', |
| 119 | 119 |
| 120 'src/testing/gmock': | 120 'src/testing/gmock': |
| 121 Var('chromium_git') + '/external/googlemock.git' + '@' + '0421b6f358139f02e10
2c9c332ce19a33faf75be', # from svn revision 566 | 121 Var('chromium_git') + '/external/googlemock.git' + '@' + '0421b6f358139f02e10
2c9c332ce19a33faf75be', # from svn revision 566 |
| 122 | 122 |
| 123 'src/third_party/glslang/src': | 123 'src/third_party/glslang/src': |
| 124 Var('chromium_git') + '/external/github.com/google/glslang.git' + '@' + '210c
6bf4d8119dc5f8ac21da2d4c87184f7015e0', | 124 Var('chromium_git') + '/external/github.com/google/glslang.git' + '@' + '210c
6bf4d8119dc5f8ac21da2d4c87184f7015e0', |
| 125 | 125 |
| (...skipping 847 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 973 'name': 'doclava', | 973 'name': 'doclava', |
| 974 'pattern': '.', | 974 'pattern': '.', |
| 975 'action': ['python', | 975 'action': ['python', |
| 976 'src/build/android/download_doclava.py', | 976 'src/build/android/download_doclava.py', |
| 977 ], | 977 ], |
| 978 }, | 978 }, |
| 979 ] | 979 ] |
| 980 | 980 |
| 981 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 981 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 982 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 982 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
| OLD | NEW |