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

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 8 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | tools/gen-postmortem-metadata.py » ('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 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 78
79 # Chrome needs this definition unconditionally. For standalone V8 builds, 79 # Chrome needs this definition unconditionally. For standalone V8 builds,
80 # it's handled in build/standalone.gypi. 80 # it's handled in build/standalone.gypi.
81 'want_separate_host_toolset%': 1, 81 'want_separate_host_toolset%': 1,
82 82
83 'v8_use_snapshot%': 'true', 83 'v8_use_snapshot%': 'true',
84 'host_os%': '<(OS)', 84 'host_os%': '<(OS)',
85 'v8_use_liveobjectlist%': 'false', 85 'v8_use_liveobjectlist%': 'false',
86 'werror%': '-Werror', 86 'werror%': '-Werror',
87 87
88 # With post mortem support enabled, metadata is embedded into libv8 that
89 # describes various parameters of the VM for use by debuggers. See
90 # tools/gen-postmortem-metadata.py for details.
91 'v8_postmortem_support%': 'false',
92
88 # For a shared library build, results in "libv8-<(soname_version).so". 93 # For a shared library build, results in "libv8-<(soname_version).so".
89 'soname_version%': '', 94 'soname_version%': '',
90 }, 95 },
91 'target_defaults': { 96 'target_defaults': {
92 'conditions': [ 97 'conditions': [
93 ['v8_enable_debugger_support==1', { 98 ['v8_enable_debugger_support==1', {
94 'defines': ['ENABLE_DEBUGGER_SUPPORT',], 99 'defines': ['ENABLE_DEBUGGER_SUPPORT',],
95 }], 100 }],
96 ['v8_enable_disassembler==1', { 101 ['v8_enable_disassembler==1', {
97 'defines': ['ENABLE_DISASSEMBLER',], 102 'defines': ['ENABLE_DISASSEMBLER',],
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 # some test cases can cause stack overflow. 358 # some test cases can cause stack overflow.
354 # 'StackReserveSize': '297152', 359 # 'StackReserveSize': '297152',
355 }, 360 },
356 }, 361 },
357 }], # OS=="win" 362 }], # OS=="win"
358 ], # conditions 363 ], # conditions
359 }, # Release 364 }, # Release
360 }, # configurations 365 }, # configurations
361 }, # target_defaults 366 }, # target_defaults
362 } 367 }
OLDNEW
« no previous file with comments | « no previous file | tools/gen-postmortem-metadata.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698