Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: DEPS

Issue 2041583002: Add guava to chromium third party (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/guava/.gitignore » ('j') | third_party/guava/.gitignore » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 ]
OLDNEW
« no previous file with comments | « no previous file | third_party/guava/.gitignore » ('j') | third_party/guava/.gitignore » ('J')

Powered by Google App Engine
This is Rietveld 408576698