summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2010-09-10 22:00:37 +0100
committerSteve Block <steveblock@google.com>2010-09-28 19:09:59 +0100
commit3978ee5f7771518f1c2650dfe39033c2fecc09fe (patch)
treefe7f375b1a3f3ae651670d289740c2e5257e0da3 /Android.mk
parentcd0967466be49b8ea06b49a79f790e267e1adb66 (diff)
downloadexternal_webkit-3978ee5f7771518f1c2650dfe39033c2fecc09fe.zip
external_webkit-3978ee5f7771518f1c2650dfe39033c2fecc09fe.tar.gz
external_webkit-3978ee5f7771518f1c2650dfe39033c2fecc09fe.tar.bz2
Turn autofill on by default at compile time and make it a browser setting.
Make autofill a runtime option configured through the browser. Required a corresponding change in frameworks/base - https://android-git.corp.google.com/g/65573 and packages/apps/browser - https://android-git.corp.google.com/g/65579 Change-Id: I905b464a6338ff27b02f16d0b9a718154c3c98c1
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/Android.mk b/Android.mk
index 9f6ca13..212f579 100644
--- a/Android.mk
+++ b/Android.mk
@@ -96,11 +96,11 @@ ifeq ($(JAVASCRIPT_ENGINE),jsc)
HTTP_STACK = android
endif
-# Read the environment variable to determine if Autofill is enabled.
-# The default is off. Chrome HTTP stack must be used when Autofill
+# Read the environment variable to determine if Autofill is compiled.
+# The default is on. Chrome HTTP stack must be used when Autofill
# is turned on.
-ifneq ($(ENABLE_AUTOFILL),true)
- ENABLE_AUTOFILL=false
+ifneq ($(ENABLE_AUTOFILL),false)
+ ENABLE_AUTOFILL = true
endif
ifneq ($(HTTP_STACK),chrome)
ENABLE_AUTOFILL = false