blob: d4a6960ee2f7a3ab8f6ee0997fdccf0c19b8aa6f [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
17example_static_libraries = []
18
19example_shared_libraries = [
20 "liblog",
21 "libese",
22 "libese-teq1",
23 "libese-hw-nxp-pn80t-spidev",
24]
25
26cc_binary {
27 name: "ese_nxp_sample",
28 srcs: ["ese_nxp_sample.c"],
29 host_supported: false,
30 shared_libs: example_shared_libraries,
Will Drewry5359f552017-03-09 14:30:51 -060031
32 target: {
33 darwin: {
34 enabled: false,
35 },
36 windows: {
37 enabled: false,
38 },
39 },
Will Drewryd4ae5282017-01-03 22:06:26 -060040}