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

Unified Diff: tools/swig/swig.py

Issue 7172016: Add linux3 build support to chromium (base repository) (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 9 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 | « tools/python/google/platform_utils.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/swig/swig.py
===================================================================
--- tools/swig/swig.py (revision 89310)
+++ tools/swig/swig.py (working copy)
@@ -25,6 +25,7 @@
dir_map = {
'darwin': 'mac',
'linux2': 'linux',
+ 'linux3': 'linux',
'win32': 'win',
}
# Swig documentation lies that platform macros are provided to swig
@@ -32,6 +33,7 @@
platform_flags = {
'darwin': '-DSWIGMAC',
'linux2': '-DSWIGLINUX',
+ 'linux3': '-DSWIGLINUX',
'win32': '-DSWIGWIN',
}
swig_bin = os.path.join(swig_dir, dir_map[sys.platform], 'swig')
« no previous file with comments | « tools/python/google/platform_utils.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698