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 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
588 'name': 'sdkextras', | 588 'name': 'sdkextras', |
589 'pattern': '.', | 589 'pattern': '.', |
590 # When adding a new sdk extras package to download, add the package | 590 # When adding a new sdk extras package to download, add the package |
591 # directory and zip file to .gitignore in third_party/android_tools. | 591 # directory and zip file to .gitignore in third_party/android_tools. |
592 'action': ['python', | 592 'action': ['python', |
593 'src/build/android/play_services/update.py', | 593 'src/build/android/play_services/update.py', |
594 'download' | 594 'download' |
595 ], | 595 ], |
596 }, | 596 }, |
597 { | 597 { |
598 'name': 'accessibility-test-framework', | |
599 'pattern': '.', | |
600 'action': ['python', | |
601 'src/build/android/update_third_party_deps.py', | |
the real yoland
2016/06/09 18:55:06
it's actually in src/build/android/update_third_pa
| |
602 'download', | |
603 '-b', 'chromium-accessibility-test-framework', | |
604 '-l', 'src/third_party/accessibility-test-framework' | |
605 ], | |
606 }, | |
607 { | |
598 # Downloads the current stable linux sysroot to build/linux/ if needed. | 608 # Downloads the current stable linux sysroot to build/linux/ if needed. |
599 # This sysroot updates at about the same rate that the chrome build deps | 609 # This sysroot updates at about the same rate that the chrome build deps |
600 # change. This script is a no-op except for linux users who are doing | 610 # change. This script is a no-op except for linux users who are doing |
601 # official chrome builds or cross compiling. | 611 # official chrome builds or cross compiling. |
602 'name': 'sysroot', | 612 'name': 'sysroot', |
603 'pattern': '.', | 613 'pattern': '.', |
604 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', | 614 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
605 '--running-as-hook'], | 615 '--running-as-hook'], |
606 }, | 616 }, |
607 { | 617 { |
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
852 'src/build/android/download_doclava.py', | 862 'src/build/android/download_doclava.py', |
853 ], | 863 ], |
854 }, | 864 }, |
855 { | 865 { |
856 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 866 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
857 'name': 'gyp', | 867 'name': 'gyp', |
858 'pattern': '.', | 868 'pattern': '.', |
859 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 869 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
860 }, | 870 }, |
861 ] | 871 ] |
OLD | NEW |