| 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 import("//build/config/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
| 9 | 9 |
| 10 # Because standalone V8 builds are not supported, assume this is part of a | 10 # Because standalone V8 builds are not supported, assume this is part of a |
| (...skipping 610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 621 "include/v8-debug.h", | 621 "include/v8-debug.h", |
| 622 "include/v8-platform.h", | 622 "include/v8-platform.h", |
| 623 "include/v8-profiler.h", | 623 "include/v8-profiler.h", |
| 624 "include/v8-testing.h", | 624 "include/v8-testing.h", |
| 625 "include/v8-util.h", | 625 "include/v8-util.h", |
| 626 "include/v8-version.h", | 626 "include/v8-version.h", |
| 627 "include/v8.h", | 627 "include/v8.h", |
| 628 "include/v8config.h", | 628 "include/v8config.h", |
| 629 "src/accessors.cc", | 629 "src/accessors.cc", |
| 630 "src/accessors.h", | 630 "src/accessors.h", |
| 631 "src/address-map.cc", |
| 632 "src/address-map.h", |
| 631 "src/allocation.cc", | 633 "src/allocation.cc", |
| 632 "src/allocation.h", | 634 "src/allocation.h", |
| 633 "src/allocation-site-scopes.cc", | 635 "src/allocation-site-scopes.cc", |
| 634 "src/allocation-site-scopes.h", | 636 "src/allocation-site-scopes.h", |
| 635 "src/api.cc", | 637 "src/api.cc", |
| 636 "src/api.h", | 638 "src/api.h", |
| 637 "src/api-natives.cc", | 639 "src/api-natives.cc", |
| 638 "src/api-natives.h", | 640 "src/api-natives.h", |
| 639 "src/arguments.cc", | 641 "src/arguments.cc", |
| 640 "src/arguments.h", | 642 "src/arguments.h", |
| (...skipping 1194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1835 if (!is_component_build) { | 1837 if (!is_component_build) { |
| 1836 sources += [ | 1838 sources += [ |
| 1837 "$target_gen_dir/d8-js.cc", | 1839 "$target_gen_dir/d8-js.cc", |
| 1838 ] | 1840 ] |
| 1839 } | 1841 } |
| 1840 if (v8_enable_i18n_support) { | 1842 if (v8_enable_i18n_support) { |
| 1841 deps += [ "//third_party/icu" ] | 1843 deps += [ "//third_party/icu" ] |
| 1842 } | 1844 } |
| 1843 } | 1845 } |
| 1844 } | 1846 } |
| OLD | NEW |