OLD | NEW |
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 Loading... |
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 'blink_asserts_always_on%': 0, | 48 'blink_asserts_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': [ |
56 'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1', | 57 'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1', |
(...skipping 23 matching lines...) Expand all Loading... |
80 ['use_default_render_theme==1', { | 81 ['use_default_render_theme==1', { |
81 'feature_defines': [ | 82 'feature_defines': [ |
82 'WTF_USE_DEFAULT_RENDER_THEME=1', | 83 'WTF_USE_DEFAULT_RENDER_THEME=1', |
83 ], | 84 ], |
84 }], | 85 }], |
85 ['enable_oilpan==1', { | 86 ['enable_oilpan==1', { |
86 'feature_defines': [ | 87 'feature_defines': [ |
87 'ENABLE_OILPAN=1', | 88 'ENABLE_OILPAN=1', |
88 ], | 89 ], |
89 }], | 90 }], |
90 ['gc_tracing==1', { | 91 ['gc_profile_heap==1', { |
91 'feature_defines': [ | 92 'feature_defines': [ |
92 'ENABLE_GC_TRACING=1', | 93 'ENABLE_GC_PROFILING=1', |
| 94 'ENABLE_GC_PROFILE_HEAP=1', |
| 95 ], |
| 96 }], |
| 97 ['gc_profile_marking==1', { |
| 98 'feature_defines': [ |
| 99 'ENABLE_GC_PROFILING=1', |
| 100 'ENABLE_GC_PROFILE_MARKING=1', |
93 ], | 101 ], |
94 }], | 102 }], |
95 ['blink_asserts_always_on==1', { | 103 ['blink_asserts_always_on==1', { |
96 'feature_defines': [ | 104 'feature_defines': [ |
97 'ENABLE_ASSERT=1', | 105 'ENABLE_ASSERT=1', |
98 ], | 106 ], |
99 }], | 107 }], |
100 ], | 108 ], |
101 }, | 109 }, |
102 } | 110 } |
OLD | NEW |