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

Unified Diff: DEPS

Issue 16507016: Linux: Call the install-debian-sysroot scripts directly instead of via a wrapper, now that the scri… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | build/linux/install-debian.wheezy.sysroot.wrapper.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: DEPS
===================================================================
--- DEPS (revision 204865)
+++ DEPS (working copy)
@@ -637,15 +637,27 @@
"--linux-only"],
},
{
- # Downloads the Debian Wheezy sysroot to chrome/installer/linux/internal
- # if needed. This sysroot updates at about the same rate that the chrome
- # build deps change. This script is a no-op except for linux users who have
- # src-internal access and are doing official chrome builds.
+ # Downloads the Debian Wheezy sysroot to chrome/installer/linux if needed.
+ # This sysroot updates at about the same rate that the chrome build deps
+ # change. This script is a no-op except for linux users who are doing
+ # official chrome builds.
"pattern": ".",
- "action": ["python",
- "src/build/linux/install-debian.wheezy.sysroot.wrapper.py"],
+ "action": [
+ "python",
+ "src/chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroot.py",
+ "--linux-only",
+ "--arch=amd64"],
},
{
+ # Same as above, but for 32-bit Linux.
+ "pattern": ".",
+ "action": [
+ "python",
+ "src/chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroot.py",
+ "--linux-only",
+ "--arch=i386"],
+ },
+ {
# Pull clang on mac. If nothing changed, or on non-mac platforms, this takes
# zero seconds to run. If something changed, it downloads a prebuilt clang,
# which takes ~20s, but clang speeds up builds by more than 20s.
« no previous file with comments | « no previous file | build/linux/install-debian.wheezy.sysroot.wrapper.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698