File tree 5 files changed +6
-114
lines changed
5 files changed +6
-114
lines changed Original file line number Diff line number Diff line change 30
30
#include " version.h"
31
31
32
32
// These macros define the version number for the current version.
33
- // NOTE these macros are used by the SCons build script so their names
34
- // cannot be changed without changing the SCons build script .
33
+ // NOTE these macros are used by some of the tool scripts and the build
34
+ // system so their names cannot be changed without changing the scripts .
35
35
#define MAJOR_VERSION 3
36
36
#define MINOR_VERSION 18
37
37
#define BUILD_NUMBER 3
40
40
// (Boolean macro values are not supported by all preprocessors.)
41
41
#define IS_CANDIDATE_VERSION 1
42
42
43
- // Define SONAME to have the SCons build the put a specific SONAME into the
43
+ // Define SONAME to have the build system put a specific SONAME into the
44
44
// shared library instead the generic SONAME generated from the V8 version
45
- // number. This define is mainly used by the SCons build script.
45
+ // number. This define is mainly used by the build system script.
46
46
#define SONAME " "
47
47
48
48
#if IS_CANDIDATE_VERSION
Original file line number Diff line number Diff line change 28
28
29
29
# Checks that the number of compilation units having at least one static
30
30
# initializer in d8 matches the one defined below.
31
- # Note that the project must be built with SCons before running this script.
32
31
33
32
# Allow:
34
33
# - _GLOBAL__I__ZN2v810LineEditor6first_E
Original file line number Diff line number Diff line change @@ -214,9 +214,9 @@ def ReadMacros(lines):
214
214
HEADER_TEMPLATE = """\
215
215
// Copyright 2011 Google Inc. All Rights Reserved.
216
216
217
- // This file was generated from .js source files by SCons . If you
217
+ // This file was generated from .js source files by GYP . If you
218
218
// want to make changes to this file you should either change the
219
- // javascript source files or the SConstruct script.
219
+ // javascript source files or the GYP script.
220
220
221
221
#include "v8.h"
222
222
#include "natives.h"
Original file line number Diff line number Diff line change @@ -124,15 +124,6 @@ def Update():
124
124
scriptname = os .path .abspath (sys .argv [0 ])
125
125
_Cmd ("svn cat %s > %s" % (path , scriptname ))
126
126
127
- # The testcfg.py files currently need to be able to import the old test.py
128
- # script, so we temporarily need to make that available.
129
- # TODO(jkummerow): Remove this when removing test.py.
130
- for filename in ("test.py" , "utils.py" ):
131
- url = ("http://v8.googlecode.com/svn/branches/bleeding_edge/"
132
- "tools/%s" % filename )
133
- filepath = os .path .join (os .path .dirname (scriptname ), filename )
134
- _Cmd ("svn cat %s > %s" % (url , filepath ))
135
-
136
127
# Check out or update V8.
137
128
v8_dir = os .path .join (ROOT , "v8" )
138
129
if os .path .exists (v8_dir ):
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments