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

Side by Side Diff: BUILD.gn

Issue 766663003: harmony-classes: Implement 'super(...)' call syntactic restriction. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Patch for landing Created 6 years 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
« no previous file with comments | « no previous file | src/ast.h » ('j') | src/ast-this-access-visitor.h » ('J')
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_deprecation_warnings = false 7 v8_deprecation_warnings = false
8 v8_enable_disassembler = false 8 v8_enable_disassembler = false
9 v8_enable_gdbjit = false 9 v8_enable_gdbjit = false
10 v8_enable_handle_zapping = true 10 v8_enable_handle_zapping = true
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 "src/api.cc", 422 "src/api.cc",
423 "src/api.h", 423 "src/api.h",
424 "src/arguments.cc", 424 "src/arguments.cc",
425 "src/arguments.h", 425 "src/arguments.h",
426 "src/assembler.cc", 426 "src/assembler.cc",
427 "src/assembler.h", 427 "src/assembler.h",
428 "src/assert-scope.h", 428 "src/assert-scope.h",
429 "src/assert-scope.cc", 429 "src/assert-scope.cc",
430 "src/ast-numbering.cc", 430 "src/ast-numbering.cc",
431 "src/ast-numbering.h", 431 "src/ast-numbering.h",
432 "src/ast-this-access-visitor.cc",
433 "src/ast-this-access-visitor.h",
432 "src/ast-value-factory.cc", 434 "src/ast-value-factory.cc",
433 "src/ast-value-factory.h", 435 "src/ast-value-factory.h",
434 "src/ast.cc", 436 "src/ast.cc",
435 "src/ast.h", 437 "src/ast.h",
436 "src/background-parsing-task.cc", 438 "src/background-parsing-task.cc",
437 "src/background-parsing-task.h", 439 "src/background-parsing-task.h",
438 "src/bailout-reason.cc", 440 "src/bailout-reason.cc",
439 "src/bailout-reason.h", 441 "src/bailout-reason.h",
440 "src/basic-block-profiler.cc", 442 "src/basic-block-profiler.cc",
441 "src/basic-block-profiler.h", 443 "src/basic-block-profiler.h",
(...skipping 1003 matching lines...) Expand 10 before | Expand all | Expand 10 after
1445 deps = [ 1447 deps = [
1446 ":v8_base", 1448 ":v8_base",
1447 ":v8_nosnapshot", 1449 ":v8_nosnapshot",
1448 ] 1450 ]
1449 } 1451 }
1450 1452
1451 direct_dependent_configs = [ ":external_config" ] 1453 direct_dependent_configs = [ ":external_config" ]
1452 } 1454 }
1453 1455
1454 } 1456 }
OLDNEW
« no previous file with comments | « no previous file | src/ast.h » ('j') | src/ast-this-access-visitor.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698