| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 'feature_defines': [ | 63 'feature_defines': [ |
| 64 'WTF_USE_LOW_QUALITY_IMAGE_INTERPOLATION=1' | 64 'WTF_USE_LOW_QUALITY_IMAGE_INTERPOLATION=1' |
| 65 ], | 65 ], |
| 66 }, { # OS!=android | 66 }, { # OS!=android |
| 67 'feature_defines': [ | 67 'feature_defines': [ |
| 68 'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1', | 68 'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1', |
| 69 'WTF_USE_ICCJPEG=1', | 69 'WTF_USE_ICCJPEG=1', |
| 70 'WTF_USE_QCMSLIB=1' | 70 'WTF_USE_QCMSLIB=1' |
| 71 ], | 71 ], |
| 72 }], | 72 }], |
| 73 ['OS=="mac"', { | |
| 74 'feature_defines': [ | |
| 75 'WTF_USE_NEW_THEME=1' | |
| 76 ], | |
| 77 }], | |
| 78 # Mac OS X uses Accelerate.framework FFT by default instead of FFmpeg. | 73 # Mac OS X uses Accelerate.framework FFT by default instead of FFmpeg. |
| 79 ['OS!="mac" and OS!="android"', { | 74 ['OS!="mac" and OS!="android"', { |
| 80 'feature_defines': [ | 75 'feature_defines': [ |
| 81 'WTF_USE_WEBAUDIO_FFMPEG=1', | 76 'WTF_USE_WEBAUDIO_FFMPEG=1', |
| 82 ], | 77 ], |
| 83 }], | 78 }], |
| 84 ['OS=="android" and use_openmax_dl_fft!=0', { | 79 ['OS=="android" and use_openmax_dl_fft!=0', { |
| 85 'feature_defines': [ | 80 'feature_defines': [ |
| 86 'WTF_USE_WEBAUDIO_OPENMAX_DL_FFT=1', | 81 'WTF_USE_WEBAUDIO_OPENMAX_DL_FFT=1', |
| 87 ], | 82 ], |
| (...skipping 17 matching lines...) Expand all Loading... |
| 105 'feature_defines': [ | 100 'feature_defines': [ |
| 106 'LINK_CORE_MODULES_SEPARATELY', | 101 'LINK_CORE_MODULES_SEPARATELY', |
| 107 ], | 102 ], |
| 108 }], | 103 }], |
| 109 ], | 104 ], |
| 110 | 105 |
| 111 # shared build only. If set to 1, link web, core and modules separately. | 106 # shared build only. If set to 1, link web, core and modules separately. |
| 112 'link_core_modules_separately%': '<(link_core_modules_separately)', | 107 'link_core_modules_separately%': '<(link_core_modules_separately)', |
| 113 }, | 108 }, |
| 114 } | 109 } |
| OLD | NEW |