• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
17cc_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        "-Wall",
25        "-Werror",
26        "-Wno-unused-variable",
27    ],
28
29    srcs: ["src/FwdLockEngine.cpp"],
30
31    shared_libs: [
32        "libandroidicu",
33        "libutils",
34        "liblog",
35        "libdl",
36        "libcrypto",
37        "libssl",
38        "libdrmframework",
39    ],
40
41    static_libs: [
42        "libdrmutility",
43        "libdrmframeworkcommon",
44        "libfwdlock-common",
45        "libfwdlock-converter",
46        "libfwdlock-decoder",
47    ],
48
49    local_include_dirs: ["include"],
50
51    relative_install_path: "drm",
52}
53