blob: b27ce0ebba3a2bd92f2d18f4c06bb1160bc5bd09 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001#
2# Copyright (C) 2008 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16LOCAL_PATH := $(my-dir)
17include $(CLEAR_VARS)
18
19#
20# Define rules to build temp_layoutlib.jar, which contains a subset of
21# the classes in framework.jar. The layoutlib_create tool is used to
22# transform the framework jar into the temp_layoutlib jar.
23#
24
25# We need to process the framework classes.jar file, but we can't
26# depend directly on it (private vars won't be inherited correctly).
27# So, we depend on framework's BUILT file.
Ying Wangc486da42010-09-28 14:33:58 -070028built_framework_dep := $(call java-lib-deps,framework)
29built_framework_classes := $(call java-lib-files,framework)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030
Ying Wangc486da42010-09-28 14:33:58 -070031built_core_dep := $(call java-lib-deps,core)
32built_core_classes := $(call java-lib-files,core)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033
34built_layoutlib_create_jar := $(call intermediates-dir-for, \
35 JAVA_LIBRARIES,layoutlib_create,HOST)/javalib.jar
36
37# This is mostly a copy of config/host_java_library.mk
38LOCAL_MODULE := temp_layoutlib
39LOCAL_MODULE_CLASS := JAVA_LIBRARIES
40LOCAL_MODULE_SUFFIX := $(COMMON_JAVA_PACKAGE_SUFFIX)
41LOCAL_IS_HOST_MODULE := true
42LOCAL_BUILT_MODULE_STEM := javalib.jar
43
44#######################################
45include $(BUILD_SYSTEM)/base_rules.mk
46#######################################
47
48$(LOCAL_BUILT_MODULE): $(built_core_dep) \
49 $(built_framework_dep) \
50 $(built_layoutlib_create_jar)
Joe Onorato80a60ba2010-07-14 19:58:30 -070051 $(hide) echo "host layoutlib_create: $@"
52 $(hide) mkdir -p $(dir $@)
53 $(hide) rm -f $@
54 $(hide) ls -l $(built_framework_classes)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080055 $(hide) java -jar $(built_layoutlib_create_jar) \
56 $@ \
57 $(built_core_classes) \
58 $(built_framework_classes)
Joe Onorato80a60ba2010-07-14 19:58:30 -070059 $(hide) ls -l $(built_framework_classes)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080060
61
62#
63# Include the subdir makefiles.
64#
65include $(call all-makefiles-under,$(LOCAL_PATH))