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

Side by Side Diff: BUILD.gn

Issue 402693002: Fix v8 Windows GN build. (Closed) Base URL: https://chromium.googlesource.com/external/v8.git@master
Patch Set: Created 6 years, 5 months 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 | no next file » | 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 # TODO(jochen): These will need to be user-settable to support standalone V8 5 # TODO(jochen): These will need to be user-settable to support standalone V8
6 # builds. 6 # builds.
7 v8_compress_startup_data = "off" 7 v8_compress_startup_data = "off"
8 v8_deprecation_warnings = false 8 v8_deprecation_warnings = false
9 v8_enable_disassembler = false 9 v8_enable_disassembler = false
10 v8_enable_gdbjit = false 10 v8_enable_gdbjit = false
(...skipping 1041 matching lines...) Expand 10 before | Expand all | Expand 10 after
1052 if (current_toolchain == host_toolchain) { 1052 if (current_toolchain == host_toolchain) {
1053 defines += [ "V8_LIBRT_NOT_AVAILABLE" ] 1053 defines += [ "V8_LIBRT_NOT_AVAILABLE" ]
1054 } 1054 }
1055 } 1055 }
1056 } else if (is_mac) { 1056 } else if (is_mac) {
1057 sources += [ "src/base/platform/platform-macos.cc" ] 1057 sources += [ "src/base/platform/platform-macos.cc" ]
1058 } else if (is_win) { 1058 } else if (is_win) {
1059 # TODO(jochen): Add support for cygwin. 1059 # TODO(jochen): Add support for cygwin.
1060 sources += [ 1060 sources += [
1061 "src/base/platform/platform-win32.cc", 1061 "src/base/platform/platform-win32.cc",
1062 "src/base/platform/win32-headers.h", 1062 "src/base/win32-headers.h",
1063 "src/base/platform/win32-math.cc", 1063 "src/base/win32-math.cc",
1064 "src/base/platform/win32-math.h", 1064 "src/base/win32-math.h",
1065 ] 1065 ]
1066 1066
1067 defines += [ "_CRT_RAND_S" ] # for rand_s() 1067 defines += [ "_CRT_RAND_S" ] # for rand_s()
1068 1068
1069 libs = [ "winmm.lib", "ws2_32.lib" ] 1069 libs = [ "winmm.lib", "ws2_32.lib" ]
1070 } 1070 }
1071 1071
1072 # TODO(jochen): Add support for qnx, freebsd, openbsd, netbsd, and solaris. 1072 # TODO(jochen): Add support for qnx, freebsd, openbsd, netbsd, and solaris.
1073 } 1073 }
1074 1074
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
1176 deps = [ 1176 deps = [
1177 ":v8_base", 1177 ":v8_base",
1178 ":v8_nosnapshot", 1178 ":v8_nosnapshot",
1179 ] 1179 ]
1180 } 1180 }
1181 1181
1182 direct_dependent_configs = [ ":external_config" ] 1182 direct_dependent_configs = [ ":external_config" ]
1183 } 1183 }
1184 1184
1185 } 1185 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698