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

Side by Side Diff: BUILD.gn

Issue 441943002: Remove @@create and don't expose unimplemented symbols (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # TODO(jochen): These will need to be user-settable to support standalone V8 5 # TODO(jochen): These will need to be user-settable to support standalone V8
6 # builds. 6 # builds.
7 v8_compress_startup_data = "off" 7 v8_compress_startup_data = "off"
8 v8_deprecation_warnings = false 8 v8_deprecation_warnings = false
9 v8_enable_disassembler = false 9 v8_enable_disassembler = false
10 v8_enable_gdbjit = false 10 v8_enable_gdbjit = false
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 185
186 # The script depends on this other script, this rule causes a rebuild if it 186 # The script depends on this other script, this rule causes a rebuild if it
187 # changes. 187 # changes.
188 source_prereqs = [ "tools/jsmin.py" ] 188 source_prereqs = [ "tools/jsmin.py" ]
189 189
190 sources = [ 190 sources = [
191 "src/runtime.js", 191 "src/runtime.js",
192 "src/v8natives.js", 192 "src/v8natives.js",
193 "src/array.js", 193 "src/array.js",
194 "src/string.js", 194 "src/string.js",
195 "src/symbol.js",
195 "src/uri.js", 196 "src/uri.js",
196 "src/math.js", 197 "src/math.js",
197 "src/messages.js", 198 "src/messages.js",
198 "src/apinatives.js", 199 "src/apinatives.js",
199 "src/debug-debugger.js", 200 "src/debug-debugger.js",
200 "src/mirror-debugger.js", 201 "src/mirror-debugger.js",
201 "src/liveedit-debugger.js", 202 "src/liveedit-debugger.js",
202 "src/date.js", 203 "src/date.js",
203 "src/json.js", 204 "src/json.js",
204 "src/regexp.js", 205 "src/regexp.js",
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 visibility = ":*" # Only targets in this file can depend on this. 238 visibility = ":*" # Only targets in this file can depend on this.
238 239
239 script = "tools/js2c.py" 240 script = "tools/js2c.py"
240 241
241 # The script depends on this other script, this rule causes a rebuild if it 242 # The script depends on this other script, this rule causes a rebuild if it
242 # changes. 243 # changes.
243 source_prereqs = [ "tools/jsmin.py" ] 244 source_prereqs = [ "tools/jsmin.py" ]
244 245
245 sources = [ 246 sources = [
246 "src/macros.py", 247 "src/macros.py",
247 "src/symbol.js",
248 "src/proxy.js", 248 "src/proxy.js",
249 "src/collection.js", 249 "src/collection.js",
250 "src/collection-iterator.js", 250 "src/collection-iterator.js",
251 "src/generator.js", 251 "src/generator.js",
252 "src/array-iterator.js", 252 "src/array-iterator.js",
253 "src/harmony-string.js", 253 "src/harmony-string.js",
254 "src/harmony-array.js", 254 "src/harmony-array.js",
255 ] 255 ]
256 256
257 outputs = [ 257 outputs = [
(...skipping 1027 matching lines...) Expand 10 before | Expand all | Expand 10 after
1285 deps = [ 1285 deps = [
1286 ":v8_base", 1286 ":v8_base",
1287 ":v8_nosnapshot", 1287 ":v8_nosnapshot",
1288 ] 1288 ]
1289 } 1289 }
1290 1290
1291 direct_dependent_configs = [ ":external_config" ] 1291 direct_dependent_configs = [ ":external_config" ]
1292 } 1292 }
1293 1293
1294 } 1294 }
OLDNEW
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698