Skip to content

Commit 6ba8950

Browse files
author
Nelson Li
committed
Convert flatland to Android.bp
Due to the inability to use GoogleBenchmarkTest for testing, the auto_gen_config is set to false. It is preferable for users to conduct manual testing when needed. Bug: 319579558 Test: 1. m flatland 2. adb push flatland64 3. run flatland64 Change-Id: Id05beb868b9c7d6afcac237f36a60f83cd4ebcc0
1 parent aea65bc commit 6ba8950

2 files changed

Lines changed: 54 additions & 32 deletions

File tree

cmds/flatland/Android.bp

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
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+
17+
package {
18+
// See: http://go/android-license-faq
19+
default_applicable_licenses: [
20+
"frameworks_native_license",
21+
],
22+
}
23+
24+
cc_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+
}

cmds/flatland/Android.mk

Lines changed: 0 additions & 32 deletions
This file was deleted.

0 commit comments

Comments
 (0)