diff options
author | Dan Willemsen <dwillemsen@google.com> | 2018-11-17 12:38:54 -0800 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2018-11-17 12:38:54 -0800 |
commit | 45855e502424b90f796fde39b316544b6805c221 (patch) | |
tree | 5b2cd92e0fa5f3a16c57e47cdf1841c1e887b487 /cmds/screencap | |
parent | 211af382c2b8eb171fb8995d0fc703fcd7089533 (diff) | |
parent | cd15068a8895fc7d7987e7c5b169f26fdb2d7918 (diff) |
Merge "Convert screencap and libjni_pacprocessor to Android.bp" am: 954b9825c6 am: 60d7bb00db
am: cd15068a88
Change-Id: I37b296760e95e0e279ea033297ca82157692bc90
Diffstat (limited to 'cmds/screencap')
-rw-r--r-- | cmds/screencap/Android.bp | 21 | ||||
-rw-r--r-- | cmds/screencap/Android.mk | 21 |
2 files changed, 21 insertions, 21 deletions
diff --git a/cmds/screencap/Android.bp b/cmds/screencap/Android.bp new file mode 100644 index 000000000000..248c67589696 --- /dev/null +++ b/cmds/screencap/Android.bp @@ -0,0 +1,21 @@ +cc_binary { + name: "screencap", + + srcs: ["screencap.cpp"], + + shared_libs: [ + "libcutils", + "libutils", + "libbinder", + "libhwui", + "libui", + "libgui", + ], + + cflags: [ + "-Wall", + "-Werror", + "-Wunused", + "-Wunreachable-code", + ], +} diff --git a/cmds/screencap/Android.mk b/cmds/screencap/Android.mk deleted file mode 100644 index 72e3c56bc6e4..000000000000 --- a/cmds/screencap/Android.mk +++ /dev/null @@ -1,21 +0,0 @@ -LOCAL_PATH:= $(call my-dir) -include $(CLEAR_VARS) - -LOCAL_SRC_FILES:= \ - screencap.cpp - -LOCAL_SHARED_LIBRARIES := \ - libcutils \ - libutils \ - libbinder \ - libhwui \ - libui \ - libgui - -LOCAL_MODULE:= screencap - -LOCAL_MODULE_TAGS := optional - -LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code - -include $(BUILD_EXECUTABLE) |