| 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 26 matching lines...) Expand all Loading... |
| 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_marking%': 0, | 46 'gc_profile_marking%': 0, |
| 47 'blink_asserts_always_on%': 0, | |
| 48 'blink_logging_always_on%': 0, | 47 'blink_logging_always_on%': 0, |
| 49 }, | 48 }, |
| 50 'conditions': [ | 49 'conditions': [ |
| 51 ['use_concatenated_impulse_responses==1', { | 50 ['use_concatenated_impulse_responses==1', { |
| 52 # Use concatenated HRTF impulse responses | 51 # Use concatenated HRTF impulse responses |
| 53 'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1'], | 52 'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1'], |
| 54 }], | 53 }], |
| 55 ['OS!="android"', { | 54 ['OS!="android"', { |
| 56 'feature_defines': [ | 55 'feature_defines': [ |
| 57 'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1', | 56 'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1', |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 'ENABLE_GC_PROFILING=1', | 92 'ENABLE_GC_PROFILING=1', |
| 94 'ENABLE_GC_PROFILE_HEAP=1', | 93 'ENABLE_GC_PROFILE_HEAP=1', |
| 95 ], | 94 ], |
| 96 }], | 95 }], |
| 97 ['gc_profile_marking==1', { | 96 ['gc_profile_marking==1', { |
| 98 'feature_defines': [ | 97 'feature_defines': [ |
| 99 'ENABLE_GC_PROFILING=1', | 98 'ENABLE_GC_PROFILING=1', |
| 100 'ENABLE_GC_PROFILE_MARKING=1', | 99 'ENABLE_GC_PROFILE_MARKING=1', |
| 101 ], | 100 ], |
| 102 }], | 101 }], |
| 103 ['blink_asserts_always_on==1', { | |
| 104 'feature_defines': [ | |
| 105 'ENABLE_ASSERT=1', | |
| 106 ], | |
| 107 }], | |
| 108 ['blink_logging_always_on==1', { | 102 ['blink_logging_always_on==1', { |
| 109 'feature_defines': [ | 103 'feature_defines': [ |
| 110 'LOG_DISABLED=0', | 104 'LOG_DISABLED=0', |
| 111 ], | 105 ], |
| 112 }], | 106 }], |
| 113 ], | 107 ], |
| 114 }, | 108 }, |
| 115 } | 109 } |
| OLD | NEW |