| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 # We can't define it here because it should be present only | 44 # We can't define it here because it should be present only |
| 45 # in Debug or release_valgrind_build=1 builds. | 45 # in Debug or release_valgrind_build=1 builds. |
| 46 ], | 46 ], |
| 47 # We have to nest variables inside variables so that they can be overridden | 47 # We have to nest variables inside variables so that they can be overridden |
| 48 # through GYP_DEFINES. | 48 # through GYP_DEFINES. |
| 49 'variables': { | 49 'variables': { |
| 50 # Enables the Oilpan garbage-collection infrastructure. | 50 # Enables the Oilpan garbage-collection infrastructure. |
| 51 'enable_oilpan%': 0, | 51 'enable_oilpan%': 0, |
| 52 'blink_gc_profiling%': 0, | 52 'blink_gc_profiling%': 0, |
| 53 'blink_logging_always_on%': 0, | 53 'blink_logging_always_on%': 0, |
| 54 'link_core_modules_separately%': 1, | 54 'link_core_modules_separately%': 0, |
| 55 }, | 55 }, |
| 56 'conditions': [ | 56 'conditions': [ |
| 57 ['use_concatenated_impulse_responses==1', { | 57 ['use_concatenated_impulse_responses==1', { |
| 58 # Use concatenated HRTF impulse responses | 58 # Use concatenated HRTF impulse responses |
| 59 'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1'], | 59 'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1'], |
| 60 }], | 60 }], |
| 61 ['OS!="android"', { | 61 ['OS!="android"', { |
| 62 'feature_defines': [ | 62 'feature_defines': [ |
| 63 'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1', | 63 'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1', |
| 64 'ENABLE_WEB_AUDIO=1' | 64 'ENABLE_WEB_AUDIO=1' |
| (...skipping 28 matching lines...) Expand all Loading... |
| 93 ['blink_gc_profiling==1', { | 93 ['blink_gc_profiling==1', { |
| 94 'feature_defines': [ | 94 'feature_defines': [ |
| 95 'ENABLE_GC_PROFILING=1', | 95 'ENABLE_GC_PROFILING=1', |
| 96 ], | 96 ], |
| 97 }], | 97 }], |
| 98 ['blink_logging_always_on==1', { | 98 ['blink_logging_always_on==1', { |
| 99 'feature_defines': [ | 99 'feature_defines': [ |
| 100 'LOG_DISABLED=0', | 100 'LOG_DISABLED=0', |
| 101 ], | 101 ], |
| 102 }], | 102 }], |
| 103 ['component=="shared_library" and link_core_modules_separately==1', { | 103 ['link_core_modules_separately==1', { |
| 104 'feature_defines': [ | 104 'feature_defines': [ |
| 105 'LINK_CORE_MODULES_SEPARATELY', | 105 'LINK_CORE_MODULES_SEPARATELY', |
| 106 ], | 106 ], |
| 107 }], | 107 }], |
| 108 ], | 108 ], |
| 109 | 109 |
| 110 # shared build only. If set to 1, link web, core and modules separately. | 110 # shared build only. If set to 1, link web, core and modules separately. |
| 111 'link_core_modules_separately%': '<(link_core_modules_separately)', | 111 'link_core_modules_separately%': '<(link_core_modules_separately)', |
| 112 }, | 112 }, |
| 113 } | 113 } |
| OLD | NEW |