Chromium Code Reviews| Index: build/common.gypi |
| diff --git a/build/common.gypi b/build/common.gypi |
| index b0dbfb8ac9fe134b1df5cba55e5a703e85eb3feb..9a72bb7390a66177d0328fe0b159f31f3a19e88d 100644 |
| --- a/build/common.gypi |
| +++ b/build/common.gypi |
| @@ -93,8 +93,8 @@ |
| 'branding%': 'Chromium', |
| 'conditions': [ |
| - # ChromeOS and Windows use Aura and Ash. |
| - ['chromeos==1 or OS=="win" or OS=="linux"', { |
| + # Windows and Linux use Aura and Ash. |
| + ['OS=="win" or OS=="linux"', { |
| 'use_ash%': 1, |
| 'use_aura%': 1, |
| }], |
| @@ -208,8 +208,8 @@ |
| 'toolkit_views%': 0, |
| }], |
| - # Enable HiDPI on Mac OS, Chrome OS, Windows and Linux. |
| - ['OS=="mac" or chromeos==1 or OS=="win" or OS=="linux"', { |
| + # Enable HiDPI on Mac OS, Windows and Linux. |
|
Nico
2015/06/06 08:01:26
nit: I'd leave the old comment
|
| + ['OS=="mac" or OS=="win" or OS=="linux"', { |
| 'enable_hidpi%': 1, |
| }], |