| 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 deps = { | 107 deps = { |
| 108 'src/breakpad/src': | 108 'src/breakpad/src': |
| 109 Var('chromium_git') + '/breakpad/breakpad/src.git' + '@' + '7c70f47255713629c
8053826008bd00f98d71ced', | 109 Var('chromium_git') + '/breakpad/breakpad/src.git' + '@' + '7c70f47255713629c
8053826008bd00f98d71ced', |
| 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' + '@' + '
21d7d0b9c3d0c3ccbdb221c85ae889373f0a2a58', |
| 116 | 116 |
| 117 'src/testing/gtest': | 117 'src/testing/third_party/googletest': |
| 118 Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + '6
f8a66431cb592dad629028a50b3dd418a408c87', | 118 Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + 'e
c44c6c1675c25b9827aacd08c02433cccde7780', |
| 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 |
| 126 'src/third_party/shaderc/src': | 126 'src/third_party/shaderc/src': |
| 127 Var('chromium_git') + '/external/github.com/google/shaderc.git' + '@' + 'cd87
93c34907073025af2622c28bcee64e9879a4', | 127 Var('chromium_git') + '/external/github.com/google/shaderc.git' + '@' + 'cd87
93c34907073025af2622c28bcee64e9879a4', |
| 128 | 128 |
| (...skipping 825 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 954 { | 954 { |
| 955 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 955 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 956 'name': 'gyp', | 956 'name': 'gyp', |
| 957 'pattern': '.', | 957 'pattern': '.', |
| 958 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 958 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
| 959 }, | 959 }, |
| 960 ] | 960 ] |
| 961 | 961 |
| 962 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 962 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 963 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 963 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
| OLD | NEW |