diff options
author | scottbyer@chromium.org <scottbyer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-03 03:09:40 +0000 |
---|---|---|
committer | scottbyer@chromium.org <scottbyer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-03 03:09:40 +0000 |
commit | 554b706e0965c98c56dc08442a8bfa8144e79798 (patch) | |
tree | bc5b151970b3b8bc9a7f0546709ae0ed1197bb92 /build/common.gypi | |
parent | 4394f2bd350d8b65188e98f0227a706a0d327947 (diff) | |
download | chromium_src-554b706e0965c98c56dc08442a8bfa8144e79798.zip chromium_src-554b706e0965c98c56dc08442a8bfa8144e79798.tar.gz chromium_src-554b706e0965c98c56dc08442a8bfa8144e79798.tar.bz2 |
Smooth scrolling
Smooth scrolling compiled in behind a flag on Windows.
BUG=61140
TEST=build chrome, launch, check about:flags for Smooth Scrolling
Review URL: http://codereview.chromium.org/7832013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99525 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/common.gypi')
-rw-r--r-- | build/common.gypi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/common.gypi b/build/common.gypi index abba390..007b908 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -277,8 +277,8 @@ 'webui_task_manager%': 0, }], - # Enable smooth scrolling for Mac, Linux and ChromeOS - ['OS=="linux" or OS=="mac"', { + # Enable smooth scrolling for Mac, Win, Linux and ChromeOS + ['OS=="linux" or OS=="mac" or OS=="win"', { 'enable_smooth_scrolling%': 1, }, { 'enable_smooth_scrolling%': 0, |