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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 'src/third_party/SPIRV-Tools/src': | 137 'src/third_party/SPIRV-Tools/src': |
138 Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Tools.git' + '
@' + '9166854ac93ef81b026e943ccd230fed6c8b8d3c', | 138 Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Tools.git' + '
@' + '9166854ac93ef81b026e943ccd230fed6c8b8d3c', |
139 | 139 |
140 'src/third_party/angle': | 140 'src/third_party/angle': |
141 Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), | 141 Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), |
142 | 142 |
143 'src/third_party/colorama/src': | 143 'src/third_party/colorama/src': |
144 Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d27
89ecbd7e8db2e18e6b8', | 144 Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d27
89ecbd7e8db2e18e6b8', |
145 | 145 |
146 'src/third_party/icu': | 146 'src/third_party/icu': |
147 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + '466129d661caa849d4087
b624840b4b2c4ee7d85', | 147 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + 'ffa4b6704cf5cc9fec948
5731f24a05b2ba94bca', |
148 | 148 |
149 'src/third_party/hunspell_dictionaries': | 149 'src/third_party/hunspell_dictionaries': |
150 Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + 'dc6
e7c25bf47cbfb466e0701fd2728b4a12e79d5', | 150 Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + 'dc6
e7c25bf47cbfb466e0701fd2728b4a12e79d5', |
151 | 151 |
152 'src/third_party/safe_browsing/testing': | 152 'src/third_party/safe_browsing/testing': |
153 Var('chromium_git') + '/external/google-safe-browsing/testing.git' + '@' + '
9d7e8064f3ca2e45891470c9b5b1dce54af6a9d6', | 153 Var('chromium_git') + '/external/google-safe-browsing/testing.git' + '@' + '
9d7e8064f3ca2e45891470c9b5b1dce54af6a9d6', |
154 | 154 |
155 'src/third_party/leveldatabase/src': | 155 'src/third_party/leveldatabase/src': |
156 Var('chromium_git') + '/external/leveldb.git' + '@' + 'a7bff697baa062c8f6b8f
b760eacf658712b611a', | 156 Var('chromium_git') + '/external/leveldb.git' + '@' + 'a7bff697baa062c8f6b8f
b760eacf658712b611a', |
157 | 157 |
(...skipping 694 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
852 'src/build/android/download_doclava.py', | 852 'src/build/android/download_doclava.py', |
853 ], | 853 ], |
854 }, | 854 }, |
855 { | 855 { |
856 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 856 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
857 'name': 'gyp', | 857 'name': 'gyp', |
858 'pattern': '.', | 858 'pattern': '.', |
859 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 859 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
860 }, | 860 }, |
861 ] | 861 ] |
OLD | NEW |