summaryrefslogtreecommitdiffstats
path: root/android_webview/lib
diff options
context:
space:
mode:
authormkosiba@chromium.org <mkosiba@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-05 11:49:39 +0000
committermkosiba@chromium.org <mkosiba@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-05 11:49:39 +0000
commit4b31bbdecf7462d9138b909b14870d61e06b1c2b (patch)
tree700486f664d0d1c5b7cae668573d61a085d83403 /android_webview/lib
parent28a9676eead1956d27705fd06ecd3e1cd4e4c752 (diff)
downloadchromium_src-4b31bbdecf7462d9138b909b14870d61e06b1c2b.zip
chromium_src-4b31bbdecf7462d9138b909b14870d61e06b1c2b.tar.gz
chromium_src-4b31bbdecf7462d9138b909b14870d61e06b1c2b.tar.bz2
Add a native test target and for android_webview.
This adds the .gyp target for the android_webview native unittests. This change also adds running them to the fyi bot. BUG=None Android-only chagne, ran through trybots before submitting. NOTRY=true Review URL: https://chromiumcodereview.appspot.com/11366035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165920 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'android_webview/lib')
-rw-r--r--android_webview/lib/main/webview_tests.cc9
1 files changed, 9 insertions, 0 deletions
diff --git a/android_webview/lib/main/webview_tests.cc b/android_webview/lib/main/webview_tests.cc
new file mode 100644
index 0000000..2c8d29c
--- /dev/null
+++ b/android_webview/lib/main/webview_tests.cc
@@ -0,0 +1,9 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "base/test/test_suite.h"
+
+int main(int argc, char** argv) {
+ return base::TestSuite(argc, argv).Run();
+}