| 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 'src/testing/gmock': | 124 'src/testing/gmock': |
| 125 Var('chromium_git') + '/external/googlemock.git' + '@' + '0421b6f358139f02e10
2c9c332ce19a33faf75be', # from svn revision 566 | 125 Var('chromium_git') + '/external/googlemock.git' + '@' + '0421b6f358139f02e10
2c9c332ce19a33faf75be', # from svn revision 566 |
| 126 | 126 |
| 127 'src/third_party/angle': | 127 'src/third_party/angle': |
| 128 Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), | 128 Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), |
| 129 | 129 |
| 130 'src/third_party/colorama/src': | 130 'src/third_party/colorama/src': |
| 131 Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d27
89ecbd7e8db2e18e6b8', | 131 Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d27
89ecbd7e8db2e18e6b8', |
| 132 | 132 |
| 133 'src/third_party/icu': | 133 'src/third_party/icu': |
| 134 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + '0d572d65aae621e13d686
3fe470c9c8cee71043d', | 134 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + '3edd83a9c607c7dc0c0fd
34d68057da5c4d0f471', |
| 135 | 135 |
| 136 'src/third_party/hunspell_dictionaries': | 136 'src/third_party/hunspell_dictionaries': |
| 137 Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + 'c10
6afdcec5d3de2622e19f1b3294c47bbd8bd72', | 137 Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + 'c10
6afdcec5d3de2622e19f1b3294c47bbd8bd72', |
| 138 | 138 |
| 139 'src/third_party/safe_browsing/testing': | 139 'src/third_party/safe_browsing/testing': |
| 140 Var('chromium_git') + '/external/google-safe-browsing/testing.git' + '@' + '
9d7e8064f3ca2e45891470c9b5b1dce54af6a9d6', | 140 Var('chromium_git') + '/external/google-safe-browsing/testing.git' + '@' + '
9d7e8064f3ca2e45891470c9b5b1dce54af6a9d6', |
| 141 | 141 |
| 142 'src/third_party/leveldatabase/src': | 142 'src/third_party/leveldatabase/src': |
| 143 Var('chromium_git') + '/external/leveldb.git' + '@' + '7306ef856a91e462a73ff
1832c1fa8771008ba36', | 143 Var('chromium_git') + '/external/leveldb.git' + '@' + '7306ef856a91e462a73ff
1832c1fa8771008ba36', |
| 144 | 144 |
| (...skipping 690 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 835 'pattern': '\\.sha1', | 835 'pattern': '\\.sha1', |
| 836 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa
d_binaries.py'], | 836 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa
d_binaries.py'], |
| 837 }, | 837 }, |
| 838 { | 838 { |
| 839 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 839 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 840 'name': 'gyp', | 840 'name': 'gyp', |
| 841 'pattern': '.', | 841 'pattern': '.', |
| 842 'action': ['python', 'src/build/gyp_chromium'], | 842 'action': ['python', 'src/build/gyp_chromium'], |
| 843 }, | 843 }, |
| 844 ] | 844 ] |
| OLD | NEW |