| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 'feature_defines': [ | 64 'feature_defines': [ |
| 65 'WTF_USE_LOW_QUALITY_IMAGE_INTERPOLATION=1' | 65 'WTF_USE_LOW_QUALITY_IMAGE_INTERPOLATION=1' |
| 66 ], | 66 ], |
| 67 }, { # OS!=android | 67 }, { # OS!=android |
| 68 'feature_defines': [ | 68 'feature_defines': [ |
| 69 'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1', | 69 'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1', |
| 70 'WTF_USE_ICCJPEG=1', | 70 'WTF_USE_ICCJPEG=1', |
| 71 'WTF_USE_QCMSLIB=1' | 71 'WTF_USE_QCMSLIB=1' |
| 72 ], | 72 ], |
| 73 }], | 73 }], |
| 74 ['OS=="mac"', { | |
| 75 'feature_defines': [ | |
| 76 'WTF_USE_NEW_THEME=1' | |
| 77 ], | |
| 78 }], | |
| 79 # 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. |
| 80 ['OS!="mac" and OS!="android"', { | 75 ['OS!="mac" and OS!="android"', { |
| 81 'feature_defines': [ | 76 'feature_defines': [ |
| 82 'WTF_USE_WEBAUDIO_FFMPEG=1', | 77 'WTF_USE_WEBAUDIO_FFMPEG=1', |
| 83 ], | 78 ], |
| 84 }], | 79 }], |
| 85 ['OS=="android" and use_openmax_dl_fft!=0', { | 80 ['OS=="android" and use_openmax_dl_fft!=0', { |
| 86 'feature_defines': [ | 81 'feature_defines': [ |
| 87 'WTF_USE_WEBAUDIO_OPENMAX_DL_FFT=1', | 82 'WTF_USE_WEBAUDIO_OPENMAX_DL_FFT=1', |
| 88 ], | 83 ], |
| (...skipping 22 matching lines...) Expand all Loading... |
| 111 'feature_defines': [ | 106 'feature_defines': [ |
| 112 'LINK_CORE_MODULES_SEPARATELY', | 107 'LINK_CORE_MODULES_SEPARATELY', |
| 113 ], | 108 ], |
| 114 }], | 109 }], |
| 115 ], | 110 ], |
| 116 | 111 |
| 117 # shared build only. If set to 1, link web, core and modules separately. | 112 # shared build only. If set to 1, link web, core and modules separately. |
| 118 'link_core_modules_separately%': '<(link_core_modules_separately)', | 113 'link_core_modules_separately%': '<(link_core_modules_separately)', |
| 119 }, | 114 }, |
| 120 } | 115 } |
| OLD | NEW |