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

Side by Side Diff: build/toolchain.gypi

Issue 694533003: Add FLAG_trace_maps (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: updates Created 6 years, 1 month 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 | « build/features.gypi ('k') | src/api.cc » ('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 2013 the V8 project authors. All rights reserved. 1 # Copyright 2013 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 834 matching lines...) Expand 10 before | Expand all | Expand 10 after
845 ], 845 ],
846 }, # DebugBase2 846 }, # DebugBase2
847 # Common settings for the Debug configuration. 847 # Common settings for the Debug configuration.
848 'DebugBaseCommon': { 848 'DebugBaseCommon': {
849 'abstract': 1, 849 'abstract': 1,
850 'defines': [ 850 'defines': [
851 'ENABLE_DISASSEMBLER', 851 'ENABLE_DISASSEMBLER',
852 'V8_ENABLE_CHECKS', 852 'V8_ENABLE_CHECKS',
853 'OBJECT_PRINT', 853 'OBJECT_PRINT',
854 'VERIFY_HEAP', 854 'VERIFY_HEAP',
855 'DEBUG' 855 'DEBUG',
856 'TRACE_MAPS'
856 ], 857 ],
857 'conditions': [ 858 'conditions': [
858 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd" or \ 859 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd" or \
859 OS=="qnx"', { 860 OS=="qnx"', {
860 'cflags': [ '-Woverloaded-virtual', '<(wno_array_bounds)', ], 861 'cflags': [ '-Woverloaded-virtual', '<(wno_array_bounds)', ],
861 }], 862 }],
862 ['OS=="linux" and v8_enable_backtrace==1', { 863 ['OS=="linux" and v8_enable_backtrace==1', {
863 # Support for backtrace_symbols. 864 # Support for backtrace_symbols.
864 'ldflags': [ '-rdynamic' ], 865 'ldflags': [ '-rdynamic' ],
865 }], 866 }],
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
972 'OptimizeReferences': '2', 973 'OptimizeReferences': '2',
973 'EnableCOMDATFolding': '2', 974 'EnableCOMDATFolding': '2',
974 }, 975 },
975 }, 976 },
976 }], # OS=="win" 977 }], # OS=="win"
977 ], # conditions 978 ], # conditions
978 }, # Release 979 }, # Release
979 }, # configurations 980 }, # configurations
980 }, # target_defaults 981 }, # target_defaults
981 } 982 }
OLDNEW
« no previous file with comments | « build/features.gypi ('k') | src/api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698