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