remove dump_gs201

The event trace dumping moved into gs-common.

Bug: 276901078
Test: dumpstate_board.txt on adb bugreport includes the info
Change-Id: I4d0f0886ef9292f854c1009a80ba525347aa45a0
Signed-off-by: Minchan Kim <minchan@google.com>
This commit is contained in:
Minchan Kim 2023-04-11 16:44:57 +00:00
parent 714ff42ac8
commit 21cea1d88e
2 changed files with 0 additions and 38 deletions

View file

@ -8,19 +8,3 @@ sh_binary {
vendor: true, vendor: true,
sub_dir: "dump", sub_dir: "dump",
} }
cc_binary {
name: "dump_gs201",
srcs: ["dump_gs201.cpp"],
cflags: [
"-Wall",
"-Wextra",
"-Werror",
],
shared_libs: [
"libdump",
],
vendor: true,
relative_install_path: "dump",
}

View file

@ -1,22 +0,0 @@
/*
* Copyright 2022 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <dump/pixel_dump.h>
// Dump gs201 info
int main() {
dumpFileContent("Pixel trace", "/sys/kernel/tracing/instances/pixel/trace");
return 0;
}