| 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 'public_feature_defines': [ | 41 'public_feature_defines': [ |
| 42 ], | 42 ], |
| 43 | 43 |
| 44 # We have to nest variables inside variables so that they can be overridden | 44 # We have to nest variables inside variables so that they can be overridden |
| 45 # through GYP_DEFINES. | 45 # through GYP_DEFINES. |
| 46 'variables': { | 46 'variables': { |
| 47 # Enables the Oilpan garbage-collection infrastructure. | 47 # Enables the Oilpan garbage-collection infrastructure. |
| 48 'enable_oilpan%': 0, | 48 'enable_oilpan%': 0, |
| 49 'blink_gc_profiling%': 0, | 49 'blink_gc_profiling%': 0, |
| 50 'blink_logging_always_on%': 0, | 50 'blink_logging_always_on%': 0, |
| 51 'link_core_modules_separately%': 0, |
| 51 }, | 52 }, |
| 52 'conditions': [ | 53 'conditions': [ |
| 53 ['use_concatenated_impulse_responses==1', { | 54 ['use_concatenated_impulse_responses==1', { |
| 54 # Use concatenated HRTF impulse responses | 55 # Use concatenated HRTF impulse responses |
| 55 'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1'], | 56 'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1'], |
| 56 }], | 57 }], |
| 57 ['OS!="android"', { | 58 ['OS!="android"', { |
| 58 'feature_defines': [ | 59 'feature_defines': [ |
| 59 'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1', | 60 'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1', |
| 60 'ENABLE_WEB_AUDIO=1' | 61 'ENABLE_WEB_AUDIO=1' |
| (...skipping 26 matching lines...) Expand all Loading... |
| 87 ['blink_gc_profiling==1', { | 88 ['blink_gc_profiling==1', { |
| 88 'feature_defines': [ | 89 'feature_defines': [ |
| 89 'ENABLE_GC_PROFILING=1', | 90 'ENABLE_GC_PROFILING=1', |
| 90 ], | 91 ], |
| 91 }], | 92 }], |
| 92 ['blink_logging_always_on==1', { | 93 ['blink_logging_always_on==1', { |
| 93 'feature_defines': [ | 94 'feature_defines': [ |
| 94 'LOG_DISABLED=0', | 95 'LOG_DISABLED=0', |
| 95 ], | 96 ], |
| 96 }], | 97 }], |
| 98 ['link_core_modules_separately==1', { |
| 99 'feature_defines': [ |
| 100 'LINK_CORE_MODULES_SEPARATELY', |
| 101 ], |
| 102 }], |
| 97 ], | 103 ], |
| 104 |
| 105 # shared build only. If set to 1, link web, core and modules separately. |
| 106 'link_core_modules_separately%': '<(link_core_modules_separately)', |
| 98 }, | 107 }, |
| 99 } | 108 } |
| OLD | NEW |