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

Unified Diff: SConstruct

Issue 27267: Experimental: periodic merge from the bleeding edge branch to the code... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/toiger/
Patch Set: '' Created 11 years, 10 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 | « LICENSE ('k') | src/SConscript » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: SConstruct
===================================================================
--- SConstruct (revision 1380)
+++ SConstruct (working copy)
@@ -156,36 +156,17 @@
'LIBS': ['pthread'],
},
'os:win32': {
- 'LIBS': ['winmm'],
+ 'LIBS': ['winmm', 'ws2_32'],
},
},
'msvc': {
'all': {
- 'LIBS': ['winmm']
+ 'LIBS': ['winmm', 'ws2_32']
}
}
}
-JSCRE_EXTRA_FLAGS = {
- 'gcc': {
- 'all': {
- 'CPPDEFINES': ['SUPPORT_UTF8', 'NO_RECURSE', 'SUPPORT_UCP'],
- 'WARNINGFLAGS': ['-w']
- },
- },
- 'msvc': {
- 'all': {
- 'CPPDEFINES': ['SUPPORT_UTF8', 'NO_RECURSE', 'SUPPORT_UCP'],
- 'WARNINGFLAGS': ['/W3', '/WX', '/wd4355', '/wd4800']
- },
- 'library:shared': {
- 'CPPDEFINES': ['BUILDING_V8_SHARED']
- }
- }
-}
-
-
DTOA_EXTRA_FLAGS = {
'gcc': {
'all': {
@@ -219,7 +200,7 @@
'LIBS': ['execinfo', 'pthread']
},
'os:win32': {
- 'LIBS': ['winmm']
+ 'LIBS': ['winmm', 'ws2_32']
},
'wordsize:64': {
'CCFLAGS': ['-m32'],
@@ -229,7 +210,7 @@
'msvc': {
'all': {
'CPPDEFINES': ['_HAS_EXCEPTIONS=0'],
- 'LIBS': ['winmm']
+ 'LIBS': ['winmm', 'ws2_32']
},
'library:shared': {
'CPPDEFINES': ['USING_V8_SHARED']
@@ -257,7 +238,7 @@
'LIBS': ['execinfo', 'pthread']
},
'os:win32': {
- 'LIBS': ['winmm']
+ 'LIBS': ['winmm', 'ws2_32']
},
'wordsize:64': {
'CCFLAGS': ['-m32'],
@@ -274,7 +255,7 @@
'all': {
'CCFLAGS': ['/nologo'],
'LINKFLAGS': ['/nologo'],
- 'LIBS': ['winmm']
+ 'LIBS': ['winmm', 'ws2_32']
},
'library:shared': {
'CPPDEFINES': ['USING_V8_SHARED']
@@ -321,12 +302,12 @@
'LIBS': ['pthread'],
},
'os:win32': {
- 'LIBS': ['winmm'],
+ 'LIBS': ['winmm', 'ws2_32'],
},
},
'msvc': {
'all': {
- 'LIBS': ['winmm']
+ 'LIBS': ['winmm', 'ws2_32']
}
}
}
@@ -564,7 +545,6 @@
library_flags = context.AddRelevantFlags(os.environ, LIBRARY_FLAGS)
v8_flags = context.AddRelevantFlags(library_flags, V8_EXTRA_FLAGS)
mksnapshot_flags = context.AddRelevantFlags(library_flags, MKSNAPSHOT_EXTRA_FLAGS)
- jscre_flags = context.AddRelevantFlags(library_flags, JSCRE_EXTRA_FLAGS)
dtoa_flags = context.AddRelevantFlags(library_flags, DTOA_EXTRA_FLAGS)
cctest_flags = context.AddRelevantFlags(v8_flags, CCTEST_EXTRA_FLAGS)
sample_flags = context.AddRelevantFlags(os.environ, SAMPLE_FLAGS)
@@ -573,7 +553,6 @@
context.flags = {
'v8': v8_flags,
'mksnapshot': mksnapshot_flags,
- 'jscre': jscre_flags,
'dtoa': dtoa_flags,
'cctest': cctest_flags,
'sample': sample_flags,
« no previous file with comments | « LICENSE ('k') | src/SConscript » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698