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

Side by Side Diff: Source/build/features.gypi

Issue 383743002: Oilpan: GC profiling. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: TracedValue contexts Created 6 years, 5 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 | Source/platform/TraceEvent.h » ('j') | Source/platform/heap/Heap.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # 1 #
2 # Copyright (C) 2009 Google Inc. All rights reserved. 2 # Copyright (C) 2009 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 25 matching lines...) Expand all
36 'ENABLE_SVG_FONTS=1', 36 'ENABLE_SVG_FONTS=1',
37 # WTF_USE_DYNAMIC_ANNOTATIONS=1 may be defined in build/common.gypi 37 # WTF_USE_DYNAMIC_ANNOTATIONS=1 may be defined in build/common.gypi
38 # We can't define it here because it should be present only 38 # We can't define it here because it should be present only
39 # in Debug or release_valgrind_build=1 builds. 39 # in Debug or release_valgrind_build=1 builds.
40 ], 40 ],
41 # We have to nest variables inside variables so that they can be overridden 41 # We have to nest variables inside variables so that they can be overridden
42 # through GYP_DEFINES. 42 # through GYP_DEFINES.
43 'variables': { 43 'variables': {
44 # Enables the Oilpan garbage-collection infrastructure. 44 # Enables the Oilpan garbage-collection infrastructure.
45 'enable_oilpan%': 0, 45 'enable_oilpan%': 0,
46 'gc_tracing%': 0 46 'gc_profile_heap%': 0,
47 'gc_profile_marking%': 0
47 }, 48 },
48 'conditions': [ 49 'conditions': [
49 ['use_concatenated_impulse_responses==1', { 50 ['use_concatenated_impulse_responses==1', {
50 # Use concatenated HRTF impulse responses 51 # Use concatenated HRTF impulse responses
51 'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1'], 52 'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1'],
52 }], 53 }],
53 ['OS!="android"', { 54 ['OS!="android"', {
54 'feature_defines': [ 55 'feature_defines': [
55 'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1', 56 'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1',
56 'ENABLE_WEB_AUDIO=1' 57 'ENABLE_WEB_AUDIO=1'
(...skipping 22 matching lines...) Expand all
79 ['use_default_render_theme==1', { 80 ['use_default_render_theme==1', {
80 'feature_defines': [ 81 'feature_defines': [
81 'WTF_USE_DEFAULT_RENDER_THEME=1', 82 'WTF_USE_DEFAULT_RENDER_THEME=1',
82 ], 83 ],
83 }], 84 }],
84 ['enable_oilpan==1', { 85 ['enable_oilpan==1', {
85 'feature_defines': [ 86 'feature_defines': [
86 'ENABLE_OILPAN=1', 87 'ENABLE_OILPAN=1',
87 ], 88 ],
88 }], 89 }],
89 ['gc_tracing==1', { 90 ['gc_profile_heap==1', {
90 'feature_defines': [ 91 'feature_defines': [
91 'ENABLE_GC_TRACING=1', 92 'ENABLE_GC_PROFILING=1',
93 'ENABLE_GC_PROFILING_HEAP=1',
haraken 2014/07/14 02:26:14 Given that we use ENABLE_OILPAN, shall we use ENAB
zerny-chromium 2014/07/28 11:54:41 I don't think so. Oilpan is the project code name
94 ],
95 }],
96 ['gc_profile_marking==1', {
97 'feature_defines': [
98 'ENABLE_GC_PROFILING=1',
99 'ENABLE_GC_PROFILING_MARKING=1',
92 ], 100 ],
93 }], 101 }],
94 ], 102 ],
95 }, 103 },
96 } 104 }
OLDNEW
« no previous file with comments | « no previous file | Source/platform/TraceEvent.h » ('j') | Source/platform/heap/Heap.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698