Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(300)

Side by Side Diff: build/android/pylib/gtest/gtest_config.py

Issue 17466002: Add WebRTC test configurations for Android testing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """Configuration file for android gtest suites.""" 5 """Configuration file for android gtest suites."""
6 6
7 import collections 7 import collections
8 8
9 9
10 Suite = collections.namedtuple('Suite', ['is_suite_exe', 'name']) 10 Suite = collections.namedtuple('Suite', ['is_suite_exe', 'name'])
(...skipping 20 matching lines...) Expand all
31 Apk('net_unittests'), 31 Apk('net_unittests'),
32 Apk('sql_unittests'), 32 Apk('sql_unittests'),
33 Apk('sync_unit_tests'), 33 Apk('sync_unit_tests'),
34 Apk('ui_unittests'), 34 Apk('ui_unittests'),
35 Apk('unit_tests'), 35 Apk('unit_tests'),
36 Apk('webkit_compositor_bindings_unittests'), 36 Apk('webkit_compositor_bindings_unittests'),
37 Apk('webkit_unit_tests'), 37 Apk('webkit_unit_tests'),
38 Exe('breakpad_unittests'), 38 Exe('breakpad_unittests'),
39 Exe('sandbox_linux_unittests'), 39 Exe('sandbox_linux_unittests'),
40 ] 40 ]
41
42 WEBRTC_TEST_SUITES = [
Isaac (away) 2013/07/31 21:49:09 Incomplete?
kjellander_chromium 2013/08/05 11:24:03 We wanted to get this up to begin with and add mor
43 # Just a dummy test that always passes for now. More to be added when ready.
44 Apk('simple'),
45 ]
OLDNEW
« build/android/buildbot/bb_device_steps.py ('K') | « build/android/buildbot/bb_run_bot.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698