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

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

Issue 717923005: Profile FreeList Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | Source/platform/heap/Handle.h » ('j') | Source/platform/heap/Handle.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 # WTF_USE_DYNAMIC_ANNOTATIONS=1 may be defined in build/common.gypi 36 # WTF_USE_DYNAMIC_ANNOTATIONS=1 may be defined in build/common.gypi
37 # We can't define it here because it should be present only 37 # We can't define it here because it should be present only
38 # in Debug or release_valgrind_build=1 builds. 38 # in Debug or release_valgrind_build=1 builds.
39 ], 39 ],
40 # We have to nest variables inside variables so that they can be overridden 40 # We have to nest variables inside variables so that they can be overridden
41 # through GYP_DEFINES. 41 # through GYP_DEFINES.
42 'variables': { 42 'variables': {
43 # Enables the Oilpan garbage-collection infrastructure. 43 # Enables the Oilpan garbage-collection infrastructure.
44 'enable_oilpan%': 0, 44 'enable_oilpan%': 0,
45 'gc_profile_heap%': 0, 45 'gc_profile_heap%': 0,
46 'gc_profile_free_list%': 0,
keishi 2015/01/27 08:59:00 I tried to add a build flag but it is incomplete.
46 'gc_profile_marking%': 0, 47 'gc_profile_marking%': 0,
47 'blink_logging_always_on%': 0, 48 'blink_logging_always_on%': 0,
48 }, 49 },
49 'conditions': [ 50 'conditions': [
50 ['use_concatenated_impulse_responses==1', { 51 ['use_concatenated_impulse_responses==1', {
51 # Use concatenated HRTF impulse responses 52 # Use concatenated HRTF impulse responses
52 'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1'], 53 'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1'],
53 }], 54 }],
54 ['OS!="android"', { 55 ['OS!="android"', {
55 'feature_defines': [ 56 'feature_defines': [
(...skipping 24 matching lines...) Expand all
80 'feature_defines': [ 81 'feature_defines': [
81 'ENABLE_OILPAN=1', 82 'ENABLE_OILPAN=1',
82 ], 83 ],
83 }], 84 }],
84 ['gc_profile_heap==1', { 85 ['gc_profile_heap==1', {
85 'feature_defines': [ 86 'feature_defines': [
86 'ENABLE_GC_PROFILING=1', 87 'ENABLE_GC_PROFILING=1',
87 'ENABLE_GC_PROFILE_HEAP=1', 88 'ENABLE_GC_PROFILE_HEAP=1',
88 ], 89 ],
89 }], 90 }],
91 ['gc_profile_free_list==1', {
92 'feature_defines': [
93 'ENABLE_GC_PROFILING=1',
94 'ENABLE_GC_PROFILE_FREE_LIST=1',
95 ],
96 }],
90 ['gc_profile_marking==1', { 97 ['gc_profile_marking==1', {
91 'feature_defines': [ 98 'feature_defines': [
92 'ENABLE_GC_PROFILING=1', 99 'ENABLE_GC_PROFILING=1',
93 'ENABLE_GC_PROFILE_MARKING=1', 100 'ENABLE_GC_PROFILE_MARKING=1',
94 ], 101 ],
95 }], 102 }],
96 ['blink_logging_always_on==1', { 103 ['blink_logging_always_on==1', {
97 'feature_defines': [ 104 'feature_defines': [
98 'LOG_DISABLED=0', 105 'LOG_DISABLED=0',
99 ], 106 ],
100 }], 107 }],
101 ], 108 ],
102 }, 109 },
103 } 110 }
OLDNEW
« no previous file with comments | « no previous file | Source/platform/heap/Handle.h » ('j') | Source/platform/heap/Handle.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698