Skip to content

Commit 2507c6b

Browse files
Change deprecated comments that still talk about SCons.
[email protected] Review URL: https://codereview.chromium.org/14404012 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@14387 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
1 parent 314548a commit 2507c6b

File tree

5 files changed

+6
-114
lines changed

5 files changed

+6
-114
lines changed

src/version.cc

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
#include "version.h"
3131

3232
// 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.
3535
#define MAJOR_VERSION 3
3636
#define MINOR_VERSION 18
3737
#define BUILD_NUMBER 3
@@ -40,9 +40,9 @@
4040
// (Boolean macro values are not supported by all preprocessors.)
4141
#define IS_CANDIDATE_VERSION 1
4242

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
4444
// 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.
4646
#define SONAME ""
4747

4848
#if IS_CANDIDATE_VERSION

tools/check-static-initializers.sh

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828

2929
# Checks that the number of compilation units having at least one static
3030
# initializer in d8 matches the one defined below.
31-
# Note that the project must be built with SCons before running this script.
3231

3332
# Allow:
3433
# - _GLOBAL__I__ZN2v810LineEditor6first_E

tools/js2c.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -214,9 +214,9 @@ def ReadMacros(lines):
214214
HEADER_TEMPLATE = """\
215215
// Copyright 2011 Google Inc. All Rights Reserved.
216216
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
218218
// 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.
220220
221221
#include "v8.h"
222222
#include "natives.h"

tools/test-server.py

-9
Original file line numberDiff line numberDiff line change
@@ -124,15 +124,6 @@ def Update():
124124
scriptname = os.path.abspath(sys.argv[0])
125125
_Cmd("svn cat %s > %s" % (path, scriptname))
126126

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-
136127
# Check out or update V8.
137128
v8_dir = os.path.join(ROOT, "v8")
138129
if os.path.exists(v8_dir):

tools/utils.py

-98
This file was deleted.

0 commit comments

Comments
 (0)