| 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 1059 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1070 "src/smart-pointers.h", | 1070 "src/smart-pointers.h", |
| 1071 "src/snapshot/natives.h", | 1071 "src/snapshot/natives.h", |
| 1072 "src/snapshot/serialize.cc", | 1072 "src/snapshot/serialize.cc", |
| 1073 "src/snapshot/serialize.h", | 1073 "src/snapshot/serialize.h", |
| 1074 "src/snapshot/snapshot-common.cc", | 1074 "src/snapshot/snapshot-common.cc", |
| 1075 "src/snapshot/snapshot-source-sink.cc", | 1075 "src/snapshot/snapshot-source-sink.cc", |
| 1076 "src/snapshot/snapshot-source-sink.h", | 1076 "src/snapshot/snapshot-source-sink.h", |
| 1077 "src/splay-tree.h", | 1077 "src/splay-tree.h", |
| 1078 "src/splay-tree-inl.h", | 1078 "src/splay-tree-inl.h", |
| 1079 "src/snapshot/snapshot.h", | 1079 "src/snapshot/snapshot.h", |
| 1080 "src/startup-data-util.h", |
| 1081 "src/startup-data-util.cc", |
| 1080 "src/string-builder.cc", | 1082 "src/string-builder.cc", |
| 1081 "src/string-builder.h", | 1083 "src/string-builder.h", |
| 1082 "src/string-search.cc", | 1084 "src/string-search.cc", |
| 1083 "src/string-search.h", | 1085 "src/string-search.h", |
| 1084 "src/string-stream.cc", | 1086 "src/string-stream.cc", |
| 1085 "src/string-stream.h", | 1087 "src/string-stream.h", |
| 1086 "src/strings-storage.cc", | 1088 "src/strings-storage.cc", |
| 1087 "src/strings-storage.h", | 1089 "src/strings-storage.h", |
| 1088 "src/strtod.cc", | 1090 "src/strtod.cc", |
| 1089 "src/strtod.h", | 1091 "src/strtod.h", |
| (...skipping 581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1671 public_configs = [ ":external_config" ] | 1673 public_configs = [ ":external_config" ] |
| 1672 } | 1674 } |
| 1673 } | 1675 } |
| 1674 | 1676 |
| 1675 if ((current_toolchain == host_toolchain && v8_toolset_for_d8 == "host") || | 1677 if ((current_toolchain == host_toolchain && v8_toolset_for_d8 == "host") || |
| 1676 (current_toolchain != host_toolchain && v8_toolset_for_d8 == "target")) { | 1678 (current_toolchain != host_toolchain && v8_toolset_for_d8 == "target")) { |
| 1677 executable("d8") { | 1679 executable("d8") { |
| 1678 sources = [ | 1680 sources = [ |
| 1679 "src/d8.cc", | 1681 "src/d8.cc", |
| 1680 "src/d8.h", | 1682 "src/d8.h", |
| 1681 "src/startup-data-util.h", | |
| 1682 "src/startup-data-util.cc", | |
| 1683 ] | 1683 ] |
| 1684 | 1684 |
| 1685 configs -= [ "//build/config/compiler:chromium_code" ] | 1685 configs -= [ "//build/config/compiler:chromium_code" ] |
| 1686 configs += [ "//build/config/compiler:no_chromium_code" ] | 1686 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 1687 configs += [ | 1687 configs += [ |
| 1688 # Note: don't use :internal_config here because this target will get | 1688 # Note: don't use :internal_config here because this target will get |
| 1689 # the :external_config applied to it by virtue of depending on :v8, and | 1689 # the :external_config applied to it by virtue of depending on :v8, and |
| 1690 # you can't have both applied to the same target. | 1690 # you can't have both applied to the same target. |
| 1691 ":internal_config_base", | 1691 ":internal_config_base", |
| 1692 ":features", | 1692 ":features", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 1713 "src/d8-debug.cc", | 1713 "src/d8-debug.cc", |
| 1714 "src/d8-debug.h", | 1714 "src/d8-debug.h", |
| 1715 "$target_gen_dir/d8-js.cc", | 1715 "$target_gen_dir/d8-js.cc", |
| 1716 ] | 1716 ] |
| 1717 } | 1717 } |
| 1718 if (v8_enable_i18n_support) { | 1718 if (v8_enable_i18n_support) { |
| 1719 deps += [ "//third_party/icu" ] | 1719 deps += [ "//third_party/icu" ] |
| 1720 } | 1720 } |
| 1721 } | 1721 } |
| 1722 } | 1722 } |
| OLD | NEW |