Chromium Code Reviews| Index: build/common.gypi |
| =================================================================== |
| --- build/common.gypi (revision 89827) |
| +++ build/common.gypi (working copy) |
| @@ -146,6 +146,13 @@ |
| 'clang_use_chrome_plugins%': 0, |
| 'conditions': [ |
| + # Use Skia as WebKit renderer on Mac |
|
darin (slow to review)
2011/06/21 17:37:44
nit: indentation is off
|
| + ['OS=="mac"', { |
| + 'use_skia%': 0, |
| + }, { |
| + 'use_skia%': 1, |
| + }], |
| + |
| # A flag for POSIX platforms |
| ['OS=="win"', { |
| 'os_posix%': 0, |
| @@ -220,6 +227,7 @@ |
| 'views_compositor%': '<(views_compositor)', |
| 'os_posix%': '<(os_posix)', |
| 'toolkit_uses_gtk%': '<(toolkit_uses_gtk)', |
| + 'use_skia%': '<(use_skia)', |
| 'use_x11%': '<(use_x11)', |
| 'use_gnome_keyring%': '<(use_gnome_keyring)', |
| 'linux_fpic%': '<(linux_fpic)', |
| @@ -731,6 +739,11 @@ |
| 'ENABLE_EGLIMAGE=1', |
| ], |
| }], |
| + ['use_skia==1', { |
| + 'defines': [ |
| + 'USE_SKIA=1', |
| + ], |
| + }], |
| ['coverage!=0', { |
| 'conditions': [ |
| ['OS=="mac"', { |