1fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#
2fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera# Copyright (C) 2010 The Android Open Source Project
3fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#
4fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera# Licensed under the Apache License, Version 2.0 (the "License");
5fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera# you may not use this file except in compliance with the License.
6fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera# You may obtain a copy of the License at
7fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#
8fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#      http://www.apache.org/licenses/LICENSE-2.0
9fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#
10fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera# Unless required by applicable law or agreed to in writing, software
11fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera# distributed under the License is distributed on an "AS IS" BASIS,
12fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera# See the License for the specific language governing permissions and
14fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera# limitations under the License.
15fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera#
16fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraLOCAL_PATH := $(call my-dir)
17fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
18fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbeherainclude $(CLEAR_VARS)
19fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
20fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraLOCAL_SRC_FILES := \
21fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera    FwdLockConv.c
22fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
23fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraLOCAL_C_INCLUDES := \
24559bf2836f5da25b75bfb229fec0d20d540ee426James Dong    frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/common \
25fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera    external/openssl/include
26fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
27fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraLOCAL_SHARED_LIBRARIES := libcrypto
28fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
29fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraLOCAL_MODULE := libfwdlock-converter
30fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
31fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat DalbeheraLOCAL_MODULE_TAGS := optional
32fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbehera
33fdd65a0fc7df2c878cc601e4c0f4021cb264f051Pravat Dalbeherainclude $(BUILD_STATIC_LIBRARY)
34