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

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

Issue 2596653002: Remove support for Ubuntu/Precise sysroot (Closed)
Patch Set: . Created 3 years, 8 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-android.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 1687b94b10336941d0a8db0cb8774f11aecd2806..04a26ab9d8f7692fb5e5c16d8a4831946294545c 100755
--- a/build/experimental/install-build-deps.py
+++ b/build/experimental/install-build-deps.py
@@ -13,7 +13,6 @@ import sys
SUPPORTED_UBUNTU_VERSIONS = (
- {'number': '12.04', 'codename': 'precise'},
{'number': '14.04', 'codename': 'trusty'},
{'number': '14.10', 'codename': 'utopic'},
{'number': '15.04', 'codename': 'vivid'},
@@ -300,9 +299,7 @@ def compute_dynamic_package_lists():
lsb_codename = lsb_release_short_codename()
# Find the proper version of libstdc++6-4.x-dbg.
- if lsb_codename == 'precise':
- _packages_dbg += ('libstdc++6-4.6-dbg',)
- elif lsb_codename == 'trusty':
+ if lsb_codename == 'trusty':
_packages_dbg += ('libstdc++6-4.8-dbg',)
else:
_packages_dbg += ('libstdc++6-4.9-dbg',)
« no previous file with comments | « no previous file | build/install-build-deps-android.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698