blob: 79f8a1f18434a136dfcf30ae7a2a6413edd97af3 [file] [log] [blame]
Jason Monk602b2322013-07-03 17:04:33 -04001#
2# Copyright (C) 2010 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#
16
17LOCAL_PATH := $(call my-dir)
18
19include $(CLEAR_VARS)
20
Jason Monk602b2322013-07-03 17:04:33 -040021LOCAL_MODULE_TAGS := optional
22
Jason Monk9ced3cd2013-08-12 16:42:38 -040023LOCAL_SRC_FILES := $(call all-java-files-under, src)
Jason Monk602b2322013-07-03 17:04:33 -040024
Jason Monk9ced3cd2013-08-12 16:42:38 -040025LOCAL_PACKAGE_NAME := PacProcessor
26LOCAL_CERTIFICATE := platform
27
Ying Wang56f43242014-04-17 18:14:50 -070028LOCAL_JNI_SHARED_LIBRARIES := libjni_pacprocessor
Jason Monk9ced3cd2013-08-12 16:42:38 -040029
Andreas Gampef8749202014-04-18 16:10:25 -070030LOCAL_MULTILIB := 32
31
Jason Monk9ced3cd2013-08-12 16:42:38 -040032include $(BUILD_PACKAGE)
33
34include $(call all-makefiles-under,$(LOCAL_PATH))