| 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 22 matching lines...) Expand all Loading... |
| 33 # | 33 # |
| 34 # ==================================== | 34 # ==================================== |
| 35 # | 35 # |
| 36 # Keep the GN version in Sync: | 36 # Keep the GN version in Sync: |
| 37 # Source/config.gni | 37 # Source/config.gni |
| 38 # | 38 # |
| 39 # ==================================== | 39 # ==================================== |
| 40 'variables': { | 40 'variables': { |
| 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 # 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 |
| 44 # 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 |
| 45 # in Debug or release_valgrind_build=1 builds. | 46 # in Debug or release_valgrind_build=1 builds. |
| 46 ], | 47 ], |
| 47 # 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 |
| 48 # through GYP_DEFINES. | 49 # through GYP_DEFINES. |
| 49 'variables': { | 50 'variables': { |
| 50 # Enables the Oilpan garbage-collection infrastructure. | 51 # Enables the Oilpan garbage-collection infrastructure. |
| 51 # If you update the default value below, be sure to update the one in | 52 # If you update the default value below, be sure to update the one in |
| 52 # ../config.gyp, too! | 53 # ../config.gyp, too! |
| (...skipping 25 matching lines...) Expand all Loading... |
| 78 ['OS=="android" and use_openmax_dl_fft!=0', { | 79 ['OS=="android" and use_openmax_dl_fft!=0', { |
| 79 'feature_defines': [ | 80 'feature_defines': [ |
| 80 'WTF_USE_WEBAUDIO_OPENMAX_DL_FFT=1', | 81 'WTF_USE_WEBAUDIO_OPENMAX_DL_FFT=1', |
| 81 ], | 82 ], |
| 82 }], | 83 }], |
| 83 ['use_default_render_theme==1', { | 84 ['use_default_render_theme==1', { |
| 84 'feature_defines': [ | 85 'feature_defines': [ |
| 85 'WTF_USE_DEFAULT_RENDER_THEME=1', | 86 'WTF_USE_DEFAULT_RENDER_THEME=1', |
| 86 ], | 87 ], |
| 87 }], | 88 }], |
| 88 ['enable_oilpan==1', { | |
| 89 'feature_defines': [ | |
| 90 'ENABLE_OILPAN=1', | |
| 91 ], | |
| 92 }], | |
| 93 ['blink_logging_always_on==1', { | 89 ['blink_logging_always_on==1', { |
| 94 'feature_defines': [ | 90 'feature_defines': [ |
| 95 'LOG_DISABLED=0', | 91 'LOG_DISABLED=0', |
| 96 ], | 92 ], |
| 97 }], | 93 }], |
| 98 ], | 94 ], |
| 99 }, | 95 }, |
| 100 } | 96 } |
| OLD | NEW |