Chromium Code Reviews| Index: build/common.gypi |
| diff --git a/build/common.gypi b/build/common.gypi |
| index 0be30b81f7c3fbd1c0f8ce4d120c0b4377ed1cc1..5089a064f3a0c65f8109a882d54135a590b5d9aa 100644 |
| --- a/build/common.gypi |
| +++ b/build/common.gypi |
| @@ -160,8 +160,9 @@ |
| 'enable_touch_ui%': 1, |
| }], |
| - # Enable App Launcher only on ChromeOS, Windows and OSX. |
| - ['use_ash==1 or OS=="win" or OS=="mac"', { |
| + # Enable App Launcher on ChromeOS, Windows and OSX. |
| + # On Linux, enable App Launcher for the Aura build. |
| + ['use_ash==1 or OS=="win" or OS=="mac" or ((OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris") and use_aura==1)', { |
|
tapted
2013/09/26 23:51:18
The minimal change for this might be simply to cha
Matt Giuca
2013/09/27 05:57:40
This doesn't seem quite right, as discussed: Aura
|
| 'enable_app_list%': 1, |
| }, { |
| 'enable_app_list%': 0, |