OLD | NEW |
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 # Because standalone V8 builds are not supported, assume this is part of a | 5 # Because standalone V8 builds are not supported, assume this is part of a |
6 # Chromium build. | 6 # Chromium build. |
7 import("//build/module_args/v8.gni") | 7 import("//build/module_args/v8.gni") |
8 | 8 |
9 # TODO(jochen): These will need to be user-settable to support standalone V8 | 9 # TODO(jochen): These will need to be user-settable to support standalone V8 |
10 # builds. | 10 # builds. |
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
454 "src/api-natives.cc", | 454 "src/api-natives.cc", |
455 "src/api-natives.h", | 455 "src/api-natives.h", |
456 "src/arguments.cc", | 456 "src/arguments.cc", |
457 "src/arguments.h", | 457 "src/arguments.h", |
458 "src/assembler.cc", | 458 "src/assembler.cc", |
459 "src/assembler.h", | 459 "src/assembler.h", |
460 "src/assert-scope.h", | 460 "src/assert-scope.h", |
461 "src/assert-scope.cc", | 461 "src/assert-scope.cc", |
462 "src/ast-numbering.cc", | 462 "src/ast-numbering.cc", |
463 "src/ast-numbering.h", | 463 "src/ast-numbering.h", |
464 "src/ast-this-access-visitor.cc", | |
465 "src/ast-this-access-visitor.h", | |
466 "src/ast-value-factory.cc", | 464 "src/ast-value-factory.cc", |
467 "src/ast-value-factory.h", | 465 "src/ast-value-factory.h", |
468 "src/ast.cc", | 466 "src/ast.cc", |
469 "src/ast.h", | 467 "src/ast.h", |
470 "src/background-parsing-task.cc", | 468 "src/background-parsing-task.cc", |
471 "src/background-parsing-task.h", | 469 "src/background-parsing-task.h", |
472 "src/bailout-reason.cc", | 470 "src/bailout-reason.cc", |
473 "src/bailout-reason.h", | 471 "src/bailout-reason.h", |
474 "src/basic-block-profiler.cc", | 472 "src/basic-block-profiler.cc", |
475 "src/basic-block-profiler.h", | 473 "src/basic-block-profiler.h", |
(...skipping 1078 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1554 sources += [ | 1552 sources += [ |
1555 "src/d8-debug.cc", | 1553 "src/d8-debug.cc", |
1556 "$target_gen_dir/d8-js.cc", | 1554 "$target_gen_dir/d8-js.cc", |
1557 ] | 1555 ] |
1558 } | 1556 } |
1559 if (v8_enable_i18n_support) { | 1557 if (v8_enable_i18n_support) { |
1560 deps += [ "//third_party/icu" ] | 1558 deps += [ "//third_party/icu" ] |
1561 } | 1559 } |
1562 } | 1560 } |
1563 } | 1561 } |
OLD | NEW |