| OLD | NEW |
| 1 # Copyright 2009 the V8 project authors. All rights reserved. | 1 # Copyright 2009 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 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 '../../src/dateparser-inl.h', | 326 '../../src/dateparser-inl.h', |
| 327 '../../src/debug.cc', | 327 '../../src/debug.cc', |
| 328 '../../src/debug.h', | 328 '../../src/debug.h', |
| 329 '../../src/debug-agent.cc', | 329 '../../src/debug-agent.cc', |
| 330 '../../src/debug-agent.h', | 330 '../../src/debug-agent.h', |
| 331 '../../src/disasm.h', | 331 '../../src/disasm.h', |
| 332 '../../src/disassembler.cc', | 332 '../../src/disassembler.cc', |
| 333 '../../src/disassembler.h', | 333 '../../src/disassembler.h', |
| 334 '../../src/dtoa.cc', | 334 '../../src/dtoa.cc', |
| 335 '../../src/dtoa.h', | 335 '../../src/dtoa.h', |
| 336 '../../src/dtoa-config.c', | |
| 337 '../../src/diy-fp.cc', | 336 '../../src/diy-fp.cc', |
| 338 '../../src/diy-fp.h', | 337 '../../src/diy-fp.h', |
| 339 '../../src/double.h', | 338 '../../src/double.h', |
| 340 '../../src/execution.cc', | 339 '../../src/execution.cc', |
| 341 '../../src/execution.h', | 340 '../../src/execution.h', |
| 342 '../../src/factory.cc', | 341 '../../src/factory.cc', |
| 343 '../../src/factory.h', | 342 '../../src/factory.h', |
| 344 '../../src/fast-dtoa.cc', | 343 '../../src/fast-dtoa.cc', |
| 345 '../../src/fast-dtoa.h', | 344 '../../src/fast-dtoa.h', |
| 346 '../../src/flag-definitions.h', | 345 '../../src/flag-definitions.h', |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 650 'sources': [ | 649 'sources': [ |
| 651 '../../src/platform-macos.cc', | 650 '../../src/platform-macos.cc', |
| 652 '../../src/platform-posix.cc' | 651 '../../src/platform-posix.cc' |
| 653 ]}, | 652 ]}, |
| 654 ], | 653 ], |
| 655 ['OS=="win"', { | 654 ['OS=="win"', { |
| 656 'sources': [ | 655 'sources': [ |
| 657 '../../src/platform-win32.cc', | 656 '../../src/platform-win32.cc', |
| 658 ], | 657 ], |
| 659 # 4355, 4800 came from common.vsprops | 658 # 4355, 4800 came from common.vsprops |
| 660 # 4018, 4244 were a per file config on dtoa-config.c | 659 'msvs_disabled_warnings': [4355, 4800], |
| 661 # TODO: It's probably possible and desirable to stop disabling the | |
| 662 # dtoa-specific warnings by modifying dtoa as was done in Chromium | |
| 663 # r9255. Refer to that revision for details. | |
| 664 'msvs_disabled_warnings': [4355, 4800, 4018, 4244], | |
| 665 'link_settings': { | 660 'link_settings': { |
| 666 'libraries': [ '-lwinmm.lib' ], | 661 'libraries': [ '-lwinmm.lib' ], |
| 667 }, | 662 }, |
| 668 }], | 663 }], |
| 669 ['OS=="win" and component=="shared_library"', { | 664 ['OS=="win" and component=="shared_library"', { |
| 670 'defines': [ | 665 'defines': [ |
| 671 'BUILDING_V8_SHARED' | 666 'BUILDING_V8_SHARED' |
| 672 ], | 667 ], |
| 673 }], | 668 }], |
| 674 ], | 669 ], |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 750 ], | 745 ], |
| 751 'conditions': [ | 746 'conditions': [ |
| 752 ['OS=="win"', { | 747 ['OS=="win"', { |
| 753 # This could be gotten by not setting chromium_code, if that's OK. | 748 # This could be gotten by not setting chromium_code, if that's OK. |
| 754 'defines': ['_CRT_SECURE_NO_WARNINGS'], | 749 'defines': ['_CRT_SECURE_NO_WARNINGS'], |
| 755 }], | 750 }], |
| 756 ], | 751 ], |
| 757 }, | 752 }, |
| 758 ], | 753 ], |
| 759 } | 754 } |
| OLD | NEW |