| 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 Var('chromium_git') + '/chromium/reference_builds/chrome_linux64.git' + '@'
+ '033d053a528e820e1de3e2db766678d862a86b36', | 380 Var('chromium_git') + '/chromium/reference_builds/chrome_linux64.git' + '@'
+ '033d053a528e820e1de3e2db766678d862a86b36', |
| 381 | 381 |
| 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' + '@' + 'ed198c
46f73e67d9a494c3c0623e3ba16e4da5e8', | 390 Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + 'd9ecb3
bd87504815d4c58a6a8b9031deb2498d19', |
| 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 # Build tools for Chrome OS. | 396 # Build tools for Chrome OS. |
| 397 'src/third_party/chromite': | 397 'src/third_party/chromite': |
| 398 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + 'e19f83ba227bf1ec0
077f5d3a816a415f1dd88d0', | 398 Var('chromium_git') + '/chromiumos/chromite.git' + '@' + 'e19f83ba227bf1ec0
077f5d3a816a415f1dd88d0', |
| 399 | 399 |
| 400 # Dependency of chromite.git. | 400 # Dependency of chromite.git. |
| (...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 812 'src/tools', | 812 'src/tools', |
| 813 ], | 813 ], |
| 814 }, | 814 }, |
| 815 { | 815 { |
| 816 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 816 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 817 'name': 'gyp', | 817 'name': 'gyp', |
| 818 'pattern': '.', | 818 'pattern': '.', |
| 819 'action': ['python', 'src/build/gyp_chromium'], | 819 'action': ['python', 'src/build/gyp_chromium'], |
| 820 }, | 820 }, |
| 821 ] | 821 ] |
| OLD | NEW |