summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorscottbyer@chromium.org <scottbyer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-23 00:05:39 +0000
committerscottbyer@chromium.org <scottbyer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-23 00:05:39 +0000
commita22ebd8195be28d72b49073cbcaa4d9b750d495d (patch)
tree74435123982cba6c4615403d9bcbdc8857809f5e /build
parent0f1373a184a3a1495b3b3b35387f75f15609f3e1 (diff)
downloadchromium_src-a22ebd8195be28d72b49073cbcaa4d9b750d495d.zip
chromium_src-a22ebd8195be28d72b49073cbcaa4d9b750d495d.tar.gz
chromium_src-a22ebd8195be28d72b49073cbcaa4d9b750d495d.tar.bz2
Linux/CrOS smooth scrolling support - behind a flag.
Add runtime flag to control smooth scrolling. Add compile time flag handling for a GYP_DEFINE (enable_smooth_scrolling=1). BUG=575,61140 TEST=compile still works without the flag. Compiling with the flag works once the WebKit change is landed, and then the flag appears in the about:flags page, and actually turns on that WebKit implementation. Review URL: http://codereview.chromium.org/7034052 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90136 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r--build/common.gypi3
1 files changed, 3 insertions, 0 deletions
diff --git a/build/common.gypi b/build/common.gypi
index 65e6a65..8d70646 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -251,6 +251,9 @@
'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)',
'enable_register_protocol_handler%': '<(enable_register_protocol_handler)',
+ # Smooth scrolling is disabled by default.
+ 'enable_smooth_scrolling%': 0,
+
# The release channel that this build targets. This is used to restrict
# channel-specific build options, like which installer packages to create.
# The default is 'all', which does no channel-specific filtering.