1 // 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 //2 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 17 cc_library_shared { 18 name: "libfwdlockengine", 19 20 cflags: [ 21 "-DUSE_64BIT_DRM_API", 22 // The flag below turns on local debug printouts 23 //"-DDRM_OMA_FL_ENGINE_DEBUG", 24 ], 25 26 srcs: ["src/FwdLockEngine.cpp"], 27 28 shared_libs: [ 29 "libicui18n", 30 "libicuuc", 31 "libutils", 32 "liblog", 33 "libdl", 34 "libcrypto", 35 "libssl", 36 "libdrmframework", 37 ], 38 39 static_libs: [ 40 "libdrmutility", 41 "libdrmframeworkcommon", 42 "libfwdlock-common", 43 "libfwdlock-converter", 44 "libfwdlock-decoder", 45 ], 46 47 local_include_dirs: ["include"], 48 49 relative_install_path: "drm", 50 } 51