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 685 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
696 "src/cpu-profiler.h", | 696 "src/cpu-profiler.h", |
697 "src/date.cc", | 697 "src/date.cc", |
698 "src/date.h", | 698 "src/date.h", |
699 "src/dateparser-inl.h", | 699 "src/dateparser-inl.h", |
700 "src/dateparser.cc", | 700 "src/dateparser.cc", |
701 "src/dateparser.h", | 701 "src/dateparser.h", |
702 "src/debug.cc", | 702 "src/debug.cc", |
703 "src/debug.h", | 703 "src/debug.h", |
704 "src/deoptimizer.cc", | 704 "src/deoptimizer.cc", |
705 "src/deoptimizer.h", | 705 "src/deoptimizer.h", |
| 706 "src/dependencies.cc", |
| 707 "src/dependencies.h", |
706 "src/disasm.h", | 708 "src/disasm.h", |
707 "src/disassembler.cc", | 709 "src/disassembler.cc", |
708 "src/disassembler.h", | 710 "src/disassembler.h", |
709 "src/diy-fp.cc", | 711 "src/diy-fp.cc", |
710 "src/diy-fp.h", | 712 "src/diy-fp.h", |
711 "src/double.h", | 713 "src/double.h", |
712 "src/dtoa.cc", | 714 "src/dtoa.cc", |
713 "src/dtoa.h", | 715 "src/dtoa.h", |
714 "src/effects.h", | 716 "src/effects.h", |
715 "src/elements-kind.cc", | 717 "src/elements-kind.cc", |
(...skipping 886 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1602 sources += [ | 1604 sources += [ |
1603 "src/d8-debug.cc", | 1605 "src/d8-debug.cc", |
1604 "$target_gen_dir/d8-js.cc", | 1606 "$target_gen_dir/d8-js.cc", |
1605 ] | 1607 ] |
1606 } | 1608 } |
1607 if (v8_enable_i18n_support) { | 1609 if (v8_enable_i18n_support) { |
1608 deps += [ "//third_party/icu" ] | 1610 deps += [ "//third_party/icu" ] |
1609 } | 1611 } |
1610 } | 1612 } |
1611 } | 1613 } |
OLD | NEW |