aom/test/android
Tom Finegan 7a07ece23b Include googletest cmake support.
- Same googletest release (v1.8.0), new root in third_party.
- Update Android.mk and make build (include and file locations).
- Update cmake build (use googletest's cmake support).
- Update gtest include in all tests.

BUG=https://bugs.chromium.org/p/aomedia/issues/detail?id=76

Change-Id: I5491a2ff3c8869263cd885872c815402236c20b1
2017-02-13 18:11:11 +00:00
..
Android.mk Include googletest cmake support. 2017-02-13 18:11:11 +00:00
README Port renaming changes from AOMedia 2016-08-31 18:19:03 -07:00
get_files.py Change to use aom copyright notice 2016-09-02 08:22:07 -07:00
scrape_gtest_log.py Change to use aom copyright notice 2016-09-02 08:22:07 -07:00

README

Android.mk will build aom unittests on android.
1) Configure libaom from the parent directory:
./libaom/configure --target=armv7-android-gcc --enable-external-build \
  --enable-postproc --disable-install-srcs --enable-multi-res-encoding \
  --enable-temporal-denoising --disable-unit-tests --disable-install-docs \
  --disable-examples --disable-runtime-cpu-detect --sdk-path=$NDK

2) From the parent directory, invoke ndk-build:
NDK_PROJECT_PATH=. ndk-build APP_BUILD_SCRIPT=./libaom/test/android/Android.mk \
  APP_ABI=armeabi-v7a APP_PLATFORM=android-18 APP_OPTIM=release \
  APP_STL=gnustl_static

Note: Both adb and ndk-build are available prebuilt at:
  https://chromium.googlesource.com/android_tools

3) Run get_files.py to download the test files:
python get_files.py -i /path/to/test-data.sha1 -o /path/to/put/files \
  -u http://downloads.webmproject.org/test_data/libaom

4) Transfer files to device using adb. Ensure you have proper permissions for
the target

adb push /path/to/test_files /data/local/tmp
adb push /path/to/built_libs /data/local/tmp

NOTE: Built_libs defaults to parent_dir/libs/armeabi-v7a

5) Run tests:
adb shell
(on device)
cd /data/local/tmp
LD_LIBRARY_PATH=. ./aom_test