| 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 1744 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1755 # TODO(jochen): Add support for readline and vtunejit. | 1755 # TODO(jochen): Add support for readline and vtunejit. |
| 1756 | 1756 |
| 1757 if (is_posix) { | 1757 if (is_posix) { |
| 1758 sources += [ "src/d8-posix.cc" ] | 1758 sources += [ "src/d8-posix.cc" ] |
| 1759 } else if (is_win) { | 1759 } else if (is_win) { |
| 1760 sources += [ "src/d8-windows.cc" ] | 1760 sources += [ "src/d8-windows.cc" ] |
| 1761 } | 1761 } |
| 1762 | 1762 |
| 1763 if (!is_component_build) { | 1763 if (!is_component_build) { |
| 1764 sources += [ | 1764 sources += [ |
| 1765 "src/d8-debug.cc", | |
| 1766 "src/d8-debug.h", | |
| 1767 "$target_gen_dir/d8-js.cc", | 1765 "$target_gen_dir/d8-js.cc", |
| 1768 ] | 1766 ] |
| 1769 } | 1767 } |
| 1770 if (v8_enable_i18n_support) { | 1768 if (v8_enable_i18n_support) { |
| 1771 deps += [ "//third_party/icu" ] | 1769 deps += [ "//third_party/icu" ] |
| 1772 } | 1770 } |
| 1773 } | 1771 } |
| 1774 } | 1772 } |
| OLD | NEW |