Add .isolate file and _run target for video_engine_tests. Move tools/swarm_client to be untracked in all .isolate file, so refactorings in swarm_client doesn't require us updating all our .isolate files (similar to the changes for the Chromium tests done in: https://src.chromium.org/viewvc/chrome?view=rev&revision=218844) Update modules_unittests.isolate with new NetEq4 reference files needed. TEST=trybots passing I also setup a Chromium workspace where I patched third_party/webrtc with the changes in this CL, followed by compiling with the settings described in https://code.google.com/p/webrtc/issues/detail?id=1882#c11 I then verified that the video_engine_tests_apk dir was created in the output folder. BUG=1916,2462 R=andrew@webrtc.org, henrike@webrtc.org Review URL: https://webrtc-codereview.appspot.com/2344007 git-svn-id: http://webrtc.googlecode.com/svn/trunk@4925 4adac7df-926f-26a2-2b94-8c16560cd09d
66 lines
1.5 KiB
Python
66 lines
1.5 KiB
Python
# Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license
|
|
# that can be found in the LICENSE file in the root of the source
|
|
# tree. An additional intellectual property rights grant can be found
|
|
# in the file PATENTS. All contributing project authors may
|
|
# be found in the AUTHORS file in the root of the source tree.
|
|
|
|
# See webrtc/build/apk_tests.gyp for more information about this file.
|
|
{
|
|
'targets': [
|
|
{
|
|
'target_name': 'audio_decoder_unittests_apk',
|
|
'type': 'none',
|
|
},
|
|
{
|
|
'target_name': 'common_audio_unittests_apk',
|
|
'type': 'none',
|
|
},
|
|
{
|
|
'target_name': 'common_video_unittests_apk',
|
|
'type': 'none',
|
|
},
|
|
{
|
|
'target_name': 'metrics_unittests',
|
|
'type': 'none',
|
|
},
|
|
{
|
|
'target_name': 'modules_tests_apk',
|
|
'type': 'none',
|
|
},
|
|
{
|
|
'target_name': 'modules_unittests_apk',
|
|
'type': 'none',
|
|
},
|
|
{
|
|
'target_name': 'neteq_unittests_apk',
|
|
'type': 'none',
|
|
},
|
|
{
|
|
'target_name': 'system_wrappers_unittests_apk',
|
|
'type': 'none',
|
|
},
|
|
{
|
|
'target_name': 'test_support_unittests_apk',
|
|
'type': 'none',
|
|
},
|
|
{
|
|
'target_name': 'tools_unittests_apk',
|
|
'type': 'none',
|
|
},
|
|
{
|
|
'target_name': 'video_engine_core_unittests_apk',
|
|
'type': 'none',
|
|
},
|
|
{
|
|
'target_name': 'video_engine_tests_apk',
|
|
'type': 'none',
|
|
},
|
|
{
|
|
'target_name': 'voice_engine_unittests_apk',
|
|
'type': 'none',
|
|
},
|
|
],
|
|
}
|