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

Unified Diff: build/linux/sysroot_scripts/install-sysroot.py

Issue 2343643004: Build with jessie sysroots (Closed)
Patch Set: Fix compile error related to GNOME keyring Created 4 years, 3 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 | « build/config/sysroot.gni ('k') | components/os_crypt/key_storage_keyring.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/linux/sysroot_scripts/install-sysroot.py
diff --git a/build/linux/sysroot_scripts/install-sysroot.py b/build/linux/sysroot_scripts/install-sysroot.py
index 3e842a47cdd9312a1a7af030aa417957684e465f..6968e6654e23c84a0255a418e30f6f64064d7767 100755
--- a/build/linux/sysroot_scripts/install-sysroot.py
+++ b/build/linux/sysroot_scripts/install-sysroot.py
@@ -37,29 +37,29 @@ URL_PREFIX = 'https://commondatastorage.googleapis.com'
URL_PATH = 'chrome-linux-sysroot/toolchain'
SYSROOTS = {
- ('Wheezy', 'amd64'): {
+ ('Jessie', 'amd64'): {
'Revision' : '24f935a3d8cdfcdfbabd23928a42304b1ffc52ba',
- 'Tarball' : 'debian_wheezy_amd64_sysroot.tgz',
- 'Sha1Sum' : 'a7f3df28b02799fbd7675c2ab24f1924c104c0ee',
- 'SysrootDir' : 'debian_wheezy_amd64-sysroot'
+ 'Tarball' : 'debian_jessie_amd64_sysroot.tgz',
+ 'Sha1Sum' : '0fefbf3abc4428451a2eb44cc9916f27bb0e1a13',
+ 'SysrootDir' : 'debian_jessie_amd64-sysroot'
},
- ('Wheezy', 'arm'): {
+ ('Jessie', 'arm'): {
'Revision' : '24f935a3d8cdfcdfbabd23928a42304b1ffc52ba',
- 'Tarball' : 'debian_wheezy_arm_sysroot.tgz',
- 'Sha1Sum' : '2df01b8173a363977daf04e176b8c7dba5b0b933',
- 'SysrootDir' : 'debian_wheezy_arm-sysroot'
+ 'Tarball' : 'debian_jessie_arm_sysroot.tgz',
+ 'Sha1Sum' : 'a33b7430b7c81a96ee399793a464f95d1d048a52',
+ 'SysrootDir' : 'debian_jessie_arm-sysroot'
},
- ('Wheezy', 'i386'): {
+ ('Jessie', 'i386'): {
'Revision' : '24f935a3d8cdfcdfbabd23928a42304b1ffc52ba',
- 'Tarball' : 'debian_wheezy_i386_sysroot.tgz',
- 'Sha1Sum' : 'e2c7131fa5f711de28c37fd9442e77d32abfb3ff',
- 'SysrootDir' : 'debian_wheezy_i386-sysroot'
+ 'Tarball' : 'debian_jessie_i386_sysroot.tgz',
+ 'Sha1Sum' : '35f551e58c20770c6106f4e3668760f51b733374',
+ 'SysrootDir' : 'debian_jessie_i386-sysroot'
},
- ('Wheezy', 'mips'): {
+ ('Jessie', 'mips'): {
'Revision' : '24f935a3d8cdfcdfbabd23928a42304b1ffc52ba',
- 'Tarball' : 'debian_wheezy_mips_sysroot.tgz',
- 'Sha1Sum' : '22fe7b45b144691aeb515083025f0fceb131d724',
- 'SysrootDir' : 'debian_wheezy_mips-sysroot'
+ 'Tarball' : 'debian_jessie_mips_sysroot.tgz',
+ 'Sha1Sum' : 'aac4a31ef858c663c69d69700b61d2c4969c4e25',
+ 'SysrootDir' : 'debian_jessie_mips-sysroot'
},
('Jessie', 'arm64'): {
'Revision' : '24f935a3d8cdfcdfbabd23928a42304b1ffc52ba',
@@ -193,15 +193,15 @@ def main(args):
def InstallDefaultSysrootForArch(target_arch):
if target_arch == 'amd64':
- InstallSysroot('Wheezy', 'amd64')
+ InstallSysroot('Jessie', 'amd64')
elif target_arch == 'arm':
- InstallSysroot('Wheezy', 'arm')
+ InstallSysroot('Jessie', 'arm')
elif target_arch == 'arm64':
InstallSysroot('Jessie', 'arm64')
elif target_arch == 'i386':
- InstallSysroot('Wheezy', 'i386')
+ InstallSysroot('Jessie', 'i386')
elif target_arch == 'mips':
- InstallSysroot('Wheezy', 'mips')
+ InstallSysroot('Jessie', 'mips')
else:
raise Error('Unknown architecture: %s' % target_arch)
« no previous file with comments | « build/config/sysroot.gni ('k') | components/os_crypt/key_storage_keyring.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698