diff options
author | 2023-02-14 00:44:36 +0000 | |
---|---|---|
committer | 2023-08-21 19:07:38 +0000 | |
commit | 5ec086e1c775af8ca6f0753f5024d8217c0e141e (patch) | |
tree | e6d1405c87b9179a186511b6c5dbbc561d435f61 /cmds/sfdo/Android.bp | |
parent | 3e7eb31b766ddc40bea9ce9b3d839187bceb9290 (diff) |
Add a tool to make calls to SurfaceFlinger
The tool should make the calls to SurfaceFlinger more user friendly and
also document them.
Bug: 269188249
Test: Manually build and call the functions.
Ignore-AOSP-First: sfdo is developed on main as it depends on surfaceflinger which is developed on that branch
Change-Id: I7136c9d7e98175c320dab33369858861831289e6
Diffstat (limited to 'cmds/sfdo/Android.bp')
-rw-r--r-- | cmds/sfdo/Android.bp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/cmds/sfdo/Android.bp b/cmds/sfdo/Android.bp new file mode 100644 index 0000000000..c19c9da7bf --- /dev/null +++ b/cmds/sfdo/Android.bp @@ -0,0 +1,17 @@ +cc_binary { + name: "sfdo", + + srcs: ["sfdo.cpp"], + + shared_libs: [ + "libutils", + "libgui", + ], + + cflags: [ + "-Wall", + "-Werror", + "-Wunused", + "-Wunreachable-code", + ], +} |