OSDN Git Service

allow prebuilts to specify LOCAL_CERTIFICATE so they can be resigned
[android-x86/build.git] / buildspec.mk.default
index 303ebd2..861bb0d 100644 (file)
@@ -16,7 +16,7 @@
 
 ######################################################################
 # This is a do-nothing template file.  To use it, copy it to a file
-# named "buildspec.mk" in the same directory, and uncomment or change
+# named "buildspec.mk" in the root directory, and uncomment or change
 # the variables necessary for your desired configuration.  The file
 # "buildspec.mk" should never be checked in to source control.
 ######################################################################
@@ -53,7 +53,7 @@ endif
 # Choose a product to build for.  Look in the products directory for ones
 # that work.
 ifndef TARGET_PRODUCT
-#TARGET_PRODUCT:=sooner
+#TARGET_PRODUCT:=generic
 endif
 
 # Choose additional targets to always install, even when building
@@ -65,6 +65,14 @@ ifndef CUSTOM_MODULES
 #CUSTOM_MODULES:=
 endif
 
+# Choose additional locales, like "en_US" or "it_IT", to add to any
+# built product.  Any locales that appear in CUSTOM_LOCALES but not in
+# the locale list for the selected product will be added to the end
+# of PRODUCT_LOCALES.
+ifndef CUSTOM_LOCALES
+#CUSTOM_LOCALES:=
+endif
+
 # If you have a special place to put your ouput files, set this, otherwise
 # it goes to <build-root>/out
 #OUT_DIR:=/tmp/stuff
@@ -74,8 +82,19 @@ endif
 # This mechanism does not currently support values containing spaces.
 #ADDITIONAL_BUILD_PROPERTIES +=
 
+# If you want to reduce the system.img size by several meg, and are willing to
+# lose access to CJK (and other) character sets, define NO_FALLBACK_FONT:=true
+ifndef NO_FALLBACK_FONT
+#NO_FALLBACK_FONT:=true
+endif
+
+# To enabled instrumentation in webcore based apps like gmail and
+# the browser, define WEBCORE_INSTRUMENTATION:=true
+#WEBCORE_INSTRUMENTATION:=true
+#endif
+
 # when the build system changes such that this file must be updated, this
 # variable will be changed.  After you have modified this file with the new
 # changes (see buildspec.mk.default), update this to the new value from
 # buildspec.mk.default.
-BUILD_ENV_SEQUENCE_NUMBER := 8
+BUILD_ENV_SEQUENCE_NUMBER := 9