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

Side by Side Diff: build/common.gypi

Issue 8803024: Optionally export metadata with libv8 to enable debuggers to inspect V8 state. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 years 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 | « no previous file | tools/gen-postmortem-metadata.py » ('j') | tools/gen-postmortem-metadata.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2011 the V8 project authors. All rights reserved. 1 # Copyright 2011 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 'v8_enable_prof%': 0, 74 'v8_enable_prof%': 0,
75 75
76 # Chrome needs this definition unconditionally. For standalone V8 builds, 76 # Chrome needs this definition unconditionally. For standalone V8 builds,
77 # it's handled in build/standalone.gypi. 77 # it's handled in build/standalone.gypi.
78 'want_separate_host_toolset%': 1, 78 'want_separate_host_toolset%': 1,
79 79
80 'v8_use_snapshot%': 'true', 80 'v8_use_snapshot%': 'true',
81 'host_os%': '<(OS)', 81 'host_os%': '<(OS)',
82 'v8_use_liveobjectlist%': 'false', 82 'v8_use_liveobjectlist%': 'false',
83 'werror%': '-Werror', 83 'werror%': '-Werror',
84 'v8_postmortem_support': 'false',
Vyacheslav Egorov (Chromium) 2012/01/17 18:14:58 should not it use % at the end of the name? http:
84 85
85 # For a shared library build, results in "libv8-<(soname_version).so". 86 # For a shared library build, results in "libv8-<(soname_version).so".
86 'soname_version%': '', 87 'soname_version%': '',
87 }, 88 },
88 'target_defaults': { 89 'target_defaults': {
89 'conditions': [ 90 'conditions': [
90 ['v8_enable_debugger_support==1', { 91 ['v8_enable_debugger_support==1', {
91 'defines': ['ENABLE_DEBUGGER_SUPPORT',], 92 'defines': ['ENABLE_DEBUGGER_SUPPORT',],
92 }], 93 }],
93 ['v8_enable_disassembler==1', { 94 ['v8_enable_disassembler==1', {
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 # some test cases can cause stack overflow. 335 # some test cases can cause stack overflow.
335 # 'StackReserveSize': '297152', 336 # 'StackReserveSize': '297152',
336 }, 337 },
337 }, 338 },
338 }], 339 }],
339 ], 340 ],
340 }, 341 },
341 }, 342 },
342 }, 343 },
343 } 344 }
OLDNEW
« no previous file with comments | « no previous file | tools/gen-postmortem-metadata.py » ('j') | tools/gen-postmortem-metadata.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698