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 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
6 import("//build/config/arm.gni") | 6 import("//build/config/arm.gni") |
7 import("//build/config/mips.gni") | 7 import("//build/config/mips.gni") |
8 | 8 |
9 # Because standalone V8 builds are not supported, assume this is part of a | 9 # Because standalone V8 builds are not supported, assume this is part of a |
10 # Chromium build. | 10 # Chromium build. |
(...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
555 "src/api.cc", | 555 "src/api.cc", |
556 "src/api.h", | 556 "src/api.h", |
557 "src/api-natives.cc", | 557 "src/api-natives.cc", |
558 "src/api-natives.h", | 558 "src/api-natives.h", |
559 "src/arguments.cc", | 559 "src/arguments.cc", |
560 "src/arguments.h", | 560 "src/arguments.h", |
561 "src/assembler.cc", | 561 "src/assembler.cc", |
562 "src/assembler.h", | 562 "src/assembler.h", |
563 "src/assert-scope.h", | 563 "src/assert-scope.h", |
564 "src/assert-scope.cc", | 564 "src/assert-scope.cc", |
| 565 "src/ast-literal-reindexer.cc", |
| 566 "src/ast-literal-reindexer.h", |
565 "src/ast-numbering.cc", | 567 "src/ast-numbering.cc", |
566 "src/ast-numbering.h", | 568 "src/ast-numbering.h", |
567 "src/ast-value-factory.cc", | 569 "src/ast-value-factory.cc", |
568 "src/ast-value-factory.h", | 570 "src/ast-value-factory.h", |
569 "src/ast.cc", | 571 "src/ast.cc", |
570 "src/ast.h", | 572 "src/ast.h", |
571 "src/background-parsing-task.cc", | 573 "src/background-parsing-task.cc", |
572 "src/background-parsing-task.h", | 574 "src/background-parsing-task.h", |
573 "src/bailout-reason.cc", | 575 "src/bailout-reason.cc", |
574 "src/bailout-reason.h", | 576 "src/bailout-reason.h", |
(...skipping 1127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1702 "src/d8-debug.cc", | 1704 "src/d8-debug.cc", |
1703 "src/d8-debug.h", | 1705 "src/d8-debug.h", |
1704 "$target_gen_dir/d8-js.cc", | 1706 "$target_gen_dir/d8-js.cc", |
1705 ] | 1707 ] |
1706 } | 1708 } |
1707 if (v8_enable_i18n_support) { | 1709 if (v8_enable_i18n_support) { |
1708 deps += [ "//third_party/icu" ] | 1710 deps += [ "//third_party/icu" ] |
1709 } | 1711 } |
1710 } | 1712 } |
1711 } | 1713 } |
OLD | NEW |