1/*
2 * Copyright (C) 2024 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    // See: http://go/android-license-faq
19    default_applicable_licenses: [
20        "frameworks_native_license",
21    ],
22}
23
24cc_benchmark {
25    name: "flatland",
26    auto_gen_config: false,
27    srcs: [
28        "Composers.cpp",
29        "GLHelper.cpp",
30        "Renderers.cpp",
31        "Main.cpp",
32    ],
33    cflags: [
34        "-Wall",
35        "-Werror",
36    ],
37    compile_multilib: "both",
38    multilib: {
39        lib32: {
40            stem: "flatland",
41        },
42        lib64: {
43            stem: "flatland64",
44        },
45    },
46    shared_libs: [
47        "libEGL",
48        "libGLESv2",
49        "libcutils",
50        "libgui",
51        "libui",
52        "libutils",
53    ],
54}
55