| 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 751 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 762     "src/heap-snapshot-generator-inl.h", | 762     "src/heap-snapshot-generator-inl.h", | 
| 763     "src/heap-snapshot-generator.cc", | 763     "src/heap-snapshot-generator.cc", | 
| 764     "src/heap-snapshot-generator.h", | 764     "src/heap-snapshot-generator.h", | 
| 765     "src/heap/gc-idle-time-handler.cc", | 765     "src/heap/gc-idle-time-handler.cc", | 
| 766     "src/heap/gc-idle-time-handler.h", | 766     "src/heap/gc-idle-time-handler.h", | 
| 767     "src/heap/gc-tracer.cc", | 767     "src/heap/gc-tracer.cc", | 
| 768     "src/heap/gc-tracer.h", | 768     "src/heap/gc-tracer.h", | 
| 769     "src/heap/heap-inl.h", | 769     "src/heap/heap-inl.h", | 
| 770     "src/heap/heap.cc", | 770     "src/heap/heap.cc", | 
| 771     "src/heap/heap.h", | 771     "src/heap/heap.h", | 
|  | 772     "src/heap/identity-map.cc", | 
|  | 773     "src/heap/identity-map.h", | 
| 772     "src/heap/incremental-marking.cc", | 774     "src/heap/incremental-marking.cc", | 
| 773     "src/heap/incremental-marking.h", | 775     "src/heap/incremental-marking.h", | 
| 774     "src/heap/mark-compact-inl.h", | 776     "src/heap/mark-compact-inl.h", | 
| 775     "src/heap/mark-compact.cc", | 777     "src/heap/mark-compact.cc", | 
| 776     "src/heap/mark-compact.h", | 778     "src/heap/mark-compact.h", | 
| 777     "src/heap/objects-visiting-inl.h", | 779     "src/heap/objects-visiting-inl.h", | 
| 778     "src/heap/objects-visiting.cc", | 780     "src/heap/objects-visiting.cc", | 
| 779     "src/heap/objects-visiting.h", | 781     "src/heap/objects-visiting.h", | 
| 780     "src/heap/spaces-inl.h", | 782     "src/heap/spaces-inl.h", | 
| 781     "src/heap/spaces.cc", | 783     "src/heap/spaces.cc", | 
| (...skipping 822 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1604       sources += [ | 1606       sources += [ | 
| 1605         "src/d8-debug.cc", | 1607         "src/d8-debug.cc", | 
| 1606         "$target_gen_dir/d8-js.cc", | 1608         "$target_gen_dir/d8-js.cc", | 
| 1607       ] | 1609       ] | 
| 1608     } | 1610     } | 
| 1609     if (v8_enable_i18n_support) { | 1611     if (v8_enable_i18n_support) { | 
| 1610       deps += [ "//third_party/icu" ] | 1612       deps += [ "//third_party/icu" ] | 
| 1611     } | 1613     } | 
| 1612   } | 1614   } | 
| 1613 } | 1615 } | 
| OLD | NEW | 
|---|