blob: 1b85cf33f240c1936211f18f864f4387a35bef23 [file] [log] [blame]
Alistair Delvaa4281392020-07-21 10:36:47 -07001//
2// Copyright (C) 2020 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
Alistair Delva3189a092020-08-28 13:39:15 -070017cc_library {
Alistair Delvaa4281392020-07-21 10:36:47 -070018 name: "libepoxy",
Alistair Delva3189a092020-08-28 13:39:15 -070019 host_supported: true,
Alistair Delvaa4281392020-07-21 10:36:47 -070020 cflags: ["-Wno-unused-parameter"],
21 local_include_dirs: [
22 "prebuilt-intermediates",
23 "src",
24 ],
25 export_include_dirs: [
26 "include",
27 "prebuilt-intermediates/include"
28 ],
29 srcs: [
30 "prebuilt-intermediates/src/egl_generated_dispatch.c",
31 "prebuilt-intermediates/src/gl_generated_dispatch.c",
32 "src/dispatch_common.c",
33 "src/dispatch_egl.c",
34 ],
35}