diff options
author | 2024-09-17 20:00:52 +0000 | |
---|---|---|
committer | 2024-10-02 16:55:58 +0000 | |
commit | d32bf9f3aa8fb0ff8826a227975e454118983a2d (patch) | |
tree | 272e80ba7c29e1662e9d258d5b63dd76af76d940 | |
parent | 11986e82425b99894f0b8a1727bd14ac5839110f (diff) |
Add a main function for the edit monitor
Test: make edit_monitor and run edit_monitor and check the log file
bug: 365617369
Change-Id: Iab8e6250e7e11eba6b57932358a4f1cd949c4121
-rw-r--r-- | tools/edit_monitor/Android.bp | 12 | ||||
-rw-r--r-- | tools/edit_monitor/main.py | 0 |
2 files changed, 12 insertions, 0 deletions
diff --git a/tools/edit_monitor/Android.bp b/tools/edit_monitor/Android.bp index 08ca155cc4..34978214a9 100644 --- a/tools/edit_monitor/Android.bp +++ b/tools/edit_monitor/Android.bp @@ -52,3 +52,15 @@ python_test_host { unit_test: true, }, } + +python_binary_host { + name: "edit_monitor", + pkg_path: "edit_monitor", + srcs: [ + "main.py", + ], + libs: [ + "edit_monitor_lib", + ], + main: "main.py", +} diff --git a/tools/edit_monitor/main.py b/tools/edit_monitor/main.py new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/tools/edit_monitor/main.py |