| 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 if (is_android) { | 10 if (is_android) { |
| (...skipping 1822 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1833 | 1833 |
| 1834 deps = [ | 1834 deps = [ |
| 1835 ":d8_js2c", | 1835 ":d8_js2c", |
| 1836 ":v8", | 1836 ":v8", |
| 1837 ":v8_libplatform", | 1837 ":v8_libplatform", |
| 1838 "//build/config/sanitizers:deps", | 1838 "//build/config/sanitizers:deps", |
| 1839 ] | 1839 ] |
| 1840 | 1840 |
| 1841 # TODO(jochen): Add support for vtunejit. | 1841 # TODO(jochen): Add support for vtunejit. |
| 1842 | 1842 |
| 1843 if (is_posix) { | |
| 1844 sources += [ "src/d8-posix.cc" ] | |
| 1845 } else if (is_win) { | |
| 1846 sources += [ "src/d8-windows.cc" ] | |
| 1847 } | |
| 1848 | |
| 1849 if (!is_component_build) { | 1843 if (!is_component_build) { |
| 1850 sources += [ | 1844 sources += [ |
| 1851 "$target_gen_dir/d8-js.cc", | 1845 "$target_gen_dir/d8-js.cc", |
| 1852 ] | 1846 ] |
| 1853 } | 1847 } |
| 1854 if (v8_enable_i18n_support) { | 1848 if (v8_enable_i18n_support) { |
| 1855 deps += [ "//third_party/icu" ] | 1849 deps += [ "//third_party/icu" ] |
| 1856 } | 1850 } |
| 1857 } | 1851 } |
| 1858 } | 1852 } |
| OLD | NEW |