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