Chromium Code Reviews| 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 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 380 'unix': { | 380 'unix': { |
| 381 # Linux, really. | 381 # Linux, really. |
| 382 'src/third_party/xdg-utils': | 382 'src/third_party/xdg-utils': |
| 383 Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b1 7b8c9067a1022e4416ee7ed5e0d', | 383 Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b1 7b8c9067a1022e4416ee7ed5e0d', |
| 384 | 384 |
| 385 'src/third_party/lss': | 385 'src/third_party/lss': |
| 386 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va r('lss_revision'), | 386 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va r('lss_revision'), |
| 387 | 387 |
| 388 # For Linux and Chromium OS. | 388 # For Linux and Chromium OS. |
| 389 'src/third_party/cros_system_api': | 389 'src/third_party/cros_system_api': |
| 390 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '8e2e37 df9c5326a8e4198553a4befb0c1be97841', | 390 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '452060 bb03235f1241f5822f326f2abbc936e656', |
|
stevenjb
2016/03/29 00:54:00
This should be done as a separate CL.
| |
| 391 | 391 |
| 392 # Note that this is different from Android's freetype repo. | 392 # Note that this is different from Android's freetype repo. |
| 393 'src/third_party/freetype2/src': | 393 'src/third_party/freetype2/src': |
| 394 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + 'fc 1532a7c4c592f24a4c1a0261d2845524ca5cff', | 394 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + 'fc 1532a7c4c592f24a4c1a0261d2845524ca5cff', |
| 395 | 395 |
| 396 'src/third_party/freetype-android/src': | 396 'src/third_party/freetype-android/src': |
| 397 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var ('freetype_android_revision'), | 397 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var ('freetype_android_revision'), |
| 398 | 398 |
| 399 # Build tools for Chrome OS. | 399 # Build tools for Chrome OS. |
| 400 'src/third_party/chromite': | 400 'src/third_party/chromite': |
| (...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 845 'pattern': '\\.sha1', | 845 'pattern': '\\.sha1', |
| 846 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa d_binaries.py'], | 846 'action': ['python', 'src/third_party/instrumented_libraries/scripts/downloa d_binaries.py'], |
| 847 }, | 847 }, |
| 848 { | 848 { |
| 849 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 849 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 850 'name': 'gyp', | 850 'name': 'gyp', |
| 851 'pattern': '.', | 851 'pattern': '.', |
| 852 'action': ['python', 'src/build/gyp_chromium'], | 852 'action': ['python', 'src/build/gyp_chromium'], |
| 853 }, | 853 }, |
| 854 ] | 854 ] |
| OLD | NEW |