blob: 75d03633f5c82cbdd5d8b5631678cfe6c314b7a8 [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
Anton Hanssona3e79fb2018-02-23 12:57:51 +000026LOCAL_PRIVATE_PLATFORM_APIS := true
Jason Monk9ced3cd2013-08-12 16:42:38 -040027LOCAL_CERTIFICATE := platform
28
Narayan Kamath50182082018-05-15 11:12:50 +010029LOCAL_JNI_SHARED_LIBRARIES := libjni_pacprocessor libpac
Jason Monk9ced3cd2013-08-12 16:42:38 -040030
31include $(BUILD_PACKAGE)
32
33include $(call all-makefiles-under,$(LOCAL_PATH))