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 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
419 | 419 |
420 # Wayland protocols that add functionality not available in the core protoco
l. | 420 # Wayland protocols that add functionality not available in the core protoco
l. |
421 'src/third_party/wayland-protocols/src': | 421 'src/third_party/wayland-protocols/src': |
422 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/waylan
d-protocols.git' + '@' + '3543bb755c8858b0a70dfd20fd1beb74d865751d', | 422 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/waylan
d-protocols.git' + '@' + '3543bb755c8858b0a70dfd20fd1beb74d865751d', |
423 }, | 423 }, |
424 'android': { | 424 'android': { |
425 'src/third_party/android_protobuf/src': | 425 'src/third_party/android_protobuf/src': |
426 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '999188d0dc7
2e97f7fe08bb756958a2cf090f4e7', | 426 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '999188d0dc7
2e97f7fe08bb756958a2cf090f4e7', |
427 | 427 |
428 'src/third_party/android_tools': | 428 'src/third_party/android_tools': |
429 Var('chromium_git') + '/android_tools.git' + '@' + '54492f99c84cab0826a8e65
6efeb33a1b1bf5a04', | 429 Var('chromium_git') + '/android_tools.git' + '@' + 'f4c36ad89b2696b37d9cd7c
a7d984b691888b188', |
430 | 430 |
431 'src/third_party/apache-mime4j': | 431 'src/third_party/apache-mime4j': |
432 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', | 432 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', |
433 | 433 |
434 'src/third_party/appurify-python/src': | 434 'src/third_party/appurify-python/src': |
435 Var('chromium_git') + '/external/github.com/appurify/appurify-python.git' +
'@' + 'ee7abd5c5ae3106f72b2a0b9d2cb55094688e867', | 435 Var('chromium_git') + '/external/github.com/appurify/appurify-python.git' +
'@' + 'ee7abd5c5ae3106f72b2a0b9d2cb55094688e867', |
436 | 436 |
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 |
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
809 'src/tools', | 809 'src/tools', |
810 ], | 810 ], |
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 | |
820 | |
OLD | NEW |