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 999 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1010 "src/typing.cc", | 1010 "src/typing.cc", |
1011 "src/typing.h", | 1011 "src/typing.h", |
1012 "src/unbound-queue-inl.h", | 1012 "src/unbound-queue-inl.h", |
1013 "src/unbound-queue.h", | 1013 "src/unbound-queue.h", |
1014 "src/unicode-inl.h", | 1014 "src/unicode-inl.h", |
1015 "src/unicode.cc", | 1015 "src/unicode.cc", |
1016 "src/unicode.h", | 1016 "src/unicode.h", |
1017 "src/unicode-decoder.cc", | 1017 "src/unicode-decoder.cc", |
1018 "src/unicode-decoder.h", | 1018 "src/unicode-decoder.h", |
1019 "src/unique.h", | 1019 "src/unique.h", |
1020 "src/utils-inl.h", | |
1021 "src/utils.cc", | 1020 "src/utils.cc", |
1022 "src/utils.h", | 1021 "src/utils.h", |
1023 "src/v8.cc", | 1022 "src/v8.cc", |
1024 "src/v8.h", | 1023 "src/v8.h", |
1025 "src/v8memory.h", | 1024 "src/v8memory.h", |
1026 "src/v8threads.cc", | 1025 "src/v8threads.cc", |
1027 "src/v8threads.h", | 1026 "src/v8threads.h", |
1028 "src/variables.cc", | 1027 "src/variables.cc", |
1029 "src/variables.h", | 1028 "src/variables.h", |
1030 "src/version.cc", | 1029 "src/version.cc", |
(...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1605 sources += [ | 1604 sources += [ |
1606 "src/d8-debug.cc", | 1605 "src/d8-debug.cc", |
1607 "$target_gen_dir/d8-js.cc", | 1606 "$target_gen_dir/d8-js.cc", |
1608 ] | 1607 ] |
1609 } | 1608 } |
1610 if (v8_enable_i18n_support) { | 1609 if (v8_enable_i18n_support) { |
1611 deps += [ "//third_party/icu" ] | 1610 deps += [ "//third_party/icu" ] |
1612 } | 1611 } |
1613 } | 1612 } |
1614 } | 1613 } |
OLD | NEW |