| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 }, | 47 }, |
| 48 'conditions': [ | 48 'conditions': [ |
| 49 ['use_concatenated_impulse_responses==1', { | 49 ['use_concatenated_impulse_responses==1', { |
| 50 # Use concatenated HRTF impulse responses | 50 # Use concatenated HRTF impulse responses |
| 51 'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1'], | 51 'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1'], |
| 52 }], | 52 }], |
| 53 ['OS=="android"', { | 53 ['OS=="android"', { |
| 54 'feature_defines': [ | 54 'feature_defines': [ |
| 55 'ENABLE_FAST_MOBILE_SCROLLING=1', | 55 'ENABLE_FAST_MOBILE_SCROLLING=1', |
| 56 'ENABLE_INPUT_SPEECH=0', | 56 'ENABLE_INPUT_SPEECH=0', |
| 57 'ENABLE_LEGACY_NOTIFICATIONS=0', | |
| 58 'ENABLE_MEDIA_CAPTURE=1' | 57 'ENABLE_MEDIA_CAPTURE=1' |
| 59 ], | 58 ], |
| 60 }, { # OS!="android" | 59 }, { # OS!="android" |
| 61 'feature_defines': [ | 60 'feature_defines': [ |
| 62 'ENABLE_INPUT_SPEECH=1', | 61 'ENABLE_INPUT_SPEECH=1', |
| 63 'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1', | 62 'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1', |
| 64 'ENABLE_LEGACY_NOTIFICATIONS=1', | |
| 65 'ENABLE_MEDIA_CAPTURE=0', | 63 'ENABLE_MEDIA_CAPTURE=0', |
| 66 'ENABLE_WEB_AUDIO=1' | 64 'ENABLE_WEB_AUDIO=1' |
| 67 ], | 65 ], |
| 68 }], | 66 }], |
| 69 # Mac OS X uses Accelerate.framework FFT by default instead of FFmpeg. | 67 # Mac OS X uses Accelerate.framework FFT by default instead of FFmpeg. |
| 70 ['OS!="mac" and OS!="android"', { | 68 ['OS!="mac" and OS!="android"', { |
| 71 'feature_defines': [ | 69 'feature_defines': [ |
| 72 'WTF_USE_WEBAUDIO_FFMPEG=1', | 70 'WTF_USE_WEBAUDIO_FFMPEG=1', |
| 73 ], | 71 ], |
| 74 }], | 72 }], |
| (...skipping 17 matching lines...) Expand all Loading... |
| 92 ], | 90 ], |
| 93 }], | 91 }], |
| 94 ['enable_oilpan==1', { | 92 ['enable_oilpan==1', { |
| 95 'feature_defines': [ | 93 'feature_defines': [ |
| 96 'ENABLE_OILPAN=1', | 94 'ENABLE_OILPAN=1', |
| 97 ], | 95 ], |
| 98 }], | 96 }], |
| 99 ], | 97 ], |
| 100 }, | 98 }, |
| 101 } | 99 } |
| OLD | NEW |