| 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 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 'src/third_party/cardboard-java/src': | 432 'src/third_party/cardboard-java/src': |
| 433 Var('chromium_git') + '/external/github.com/googlesamples/cardboard-java.gi
t' + '@' + 'e36ee57e72bbd057ddb53b127954177b50e18df7', | 433 Var('chromium_git') + '/external/github.com/googlesamples/cardboard-java.gi
t' + '@' + 'e36ee57e72bbd057ddb53b127954177b50e18df7', |
| 434 | 434 |
| 435 'src/third_party/errorprone/lib': | 435 'src/third_party/errorprone/lib': |
| 436 Var('chromium_git') + '/chromium/third_party/errorprone.git' + '@' + '0eea
83b66343133b9c76b7d3288c30321818ebcf', | 436 Var('chromium_git') + '/chromium/third_party/errorprone.git' + '@' + '0eea
83b66343133b9c76b7d3288c30321818ebcf', |
| 437 | 437 |
| 438 'src/third_party/findbugs': | 438 'src/third_party/findbugs': |
| 439 Var('chromium_git') + '/chromium/deps/findbugs.git' + '@' + '57f05238d3ac77
ea0a194813d3065dd780c6e566', | 439 Var('chromium_git') + '/chromium/deps/findbugs.git' + '@' + '57f05238d3ac77
ea0a194813d3065dd780c6e566', |
| 440 | 440 |
| 441 'src/third_party/freetype-android/src': | 441 'src/third_party/freetype-android/src': |
| 442 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + '30
fe5e762e062612fdf4b56b50d813525a5aa311', | 442 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + '66
cf29b1bc869b44863b0de2115bd017dfcce849', |
| 443 | 443 |
| 444 'src/third_party/elfutils/src': | 444 'src/third_party/elfutils/src': |
| 445 Var('chromium_git') + '/external/elfutils.git' + '@' + '249673729a7e5dbd5de
4f3760bdcaa3d23d154d7', | 445 Var('chromium_git') + '/external/elfutils.git' + '@' + '249673729a7e5dbd5de
4f3760bdcaa3d23d154d7', |
| 446 | 446 |
| 447 'src/third_party/httpcomponents-client': | 447 'src/third_party/httpcomponents-client': |
| 448 Var('chromium_git') + '/chromium/deps/httpcomponents-client.git' + '@' + '2
85c4dafc5de0e853fa845dce5773e223219601c', | 448 Var('chromium_git') + '/chromium/deps/httpcomponents-client.git' + '@' + '2
85c4dafc5de0e853fa845dce5773e223219601c', |
| 449 | 449 |
| 450 'src/third_party/httpcomponents-core': | 450 'src/third_party/httpcomponents-core': |
| 451 Var('chromium_git') + '/chromium/deps/httpcomponents-core.git' + '@' + '9f7
180a96f8fa5cab23f793c14b413356d419e62', | 451 Var('chromium_git') + '/chromium/deps/httpcomponents-core.git' + '@' + '9f7
180a96f8fa5cab23f793c14b413356d419e62', |
| 452 | 452 |
| (...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 806 }, | 806 }, |
| 807 { | 807 { |
| 808 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 808 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 809 'name': 'gyp', | 809 'name': 'gyp', |
| 810 'pattern': '.', | 810 'pattern': '.', |
| 811 'action': ['python', 'src/build/gyp_chromium'], | 811 'action': ['python', 'src/build/gyp_chromium'], |
| 812 }, | 812 }, |
| 813 ] | 813 ] |
| 814 | 814 |
| 815 | 815 |
| OLD | NEW |