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

Side by Side Diff: tools/gyp/v8.gyp

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 | « test/cctest/test-serialize.cc ('k') | 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 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 1424 matching lines...) Expand 10 before | Expand all | Expand 10 after
1435 'conditions': [ 1435 'conditions': [
1436 ['build_env=="Cygwin"', { 1436 ['build_env=="Cygwin"', {
1437 'sources': [ 1437 'sources': [
1438 '../../src/base/platform/platform-cygwin.cc', 1438 '../../src/base/platform/platform-cygwin.cc',
1439 '../../src/base/platform/platform-posix.cc' 1439 '../../src/base/platform/platform-posix.cc'
1440 ], 1440 ],
1441 }, { 1441 }, {
1442 'sources': [ 1442 'sources': [
1443 '../../src/base/platform/platform-win32.cc', 1443 '../../src/base/platform/platform-win32.cc',
1444 '../../src/base/win32-headers.h', 1444 '../../src/base/win32-headers.h',
1445 '../../src/base/win32-math.cc',
1446 '../../src/base/win32-math.h'
1447 ], 1445 ],
1448 }], 1446 }],
1449 ], 1447 ],
1450 'link_settings': { 1448 'link_settings': {
1451 'libraries': [ '-lwinmm', '-lws2_32' ], 1449 'libraries': [ '-lwinmm', '-lws2_32' ],
1452 }, 1450 },
1453 }, { 1451 }, {
1454 'sources': [ 1452 'sources': [
1455 '../../src/base/platform/platform-win32.cc', 1453 '../../src/base/platform/platform-win32.cc',
1456 '../../src/base/win32-headers.h', 1454 '../../src/base/win32-headers.h',
1457 '../../src/base/win32-math.cc',
1458 '../../src/base/win32-math.h'
1459 ], 1455 ],
1460 'msvs_disabled_warnings': [4351, 4355, 4800], 1456 'msvs_disabled_warnings': [4351, 4355, 4800],
1461 'link_settings': { 1457 'link_settings': {
1462 'libraries': [ '-lwinmm.lib', '-lws2_32.lib' ], 1458 'libraries': [ '-lwinmm.lib', '-lws2_32.lib' ],
1463 }, 1459 },
1464 }], 1460 }],
1465 ], 1461 ],
1466 }], 1462 }],
1467 ], 1463 ],
1468 }, 1464 },
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
1723 }], 1719 }],
1724 ['v8_compress_startup_data=="bz2"', { 1720 ['v8_compress_startup_data=="bz2"', {
1725 'libraries': [ 1721 'libraries': [
1726 '-lbz2', 1722 '-lbz2',
1727 ] 1723 ]
1728 }], 1724 }],
1729 ], 1725 ],
1730 }, 1726 },
1731 ], 1727 ],
1732 } 1728 }
OLDNEW
« no previous file with comments | « test/cctest/test-serialize.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698