• 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//
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
17package {
18    default_applicable_licenses: ["frameworks_av_drm_drmserver_license"],
19}
20
21// Added automatically by a large-scale-change
22// See: http://go/android-license-faq
23license {
24    name: "frameworks_av_drm_drmserver_license",
25    visibility: [":__subpackages__"],
26    license_kinds: [
27        "SPDX-license-identifier-Apache-2.0",
28    ],
29    license_text: [
30        "NOTICE",
31    ],
32}
33
34prebuilt_etc {
35    name: "drmserver.zygote64_32.rc",
36    src: "drmserver.zygote64_32.rc",
37    sub_dir: "init/hw",
38}
39
40prebuilt_etc {
41    name: "drmserver.zygote64.rc",
42    src: "drmserver.zygote64.rc",
43    sub_dir: "init/hw",
44}
45
46soong_config_module_type {
47    name: "drmserver_cc_binary",
48    module_type: "cc_binary",
49    config_namespace: "ANDROID",
50    bool_variables: ["TARGET_DYNAMIC_64_32_DRMSERVER"],
51    properties: [
52        "compile_multilib",
53        "init_rc",
54        "multilib.lib32.suffix",
55        "multilib.lib64.suffix",
56        "required",
57    ],
58}
59
60drmserver_cc_binary {
61    name: "drmserver",
62
63    srcs: [
64        "main_drmserver.cpp",
65        "DrmManager.cpp",
66        "DrmManagerService.cpp",
67    ],
68
69    shared_libs: [
70        "libmediametrics",
71        "libmediautils",
72        "libcutils",
73        "libutils",
74        "liblog",
75        "libbinder",
76        "libdl",
77        "libdrmframeworkcommon",
78        "libselinux",
79        "libstagefright_foundation",
80    ],
81    whole_static_libs: [
82        "libc++fs",
83    ],
84
85    cflags: [
86        "-Wall",
87        "-Wextra",
88        "-Werror",
89    ],
90
91    compile_multilib: "prefer32",
92
93    soong_config_variables: {
94        TARGET_DYNAMIC_64_32_DRMSERVER: {
95            compile_multilib: "both",
96            multilib: {
97                lib32: {
98                    suffix: "32",
99                },
100                lib64: {
101                    suffix: "64",
102                },
103            },
104            required: [
105                "drmserver.zygote64_32.rc",
106                "drmserver.zygote64.rc",
107            ],
108            init_rc: ["drmserver_dynamic.rc"],
109            conditions_default: {
110                init_rc: ["drmserver.rc"],
111            },
112        },
113    },
114}
115
116cc_fuzz {
117    name: "drmserver_fuzzer",
118
119    defaults: [
120        "service_fuzzer_defaults",
121    ],
122
123    srcs: [
124        "fuzzer/DrmFuzzer.cpp",
125        "DrmManagerService.cpp",
126        "DrmManager.cpp",
127    ],
128
129    static_libs: [
130        "libc++fs",
131        "libmediautils",
132        "liblog",
133        "libdrmframeworkcommon",
134        "libselinux",
135        "libstagefright_foundation",
136    ],
137
138     shared_libs: [
139         "libmediametrics",
140     ],
141
142     fuzz_config: {
143         libfuzzer_options: [
144             "max_len=50000",
145         ],
146         cc: [
147             "android-drm-team@google.com",
148         ],
149     },
150}
151