| 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 765 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 776 "src/heap-snapshot-generator-inl.h", | 776 "src/heap-snapshot-generator-inl.h", |
| 777 "src/heap-snapshot-generator.cc", | 777 "src/heap-snapshot-generator.cc", |
| 778 "src/heap-snapshot-generator.h", | 778 "src/heap-snapshot-generator.h", |
| 779 "src/heap/gc-idle-time-handler.cc", | 779 "src/heap/gc-idle-time-handler.cc", |
| 780 "src/heap/gc-idle-time-handler.h", | 780 "src/heap/gc-idle-time-handler.h", |
| 781 "src/heap/gc-tracer.cc", | 781 "src/heap/gc-tracer.cc", |
| 782 "src/heap/gc-tracer.h", | 782 "src/heap/gc-tracer.h", |
| 783 "src/heap/heap-inl.h", | 783 "src/heap/heap-inl.h", |
| 784 "src/heap/heap.cc", | 784 "src/heap/heap.cc", |
| 785 "src/heap/heap.h", | 785 "src/heap/heap.h", |
| 786 "src/heap/identity-map.cc", |
| 787 "src/heap/identity-map.h", |
| 786 "src/heap/incremental-marking.cc", | 788 "src/heap/incremental-marking.cc", |
| 787 "src/heap/incremental-marking.h", | 789 "src/heap/incremental-marking.h", |
| 788 "src/heap/mark-compact-inl.h", | 790 "src/heap/mark-compact-inl.h", |
| 789 "src/heap/mark-compact.cc", | 791 "src/heap/mark-compact.cc", |
| 790 "src/heap/mark-compact.h", | 792 "src/heap/mark-compact.h", |
| 791 "src/heap/objects-visiting-inl.h", | 793 "src/heap/objects-visiting-inl.h", |
| 792 "src/heap/objects-visiting.cc", | 794 "src/heap/objects-visiting.cc", |
| 793 "src/heap/objects-visiting.h", | 795 "src/heap/objects-visiting.h", |
| 794 "src/heap/spaces-inl.h", | 796 "src/heap/spaces-inl.h", |
| 795 "src/heap/spaces.cc", | 797 "src/heap/spaces.cc", |
| (...skipping 823 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1619 sources += [ | 1621 sources += [ |
| 1620 "src/d8-debug.cc", | 1622 "src/d8-debug.cc", |
| 1621 "$target_gen_dir/d8-js.cc", | 1623 "$target_gen_dir/d8-js.cc", |
| 1622 ] | 1624 ] |
| 1623 } | 1625 } |
| 1624 if (v8_enable_i18n_support) { | 1626 if (v8_enable_i18n_support) { |
| 1625 deps += [ "//third_party/icu" ] | 1627 deps += [ "//third_party/icu" ] |
| 1626 } | 1628 } |
| 1627 } | 1629 } |
| 1628 } | 1630 } |
| OLD | NEW |