| 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 1045 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1056 "src/interface-descriptors.cc", | 1056 "src/interface-descriptors.cc", |
| 1057 "src/interface-descriptors.h", | 1057 "src/interface-descriptors.h", |
| 1058 "src/interpreter/bytecodes.cc", | 1058 "src/interpreter/bytecodes.cc", |
| 1059 "src/interpreter/bytecodes.h", | 1059 "src/interpreter/bytecodes.h", |
| 1060 "src/interpreter/bytecode-array-builder.cc", | 1060 "src/interpreter/bytecode-array-builder.cc", |
| 1061 "src/interpreter/bytecode-array-builder.h", | 1061 "src/interpreter/bytecode-array-builder.h", |
| 1062 "src/interpreter/bytecode-array-iterator.cc", | 1062 "src/interpreter/bytecode-array-iterator.cc", |
| 1063 "src/interpreter/bytecode-array-iterator.h", | 1063 "src/interpreter/bytecode-array-iterator.h", |
| 1064 "src/interpreter/bytecode-generator.cc", | 1064 "src/interpreter/bytecode-generator.cc", |
| 1065 "src/interpreter/bytecode-generator.h", | 1065 "src/interpreter/bytecode-generator.h", |
| 1066 "src/interpreter/bytecode-traits.h", |
| 1066 "src/interpreter/interpreter.cc", | 1067 "src/interpreter/interpreter.cc", |
| 1067 "src/interpreter/interpreter.h", | 1068 "src/interpreter/interpreter.h", |
| 1068 "src/isolate-inl.h", | 1069 "src/isolate-inl.h", |
| 1069 "src/isolate.cc", | 1070 "src/isolate.cc", |
| 1070 "src/isolate.h", | 1071 "src/isolate.h", |
| 1071 "src/json-parser.h", | 1072 "src/json-parser.h", |
| 1072 "src/json-stringifier.h", | 1073 "src/json-stringifier.h", |
| 1073 "src/layout-descriptor-inl.h", | 1074 "src/layout-descriptor-inl.h", |
| 1074 "src/layout-descriptor.cc", | 1075 "src/layout-descriptor.cc", |
| 1075 "src/layout-descriptor.h", | 1076 "src/layout-descriptor.h", |
| (...skipping 739 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1815 if (!is_component_build) { | 1816 if (!is_component_build) { |
| 1816 sources += [ | 1817 sources += [ |
| 1817 "$target_gen_dir/d8-js.cc", | 1818 "$target_gen_dir/d8-js.cc", |
| 1818 ] | 1819 ] |
| 1819 } | 1820 } |
| 1820 if (v8_enable_i18n_support) { | 1821 if (v8_enable_i18n_support) { |
| 1821 deps += [ "//third_party/icu" ] | 1822 deps += [ "//third_party/icu" ] |
| 1822 } | 1823 } |
| 1823 } | 1824 } |
| 1824 } | 1825 } |
| OLD | NEW |