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

Side by Side Diff: src/v8.gyp

Issue 2340623002: [inspector] removed ArrayLengthHelperFunction specialization for empty array (Closed)
Patch Set: rebased Created 4 years, 3 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 | « src/inspector/Allocator.h ('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 1737 matching lines...) Expand 10 before | Expand all | Expand 10 after
1748 ], 1748 ],
1749 # TODO(dgozman): fix these warnings and enable them. 1749 # TODO(dgozman): fix these warnings and enable them.
1750 'msvs_disabled_warnings': [ 1750 'msvs_disabled_warnings': [
1751 4305, # Truncation from 'type1' to 'type2'. 1751 4305, # Truncation from 'type1' to 'type2'.
1752 4324, # Struct padded due to declspec(align). 1752 4324, # Struct padded due to declspec(align).
1753 4714, # Function marked forceinline not inlined. 1753 4714, # Function marked forceinline not inlined.
1754 4800, # Value forced to bool. 1754 4800, # Value forced to bool.
1755 4996, # Deprecated function call. 1755 4996, # Deprecated function call.
1756 ], 1756 ],
1757 'cflags': [ 1757 'cflags': [
1758 '-Wno-zero-length-array',
1759 '-Wno-deprecated-declarations', 1758 '-Wno-deprecated-declarations',
1760 ], 1759 ],
1761 }], 1760 }],
1762 ['OS=="win" and v8_enable_i18n_support==1', { 1761 ['OS=="win" and v8_enable_i18n_support==1', {
1763 'dependencies': [ 1762 'dependencies': [
1764 '<(icu_gyp_path):icudata', 1763 '<(icu_gyp_path):icudata',
1765 ], 1764 ],
1766 }], 1765 }],
1767 ], 1766 ],
1768 }, 1767 },
(...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after
2447 'conditions': [ 2446 'conditions': [
2448 ['want_separate_host_toolset_mkpeephole==1', { 2447 ['want_separate_host_toolset_mkpeephole==1', {
2449 'toolsets': ['host'], 2448 'toolsets': ['host'],
2450 }, { 2449 }, {
2451 'toolsets': ['target'], 2450 'toolsets': ['target'],
2452 }], 2451 }],
2453 ], 2452 ],
2454 }, 2453 },
2455 ], 2454 ],
2456 } 2455 }
OLDNEW
« no previous file with comments | « src/inspector/Allocator.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698