| 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 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 628 'name': 'android_support_test_runner', | 628 'name': 'android_support_test_runner', |
| 629 'pattern': '.', | 629 'pattern': '.', |
| 630 'action': ['python', | 630 'action': ['python', |
| 631 'src/build/android/update_deps/update_third_party_deps.py', | 631 'src/build/android/update_deps/update_third_party_deps.py', |
| 632 'download', | 632 'download', |
| 633 '-b', 'chromium-android-support-test-runner', | 633 '-b', 'chromium-android-support-test-runner', |
| 634 '-l', 'third_party/android_support_test_runner' | 634 '-l', 'third_party/android_support_test_runner' |
| 635 ], | 635 ], |
| 636 }, | 636 }, |
| 637 { | 637 { |
| 638 'name': 'byte_buddy', |
| 639 'pattern': '.', |
| 640 'action': ['python', |
| 641 'src/build/android/update_deps/update_third_party_deps.py', |
| 642 'download', |
| 643 '-b', 'chromium-byte-buddy', |
| 644 '-l', 'third_party/byte_buddy' |
| 645 ], |
| 646 }, |
| 647 { |
| 638 'name': 'espresso', | 648 'name': 'espresso', |
| 639 'pattern': '.', | 649 'pattern': '.', |
| 640 'action': ['python', | 650 'action': ['python', |
| 641 'src/build/android/update_deps/update_third_party_deps.py', | 651 'src/build/android/update_deps/update_third_party_deps.py', |
| 642 'download', | 652 'download', |
| 643 '-b', 'chromium-espresso', | 653 '-b', 'chromium-espresso', |
| 644 '-l', 'third_party/espresso' | 654 '-l', 'third_party/espresso' |
| 645 ], | 655 ], |
| 646 }, | 656 }, |
| 647 { | 657 { |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 978 'name': 'doclava', | 988 'name': 'doclava', |
| 979 'pattern': '.', | 989 'pattern': '.', |
| 980 'action': ['python', | 990 'action': ['python', |
| 981 'src/build/android/download_doclava.py', | 991 'src/build/android/download_doclava.py', |
| 982 ], | 992 ], |
| 983 }, | 993 }, |
| 984 ] | 994 ] |
| 985 | 995 |
| 986 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 996 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 987 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 997 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
| OLD | NEW |