| 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 30 matching lines...) Expand all Loading... |
| 41 'feature_defines': [ | 41 'feature_defines': [ |
| 42 'ENABLE_LAYOUT_UNIT_IN_INLINE_BOXES=0', | 42 'ENABLE_LAYOUT_UNIT_IN_INLINE_BOXES=0', |
| 43 'ENABLE_OILPAN=1', | 43 'ENABLE_OILPAN=1', |
| 44 # WTF_USE_DYNAMIC_ANNOTATIONS=1 may be defined in build/common.gypi | 44 # WTF_USE_DYNAMIC_ANNOTATIONS=1 may be defined in build/common.gypi |
| 45 # We can't define it here because it should be present only | 45 # We can't define it here because it should be present only |
| 46 # in Debug or release_valgrind_build=1 builds. | 46 # in Debug or release_valgrind_build=1 builds. |
| 47 ], | 47 ], |
| 48 # We have to nest variables inside variables so that they can be overridden | 48 # We have to nest variables inside variables so that they can be overridden |
| 49 # through GYP_DEFINES. | 49 # through GYP_DEFINES. |
| 50 'variables': { | 50 'variables': { |
| 51 # Enables the Oilpan garbage-collection infrastructure. | |
| 52 # If you update the default value below, be sure to update the one in | |
| 53 # ../config.gyp, too! | |
| 54 'enable_oilpan%': 1, | |
| 55 'blink_logging_always_on%': 0, | 51 'blink_logging_always_on%': 0, |
| 56 }, | 52 }, |
| 57 'conditions': [ | 53 'conditions': [ |
| 58 ['use_concatenated_impulse_responses==1', { | 54 ['use_concatenated_impulse_responses==1', { |
| 59 # Use concatenated HRTF impulse responses | 55 # Use concatenated HRTF impulse responses |
| 60 'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1'], | 56 'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1'], |
| 61 }], | 57 }], |
| 62 ['OS=="android"', { | 58 ['OS=="android"', { |
| 63 'feature_defines': [ | 59 'feature_defines': [ |
| 64 'WTF_USE_LOW_QUALITY_IMAGE_INTERPOLATION=1' | 60 'WTF_USE_LOW_QUALITY_IMAGE_INTERPOLATION=1' |
| (...skipping 21 matching lines...) Expand all Loading... |
| 86 ], | 82 ], |
| 87 }], | 83 }], |
| 88 ['blink_logging_always_on==1', { | 84 ['blink_logging_always_on==1', { |
| 89 'feature_defines': [ | 85 'feature_defines': [ |
| 90 'LOG_DISABLED=0', | 86 'LOG_DISABLED=0', |
| 91 ], | 87 ], |
| 92 }], | 88 }], |
| 93 ], | 89 ], |
| 94 }, | 90 }, |
| 95 } | 91 } |
| OLD | NEW |