| 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 581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 592 'name': 'sdkextras', | 592 'name': 'sdkextras', |
| 593 'pattern': '.', | 593 'pattern': '.', |
| 594 # When adding a new sdk extras package to download, add the package | 594 # When adding a new sdk extras package to download, add the package |
| 595 # directory and zip file to .gitignore in third_party/android_tools. | 595 # directory and zip file to .gitignore in third_party/android_tools. |
| 596 'action': ['python', | 596 'action': ['python', |
| 597 'src/build/android/play_services/update.py', | 597 'src/build/android/play_services/update.py', |
| 598 'download' | 598 'download' |
| 599 ], | 599 ], |
| 600 }, | 600 }, |
| 601 { | 601 { |
| 602 'name': 'fuchsia_sdk', |
| 603 'pattern': '.', |
| 604 'action': [ |
| 605 'python', |
| 606 'src/build/fuchsia/update_sdk.py', |
| 607 '3886a632c4a472fa7ef9eab35b45b63359e387fa', |
| 608 ], |
| 609 }, |
| 610 { |
| 602 'name': 'intellij', | 611 'name': 'intellij', |
| 603 'pattern': '.', | 612 'pattern': '.', |
| 604 'action': ['python', | 613 'action': ['python', |
| 605 'src/build/android/update_deps/update_third_party_deps.py', | 614 'src/build/android/update_deps/update_third_party_deps.py', |
| 606 'download', | 615 'download', |
| 607 '-b', 'chromium-intellij', | 616 '-b', 'chromium-intellij', |
| 608 '-l', 'third_party/intellij' | 617 '-l', 'third_party/intellij' |
| 609 ], | 618 ], |
| 610 }, | 619 }, |
| 611 { | 620 { |
| (...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1163 recursedeps = [ | 1172 recursedeps = [ |
| 1164 # buildtools provides clang_format, libc++, and libc++abi | 1173 # buildtools provides clang_format, libc++, and libc++abi |
| 1165 'src/buildtools', | 1174 'src/buildtools', |
| 1166 # android_tools manages the NDK. | 1175 # android_tools manages the NDK. |
| 1167 'src/third_party/android_tools', | 1176 'src/third_party/android_tools', |
| 1168 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1177 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1169 ("src/third_party/angle", "DEPS.chromium"), | 1178 ("src/third_party/angle", "DEPS.chromium"), |
| 1170 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. | 1179 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. |
| 1171 ("src/third_party/swiftshader", "DEPS"), | 1180 ("src/third_party/swiftshader", "DEPS"), |
| 1172 ] | 1181 ] |
| OLD | NEW |