OLD | NEW |
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 1732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1743 'sources': [ | 1743 'sources': [ |
1744 '<@(inspector_all_sources)' | 1744 '<@(inspector_all_sources)' |
1745 ], | 1745 ], |
1746 'dependencies': [ | 1746 'dependencies': [ |
1747 'inspector/inspector.gyp:protocol_generated_sources', | 1747 'inspector/inspector.gyp:protocol_generated_sources', |
1748 'inspector/inspector.gyp:inspector_injected_script', | 1748 'inspector/inspector.gyp:inspector_injected_script', |
1749 'inspector/inspector.gyp:inspector_debugger_script', | 1749 'inspector/inspector.gyp:inspector_debugger_script', |
1750 ], | 1750 ], |
1751 # TODO(dgozman): fix these warnings and enable them. | 1751 # TODO(dgozman): fix these warnings and enable them. |
1752 'msvs_disabled_warnings': [ | 1752 'msvs_disabled_warnings': [ |
1753 4267, # Truncation from size_t to int. | |
1754 4305, # Truncation from 'type1' to 'type2'. | 1753 4305, # Truncation from 'type1' to 'type2'. |
1755 4324, # Struct padded due to declspec(align). | 1754 4324, # Struct padded due to declspec(align). |
1756 4714, # Function marked forceinline not inlined. | 1755 4714, # Function marked forceinline not inlined. |
1757 4800, # Value forced to bool. | 1756 4800, # Value forced to bool. |
1758 ], | 1757 ], |
1759 'cflags': [ | 1758 'cflags': [ |
1760 '-Wno-shorten-64-to-32', | |
1761 ], | 1759 ], |
1762 }], | 1760 }], |
1763 ['OS=="win" and v8_enable_i18n_support==1', { | 1761 ['OS=="win" and v8_enable_i18n_support==1', { |
1764 'dependencies': [ | 1762 'dependencies': [ |
1765 '<(icu_gyp_path):icudata', | 1763 '<(icu_gyp_path):icudata', |
1766 ], | 1764 ], |
1767 }], | 1765 }], |
1768 ], | 1766 ], |
1769 }, | 1767 }, |
1770 { | 1768 { |
(...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2447 'conditions': [ | 2445 'conditions': [ |
2448 ['want_separate_host_toolset_mkpeephole==1', { | 2446 ['want_separate_host_toolset_mkpeephole==1', { |
2449 'toolsets': ['host'], | 2447 'toolsets': ['host'], |
2450 }, { | 2448 }, { |
2451 'toolsets': ['target'], | 2449 'toolsets': ['target'], |
2452 }], | 2450 }], |
2453 ], | 2451 ], |
2454 }, | 2452 }, |
2455 ], | 2453 ], |
2456 } | 2454 } |
OLD | NEW |