Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(888)

Side by Side Diff: BUILD.gn

Issue 1527103005: [d8] Remove "os" object from d8. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/d8.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | src/d8.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698