blob: 888ddc50859f0d3ea0358b09245dcfa202711ab7 [file] [log] [blame]
Will Drewryd4ae5282017-01-03 22:06:26 -06001//
2// Copyright (C) 2017 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
17cc_library {
18 name: "libese-teq1",
Will Drewryb6635bf2017-03-30 08:02:36 -050019 defaults: ["libese-api-defaults"],
Will Drewryd4ae5282017-01-03 22:06:26 -060020 host_supported: true,
Will Drewryd4ae5282017-01-03 22:06:26 -060021 srcs: ["teq1.c"],
Chih-Hung Hsiehc5b766a2017-09-28 14:01:29 -070022 cflags: ["-Wall", "-Werror"],
Will Drewryde2cad72017-03-10 15:53:34 -060023 shared_libs: ["liblog", "libese", "libese-sysdeps"],
Will Drewryd4ae5282017-01-03 22:06:26 -060024}
25
26cc_library {
Will Drewryde2cad72017-03-10 15:53:34 -060027 name: "libese-teq1-private",
Will Drewryb6635bf2017-03-30 08:02:36 -050028 // Used by tests to access hidden symbols.
29 defaults: ["libese-defaults"],
Will Drewryde2cad72017-03-10 15:53:34 -060030 host_supported: true,
Will Drewryd4ae5282017-01-03 22:06:26 -060031
Will Drewryde2cad72017-03-10 15:53:34 -060032 srcs: ["teq1.c"],
Chih-Hung Hsiehc5b766a2017-09-28 14:01:29 -070033 cflags: ["-Wall", "-Werror"],
Will Drewryd4ae5282017-01-03 22:06:26 -060034
Will Drewryde2cad72017-03-10 15:53:34 -060035 // Ensure that only explicitly exported symbols are visible.
36 shared_libs: ["liblog", "libese", "libese-sysdeps"],
Will Drewryb6635bf2017-03-30 08:02:36 -050037 export_include_dirs: [".", "include"],
Will Drewryd4ae5282017-01-03 22:06:26 -060038}
39
40subdirs = ["tests"]