| 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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 'src/native_client': None, | 354 'src/native_client': None, |
| 355 'src/third_party/ffmpeg': None, | 355 'src/third_party/ffmpeg': None, |
| 356 'src/third_party/hunspell_dictionaries': None, | 356 'src/third_party/hunspell_dictionaries': None, |
| 357 'src/third_party/webgl': None, | 357 'src/third_party/webgl': None, |
| 358 }, | 358 }, |
| 359 'mac': { | 359 'mac': { |
| 360 'src/third_party/google_toolbox_for_mac/src': | 360 'src/third_party/google_toolbox_for_mac/src': |
| 361 Var('chromium_git') + '/external/github.com/google/google-toolbox-for-mac.
git' + '@' + Var('google_toolbox_for_mac_revision'), | 361 Var('chromium_git') + '/external/github.com/google/google-toolbox-for-mac.
git' + '@' + Var('google_toolbox_for_mac_revision'), |
| 362 | 362 |
| 363 | 363 |
| 364 'src/third_party/pdfsqueeze': | |
| 365 Var('chromium_git') + '/external/pdfsqueeze.git' + '@' + '5936b871e6a087b7
e50d4cbcb122378d8a07499f', | |
| 366 | |
| 367 'src/third_party/lighttpd': | 364 'src/third_party/lighttpd': |
| 368 Var('chromium_git') + '/chromium/deps/lighttpd.git' + '@' + Var('lighttpd_r
evision'), | 365 Var('chromium_git') + '/chromium/deps/lighttpd.git' + '@' + Var('lighttpd_r
evision'), |
| 369 | 366 |
| 370 'src/chrome/installer/mac/third_party/xz/xz': | 367 'src/chrome/installer/mac/third_party/xz/xz': |
| 371 Var('chromium_git') + '/chromium/deps/xz.git' + '@' + 'eecaf55632ca72e90eb2
641376bce7cdbc7284f7', | 368 Var('chromium_git') + '/chromium/deps/xz.git' + '@' + 'eecaf55632ca72e90eb2
641376bce7cdbc7284f7', |
| 372 }, | 369 }, |
| 373 'unix': { | 370 'unix': { |
| 374 # Linux, really. | 371 # Linux, really. |
| 375 'src/third_party/xdg-utils': | 372 'src/third_party/xdg-utils': |
| 376 Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b1
7b8c9067a1022e4416ee7ed5e0d', | 373 Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b1
7b8c9067a1022e4416ee7ed5e0d', |
| (...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 846 'src/build/android/download_doclava.py', | 843 'src/build/android/download_doclava.py', |
| 847 ], | 844 ], |
| 848 }, | 845 }, |
| 849 { | 846 { |
| 850 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 847 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 851 'name': 'gyp', | 848 'name': 'gyp', |
| 852 'pattern': '.', | 849 'pattern': '.', |
| 853 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 850 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
| 854 }, | 851 }, |
| 855 ] | 852 ] |
| OLD | NEW |