| 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 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 440 'src/third_party/cardboard-java/src': | 440 'src/third_party/cardboard-java/src': |
| 441 Var('chromium_git') + '/external/github.com/googlesamples/cardboard-java.gi
t' + '@' + 'e36ee57e72bbd057ddb53b127954177b50e18df7', | 441 Var('chromium_git') + '/external/github.com/googlesamples/cardboard-java.gi
t' + '@' + 'e36ee57e72bbd057ddb53b127954177b50e18df7', |
| 442 | 442 |
| 443 'src/third_party/errorprone/lib': | 443 'src/third_party/errorprone/lib': |
| 444 Var('chromium_git') + '/chromium/third_party/errorprone.git' + '@' + '0eea
83b66343133b9c76b7d3288c30321818ebcf', | 444 Var('chromium_git') + '/chromium/third_party/errorprone.git' + '@' + '0eea
83b66343133b9c76b7d3288c30321818ebcf', |
| 445 | 445 |
| 446 'src/third_party/findbugs': | 446 'src/third_party/findbugs': |
| 447 Var('chromium_git') + '/chromium/deps/findbugs.git' + '@' + '57f05238d3ac77
ea0a194813d3065dd780c6e566', | 447 Var('chromium_git') + '/chromium/deps/findbugs.git' + '@' + '57f05238d3ac77
ea0a194813d3065dd780c6e566', |
| 448 | 448 |
| 449 'src/third_party/freetype-android/src': | 449 'src/third_party/freetype-android/src': |
| 450 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + '66
cf29b1bc869b44863b0de2115bd017dfcce849', | 450 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + '30
fe5e762e062612fdf4b56b50d813525a5aa311', |
| 451 | 451 |
| 452 'src/third_party/elfutils/src': | 452 'src/third_party/elfutils/src': |
| 453 Var('chromium_git') + '/external/elfutils.git' + '@' + '249673729a7e5dbd5de
4f3760bdcaa3d23d154d7', | 453 Var('chromium_git') + '/external/elfutils.git' + '@' + '249673729a7e5dbd5de
4f3760bdcaa3d23d154d7', |
| 454 | 454 |
| 455 'src/third_party/httpcomponents-client': | 455 'src/third_party/httpcomponents-client': |
| 456 Var('chromium_git') + '/chromium/deps/httpcomponents-client.git' + '@' + '2
85c4dafc5de0e853fa845dce5773e223219601c', | 456 Var('chromium_git') + '/chromium/deps/httpcomponents-client.git' + '@' + '2
85c4dafc5de0e853fa845dce5773e223219601c', |
| 457 | 457 |
| 458 'src/third_party/httpcomponents-core': | 458 'src/third_party/httpcomponents-core': |
| 459 Var('chromium_git') + '/chromium/deps/httpcomponents-core.git' + '@' + '9f7
180a96f8fa5cab23f793c14b413356d419e62', | 459 Var('chromium_git') + '/chromium/deps/httpcomponents-core.git' + '@' + '9f7
180a96f8fa5cab23f793c14b413356d419e62', |
| 460 | 460 |
| (...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 ] |
| 822 | 822 |
| 823 | 823 |
| OLD | NEW |