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 1063 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1074 "src/interpreter/bytecode-traits.h", | 1074 "src/interpreter/bytecode-traits.h", |
1075 "src/interpreter/control-flow-builders.cc", | 1075 "src/interpreter/control-flow-builders.cc", |
1076 "src/interpreter/control-flow-builders.h", | 1076 "src/interpreter/control-flow-builders.h", |
1077 "src/interpreter/interpreter.cc", | 1077 "src/interpreter/interpreter.cc", |
1078 "src/interpreter/interpreter.h", | 1078 "src/interpreter/interpreter.h", |
1079 "src/isolate-inl.h", | 1079 "src/isolate-inl.h", |
1080 "src/isolate.cc", | 1080 "src/isolate.cc", |
1081 "src/isolate.h", | 1081 "src/isolate.h", |
1082 "src/json-parser.h", | 1082 "src/json-parser.h", |
1083 "src/json-stringifier.h", | 1083 "src/json-stringifier.h", |
| 1084 "src/key-accumulator.h", |
| 1085 "src/key-accumulator.cc", |
1084 "src/layout-descriptor-inl.h", | 1086 "src/layout-descriptor-inl.h", |
1085 "src/layout-descriptor.cc", | 1087 "src/layout-descriptor.cc", |
1086 "src/layout-descriptor.h", | 1088 "src/layout-descriptor.h", |
1087 "src/list-inl.h", | 1089 "src/list-inl.h", |
1088 "src/list.h", | 1090 "src/list.h", |
1089 "src/log-inl.h", | 1091 "src/log-inl.h", |
1090 "src/log-utils.cc", | 1092 "src/log-utils.cc", |
1091 "src/log-utils.h", | 1093 "src/log-utils.h", |
1092 "src/log.cc", | 1094 "src/log.cc", |
1093 "src/log.h", | 1095 "src/log.h", |
(...skipping 744 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1838 if (!is_component_build) { | 1840 if (!is_component_build) { |
1839 sources += [ | 1841 sources += [ |
1840 "$target_gen_dir/d8-js.cc", | 1842 "$target_gen_dir/d8-js.cc", |
1841 ] | 1843 ] |
1842 } | 1844 } |
1843 if (v8_enable_i18n_support) { | 1845 if (v8_enable_i18n_support) { |
1844 deps += [ "//third_party/icu" ] | 1846 deps += [ "//third_party/icu" ] |
1845 } | 1847 } |
1846 } | 1848 } |
1847 } | 1849 } |
OLD | NEW |