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 811 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
822 "src/globals.h", | 822 "src/globals.h", |
823 "src/handles-inl.h", | 823 "src/handles-inl.h", |
824 "src/handles.cc", | 824 "src/handles.cc", |
825 "src/handles.h", | 825 "src/handles.h", |
826 "src/hashmap.h", | 826 "src/hashmap.h", |
827 "src/heap-profiler.cc", | 827 "src/heap-profiler.cc", |
828 "src/heap-profiler.h", | 828 "src/heap-profiler.h", |
829 "src/heap-snapshot-generator-inl.h", | 829 "src/heap-snapshot-generator-inl.h", |
830 "src/heap-snapshot-generator.cc", | 830 "src/heap-snapshot-generator.cc", |
831 "src/heap-snapshot-generator.h", | 831 "src/heap-snapshot-generator.h", |
832 "src/heap/memory-reducer.cc", | |
Hannes Payer (out of office)
2015/07/02 13:19:06
alphabetic order
ulan
2015/07/02 13:30:15
Done.
| |
833 "src/heap/memory-reducer.h", | |
832 "src/heap/gc-idle-time-handler.cc", | 834 "src/heap/gc-idle-time-handler.cc", |
833 "src/heap/gc-idle-time-handler.h", | 835 "src/heap/gc-idle-time-handler.h", |
834 "src/heap/gc-tracer.cc", | 836 "src/heap/gc-tracer.cc", |
835 "src/heap/gc-tracer.h", | 837 "src/heap/gc-tracer.h", |
836 "src/heap/heap-inl.h", | 838 "src/heap/heap-inl.h", |
837 "src/heap/heap.cc", | 839 "src/heap/heap.cc", |
838 "src/heap/heap.h", | 840 "src/heap/heap.h", |
839 "src/heap/identity-map.cc", | 841 "src/heap/identity-map.cc", |
840 "src/heap/identity-map.h", | 842 "src/heap/identity-map.h", |
841 "src/heap/incremental-marking.cc", | 843 "src/heap/incremental-marking.cc", |
(...skipping 841 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1683 sources += [ | 1685 sources += [ |
1684 "src/d8-debug.cc", | 1686 "src/d8-debug.cc", |
1685 "$target_gen_dir/d8-js.cc", | 1687 "$target_gen_dir/d8-js.cc", |
1686 ] | 1688 ] |
1687 } | 1689 } |
1688 if (v8_enable_i18n_support) { | 1690 if (v8_enable_i18n_support) { |
1689 deps += [ "//third_party/icu" ] | 1691 deps += [ "//third_party/icu" ] |
1690 } | 1692 } |
1691 } | 1693 } |
1692 } | 1694 } |
OLD | NEW |