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

Unified Diff: build/experimental/install-build-deps.py

Issue 1580663002: Add support for ubuntu 15.10(wily) to install-build-deps.[sh|py] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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/install-build-deps.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/experimental/install-build-deps.py
diff --git a/build/experimental/install-build-deps.py b/build/experimental/install-build-deps.py
index 7cc3760df7541a4fa41b7cd0a8ab2f4b316c5c53..25da84e67ecfc4fcaf3100f9d9bad504231b03f5 100755
--- a/build/experimental/install-build-deps.py
+++ b/build/experimental/install-build-deps.py
@@ -17,6 +17,7 @@ SUPPORTED_UBUNTU_VERSIONS = (
{'number': '14.04', 'codename': 'trusty'},
{'number': '14.10', 'codename': 'utopic'},
{'number': '15.04', 'codename': 'vivid'},
+ {'number': '15.10', 'codename': 'wily'},
)
@@ -30,7 +31,6 @@ _packages_chromeos_dev = (
# Packages needed for development.
_packages_dev = (
- 'apache2.2-bin',
'bison',
'cdbs',
'curl',
@@ -103,7 +103,6 @@ _packages_dev = (
'ttf-kochi-gothic',
'ttf-kochi-mincho',
'wdiff',
- 'xfonts-mathml',
'zip',
)
@@ -360,6 +359,16 @@ def compute_dynamic_package_lists():
else:
_packages_dev += ('libbrlapi0.5',)
+ if package_exists('apache2-bin'):
+ _packages_dev += ('apache2-bin',)
+ else:
+ _packages_dev += ('apache2.2-bin',)
+
+ if package_exists('fonts-stix'):
+ _packages_dev += ('fonts-stix',)
+ else:
+ _packages_dev += ('xfonts-mathml',)
+
# Some packages are only needed if the distribution actually supports
# installing them.
if package_exists('appmenu-gtk'):
« no previous file with comments | « no previous file | build/install-build-deps.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698