diff options
| author | Mathias Agopian <mathias@google.com> | 2010-09-24 15:01:49 -0700 |
|---|---|---|
| committer | Mathias Agopian <mathias@google.com> | 2010-09-24 15:01:49 -0700 |
| commit | dce21a3e274af1369ce284b7ee05b928a8bb3e11 (patch) | |
| tree | 255d6221fd4104ad31a673969e7c50f95db28ad6 /services/surfaceflinger/tests/screencap/Android.mk | |
| parent | ca5edbeba92b96913291792a4df984e158853b6d (diff) | |
| download | frameworks_base-dce21a3e274af1369ce284b7ee05b928a8bb3e11.zip frameworks_base-dce21a3e274af1369ce284b7ee05b928a8bb3e11.tar.gz frameworks_base-dce21a3e274af1369ce284b7ee05b928a8bb3e11.tar.bz2 | |
simple test app for screen capture API
Change-Id: I1f7c453508ccfd4faaa8b1279968a358ce3f1e5a
Diffstat (limited to 'services/surfaceflinger/tests/screencap/Android.mk')
| -rw-r--r-- | services/surfaceflinger/tests/screencap/Android.mk | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/services/surfaceflinger/tests/screencap/Android.mk b/services/surfaceflinger/tests/screencap/Android.mk new file mode 100644 index 0000000..1cfb471 --- /dev/null +++ b/services/surfaceflinger/tests/screencap/Android.mk @@ -0,0 +1,26 @@ +LOCAL_PATH:= $(call my-dir) +include $(CLEAR_VARS) + +LOCAL_SRC_FILES:= \ + screencap.cpp + +LOCAL_SHARED_LIBRARIES := \ + libcutils \ + libutils \ + libbinder \ + libskia \ + libui \ + libsurfaceflinger_client + +LOCAL_MODULE:= test-screencap + +LOCAL_MODULE_TAGS := tests + +LOCAL_C_INCLUDES += \ + external/skia/include/core \ + external/skia/include/effects \ + external/skia/include/images \ + external/skia/src/ports \ + external/skia/include/utils + +include $(BUILD_EXECUTABLE) |
