| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 'src/breakpad/src': | 108 'src/breakpad/src': |
| 109 Var('chromium_git') + '/breakpad/breakpad/src.git' + '@' + '615a6b0e2b376e3ae
946972a52ef897bf6daaff3', | 109 Var('chromium_git') + '/breakpad/breakpad/src.git' + '@' + '615a6b0e2b376e3ae
946972a52ef897bf6daaff3', |
| 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/gtest': |
| 118 Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + '6
f8a66431cb592dad629028a50b3dd418a408c87', | 118 Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + '7
86564fa4a3c8e0f908acca32cce481de5481b9f', |
| 119 | |
| 120 'src/testing/gmock': | |
| 121 Var('chromium_git') + '/external/googlemock.git' + '@' + '0421b6f358139f02e10
2c9c332ce19a33faf75be', # from svn revision 566 | |
| 122 | 119 |
| 123 'src/third_party/angle': | 120 'src/third_party/angle': |
| 124 Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), | 121 Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), |
| 125 | 122 |
| 126 'src/third_party/colorama/src': | 123 'src/third_party/colorama/src': |
| 127 Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d27
89ecbd7e8db2e18e6b8', | 124 Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d27
89ecbd7e8db2e18e6b8', |
| 128 | 125 |
| 129 'src/third_party/crashpad/crashpad': | 126 'src/third_party/crashpad/crashpad': |
| 130 Var('chromium_git') + '/crashpad/crashpad.git' + '@' + '97b0f86d0ccb095391ca6
4b3948f0d6c02975ac1', | 127 Var('chromium_git') + '/crashpad/crashpad.git' + '@' + '97b0f86d0ccb095391ca6
4b3948f0d6c02975ac1', |
| 131 | 128 |
| (...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 810 }, | 807 }, |
| 811 { | 808 { |
| 812 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 809 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 813 'name': 'gyp', | 810 'name': 'gyp', |
| 814 'pattern': '.', | 811 'pattern': '.', |
| 815 'action': ['python', 'src/build/gyp_chromium'], | 812 'action': ['python', 'src/build/gyp_chromium'], |
| 816 }, | 813 }, |
| 817 ] | 814 ] |
| 818 | 815 |
| 819 | 816 |
| OLD | NEW |