Upgrade V8 to 3.8.2.1

This commit is contained in:
Ryan Dahl 2011-12-23 15:57:10 -08:00
parent 624f70e88f
commit e4731f8168
3 changed files with 4 additions and 5 deletions

View File

@ -84,10 +84,6 @@
# For a shared library build, results in "libv8-<(soname_version).so". # For a shared library build, results in "libv8-<(soname_version).so".
'soname_version%': '', 'soname_version%': '',
# We want max optimization for the V8 build (if this is not set, chrome
# defaults to low optimization settings)
'optimize': 'max',
}, },
'target_defaults': { 'target_defaults': {
'conditions': [ 'conditions': [

View File

@ -35,7 +35,7 @@
#define MAJOR_VERSION 3 #define MAJOR_VERSION 3
#define MINOR_VERSION 8 #define MINOR_VERSION 8
#define BUILD_NUMBER 2 #define BUILD_NUMBER 2
#define PATCH_LEVEL 0 #define PATCH_LEVEL 1
// Use 1 for candidates and 0 otherwise. // Use 1 for candidates and 0 otherwise.
// (Boolean macro values are not supported by all preprocessors.) // (Boolean macro values are not supported by all preprocessors.)
#define IS_CANDIDATE_VERSION 0 #define IS_CANDIDATE_VERSION 0

View File

@ -221,6 +221,9 @@
{ {
'target_name': 'v8_base', 'target_name': 'v8_base',
'type': '<(library)', 'type': '<(library)',
'variables': {
'optimize': 'max',
},
'include_dirs+': [ 'include_dirs+': [
'../../src', '../../src',
], ],