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

Side by Side Diff: BUILD.gn

Issue 656143004: Remove (untested) code for unsupported compilers. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix comment. Created 6 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | include/v8config.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 # 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 1300 matching lines...) Expand 10 before | Expand all | Expand 10 after
1311 defines += [ "V8_LIBRT_NOT_AVAILABLE" ] 1311 defines += [ "V8_LIBRT_NOT_AVAILABLE" ]
1312 } 1312 }
1313 } 1313 }
1314 } else if (is_mac) { 1314 } else if (is_mac) {
1315 sources += [ "src/base/platform/platform-macos.cc" ] 1315 sources += [ "src/base/platform/platform-macos.cc" ]
1316 } else if (is_win) { 1316 } else if (is_win) {
1317 # TODO(jochen): Add support for cygwin. 1317 # TODO(jochen): Add support for cygwin.
1318 sources += [ 1318 sources += [
1319 "src/base/platform/platform-win32.cc", 1319 "src/base/platform/platform-win32.cc",
1320 "src/base/win32-headers.h", 1320 "src/base/win32-headers.h",
1321 "src/base/win32-math.cc",
1322 "src/base/win32-math.h",
1323 ] 1321 ]
1324 1322
1325 defines += [ "_CRT_RAND_S" ] # for rand_s() 1323 defines += [ "_CRT_RAND_S" ] # for rand_s()
1326 1324
1327 libs = [ "winmm.lib", "ws2_32.lib" ] 1325 libs = [ "winmm.lib", "ws2_32.lib" ]
1328 } 1326 }
1329 1327
1330 # TODO(jochen): Add support for qnx, freebsd, openbsd, netbsd, and solaris. 1328 # TODO(jochen): Add support for qnx, freebsd, openbsd, netbsd, and solaris.
1331 } 1329 }
1332 1330
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
1440 deps = [ 1438 deps = [
1441 ":v8_base", 1439 ":v8_base",
1442 ":v8_nosnapshot", 1440 ":v8_nosnapshot",
1443 ] 1441 ]
1444 } 1442 }
1445 1443
1446 direct_dependent_configs = [ ":external_config" ] 1444 direct_dependent_configs = [ ":external_config" ]
1447 } 1445 }
1448 1446
1449 } 1447 }
OLDNEW
« no previous file with comments | « no previous file | include/v8config.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698