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 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
481 'src/third_party/lss': | 481 'src/third_party/lss': |
482 Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi
on'), | 482 Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi
on'), |
483 | 483 |
484 'src/third_party/requests/src': | 484 'src/third_party/requests/src': |
485 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '
@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', | 485 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '
@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', |
486 | 486 |
487 'src/third_party/custom_tabs_client/src': | 487 'src/third_party/custom_tabs_client/src': |
488 Var('chromium_git') + '/external/github.com/GoogleChrome/custom-tabs-clien
t.git' + '@' + 'c51efbddc4f976c88d15c730a79feba65ca857af', | 488 Var('chromium_git') + '/external/github.com/GoogleChrome/custom-tabs-clien
t.git' + '@' + 'c51efbddc4f976c88d15c730a79feba65ca857af', |
489 | 489 |
490 'src/third_party/gvr-android-sdk/src': | 490 'src/third_party/gvr-android-sdk/src': |
491 Var('chromium_git') + '/external/github.com/googlevr/gvr-android-sdk.git'
+ '@' + 'cff15311c7c1abbe77b3c714135dccc2009ee473', | 491 Var('chromium_git') + '/external/github.com/googlevr/gvr-android-sdk.git'
+ '@' + '25e7e14413229d4644a66be77e8f8ddeb3f91fe7', |
492 }, | 492 }, |
493 } | 493 } |
494 | 494 |
495 include_rules = [ | 495 include_rules = [ |
496 # Everybody can use some things. | 496 # Everybody can use some things. |
497 # NOTE: THIS HAS TO STAY IN SYNC WITH third_party/DEPS which disallows these. | 497 # NOTE: THIS HAS TO STAY IN SYNC WITH third_party/DEPS which disallows these. |
498 '+base', | 498 '+base', |
499 '+build', | 499 '+build', |
500 '+ipc', | 500 '+ipc', |
501 | 501 |
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1019 ] | 1019 ] |
1020 | 1020 |
1021 recursedeps = [ | 1021 recursedeps = [ |
1022 # buildtools provides clang_format, libc++, and libc++abi | 1022 # buildtools provides clang_format, libc++, and libc++abi |
1023 'src/buildtools', | 1023 'src/buildtools', |
1024 # android_tools manages the NDK. | 1024 # android_tools manages the NDK. |
1025 'src/third_party/android_tools', | 1025 'src/third_party/android_tools', |
1026 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1026 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
1027 ("src/third_party/angle", "DEPS.chromium"), | 1027 ("src/third_party/angle", "DEPS.chromium"), |
1028 ] | 1028 ] |
OLD | NEW |