From 2d7617afced436c8170071b90188a00a372ea4f3 Mon Sep 17 00:00:00 2001 From: "kjellander@webrtc.org" Date: Wed, 19 Jun 2013 09:10:49 +0000 Subject: [PATCH] Add dummy Android test APK to be used for buildbot automation testing. Until we have WebRTC test targets created for Android, this test makes it possible to move forward for buildbot automation. TEST=Android NDK buildbot and local execution of: source build/android/envsetup.sh gclient runhooks ninjar -C out/Debug verified the out/Debug/simple_apk dir exists and has the files. BUG=1882 R=henrika@webrtc.org Review URL: https://webrtc-codereview.appspot.com/1688005 git-svn-id: http://webrtc.googlecode.com/svn/trunk@4245 4adac7df-926f-26a2-2b94-8c16560cd09d --- .gitignore | 1 + DEPS | 3 +++ webrtc.gyp | 1 + 3 files changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index 4b60bb1826..dda6dfd36e 100644 --- a/.gitignore +++ b/.gitignore @@ -67,6 +67,7 @@ /third_party/yasm /third_party/WebKit/Tools/Scripts /tools/android +/tools/android-dummy-test /tools/clang /tools/grit /tools/gritsettings diff --git a/DEPS b/DEPS index e397a105db..c7051a1499 100644 --- a/DEPS +++ b/DEPS @@ -118,6 +118,9 @@ deps_os = { "tools/android": (Var("googlecode_url") % "webrtc") + "/deps/tools/android@4235", + "tools/android-dummy-test": + (Var("googlecode_url") % "webrtc") + "/deps/tools/android-dummy-test@4244", + "third_party/android_tools": From("chromium_deps", "src/third_party/android_tools"), diff --git a/webrtc.gyp b/webrtc.gyp index 950e293709..7daaf8d981 100644 --- a/webrtc.gyp +++ b/webrtc.gyp @@ -39,6 +39,7 @@ ['OS=="android"', { 'dependencies': [ 'tools/android/android_tools_precompiled.gyp:*', + 'tools/android-dummy-test/android_dummy_test.gyp:*', ], }], ],