| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1'], | 53 'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1'], |
| 54 }], | 54 }], |
| 55 ['OS=="android"', { | 55 ['OS=="android"', { |
| 56 'feature_defines': [ | 56 'feature_defines': [ |
| 57 'ENABLE_FAST_MOBILE_SCROLLING=1', | 57 'ENABLE_FAST_MOBILE_SCROLLING=1', |
| 58 'ENABLE_INPUT_SPEECH=0', | 58 'ENABLE_INPUT_SPEECH=0', |
| 59 'ENABLE_LEGACY_NOTIFICATIONS=0', | 59 'ENABLE_LEGACY_NOTIFICATIONS=0', |
| 60 'ENABLE_MEDIA_CAPTURE=1', | 60 'ENABLE_MEDIA_CAPTURE=1', |
| 61 'ENABLE_ORIENTATION_EVENTS=1', | 61 'ENABLE_ORIENTATION_EVENTS=1', |
| 62 'ENABLE_TOUCH_ICON_LOADING=1', | 62 'ENABLE_TOUCH_ICON_LOADING=1', |
| 63 'ENABLE_NAVIGATOR_CONTENT_UTILS=0', | |
| 64 ], | 63 ], |
| 65 }, { # OS!="android" | 64 }, { # OS!="android" |
| 66 'feature_defines': [ | 65 'feature_defines': [ |
| 67 'ENABLE_INPUT_SPEECH=1', | 66 'ENABLE_INPUT_SPEECH=1', |
| 68 'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1', | 67 'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1', |
| 69 'ENABLE_LEGACY_NOTIFICATIONS=1', | 68 'ENABLE_LEGACY_NOTIFICATIONS=1', |
| 70 'ENABLE_MEDIA_CAPTURE=0', | 69 'ENABLE_MEDIA_CAPTURE=0', |
| 71 'ENABLE_NAVIGATOR_CONTENT_UTILS=1', | |
| 72 'ENABLE_ORIENTATION_EVENTS=0', | 70 'ENABLE_ORIENTATION_EVENTS=0', |
| 73 'ENABLE_WEB_AUDIO=1', | 71 'ENABLE_WEB_AUDIO=1', |
| 74 ], | 72 ], |
| 75 }], | 73 }], |
| 76 # Mac OS X uses Accelerate.framework FFT by default instead of FFmpeg. | 74 # Mac OS X uses Accelerate.framework FFT by default instead of FFmpeg. |
| 77 ['OS!="mac" and OS!="android"', { | 75 ['OS!="mac" and OS!="android"', { |
| 78 'feature_defines': [ | 76 'feature_defines': [ |
| 79 'WTF_USE_WEBAUDIO_FFMPEG=1', | 77 'WTF_USE_WEBAUDIO_FFMPEG=1', |
| 80 ], | 78 ], |
| 81 }], | 79 }], |
| (...skipping 17 matching lines...) Expand all Loading... |
| 99 ], | 97 ], |
| 100 }], | 98 }], |
| 101 ['enable_oilpan==1', { | 99 ['enable_oilpan==1', { |
| 102 'feature_defines': [ | 100 'feature_defines': [ |
| 103 'ENABLE_OILPAN=1', | 101 'ENABLE_OILPAN=1', |
| 104 ], | 102 ], |
| 105 }], | 103 }], |
| 106 ], | 104 ], |
| 107 }, | 105 }, |
| 108 } | 106 } |
| OLD | NEW |