From 9c7b559fb730c57a522abb2956c0036edcd15e63 Mon Sep 17 00:00:00 2001 From: Raphael Moll Date: Fri, 23 Mar 2012 10:26:15 -0700 Subject: [PATCH] SDK source pkg: exclude all /tools/ and /tests/ directories. Change-Id: Ia85105385280e21f073cef22e1130ad369bea121 --- build/tools/mk_sources_zip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/tools/mk_sources_zip.py b/build/tools/mk_sources_zip.py index 4aaa714da..76b5b9e7c 100755 --- a/build/tools/mk_sources_zip.py +++ b/build/tools/mk_sources_zip.py @@ -39,7 +39,7 @@ class Params(object): self.CNT_NOPKG = 0 # DIR is the list of directories to scan in TOPDIR. self.DIR = "frameworks libcore" - self.IGNORE_DIR = [ "hosttests" ] + self.IGNORE_DIR = [ "hosttests" "tools" "tests" ] # IGNORE is a list of namespaces to ignore. Must be java # package definitions (e.g. "com.blah.foo.") self.IGNORE = [ "sun.", "libcore.", "dalvik.",