| 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 29 matching lines...) Expand all Loading... |
| 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_logging_always_on%': 0, | 47 'blink_logging_always_on%': 0, |
| 48 }, | 48 }, |
| 49 'conditions': [ | 49 'conditions': [ |
| 50 ['arm_neon == 1', { |
| 51 'feature_defines': [ |
| 52 'WTF_CPU_ARM_NEON', |
| 53 ], |
| 54 }], |
| 55 ['arm_neon_optional == 1 and (OS=="linux" or OS=="android")', { |
| 56 'feature_defines': [ |
| 57 'WTF_CPU_ARM_NEON_OPTIONAL', |
| 58 ], |
| 59 }], |
| 50 ['use_concatenated_impulse_responses==1', { | 60 ['use_concatenated_impulse_responses==1', { |
| 51 # Use concatenated HRTF impulse responses | 61 # Use concatenated HRTF impulse responses |
| 52 'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1'], | 62 'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1'], |
| 53 }], | 63 }], |
| 54 ['OS!="android"', { | 64 ['OS!="android"', { |
| 55 'feature_defines': [ | 65 'feature_defines': [ |
| 56 'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1', | 66 'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1', |
| 57 'ENABLE_WEB_AUDIO=1' | 67 'ENABLE_WEB_AUDIO=1' |
| 58 ], | 68 ], |
| 59 }], | 69 }], |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 ], | 104 ], |
| 95 }], | 105 }], |
| 96 ['blink_logging_always_on==1', { | 106 ['blink_logging_always_on==1', { |
| 97 'feature_defines': [ | 107 'feature_defines': [ |
| 98 'LOG_DISABLED=0', | 108 'LOG_DISABLED=0', |
| 99 ], | 109 ], |
| 100 }], | 110 }], |
| 101 ], | 111 ], |
| 102 }, | 112 }, |
| 103 } | 113 } |
| OLD | NEW |