3f9288f987
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
40 lines
1.3 KiB
Plaintext
40 lines
1.3 KiB
Plaintext
# 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.
|
|
{
|
|
'conditions': [
|
|
['OS=="android"', {
|
|
# When doing Android builds, the WebRTC code is put in third_party/webrtc
|
|
# of a Chromium checkout, this is one level above the standalone build.
|
|
'variables': {
|
|
'isolate_dependency_untracked': [
|
|
'../../../data/',
|
|
'../../../resources/',
|
|
],
|
|
},
|
|
}],
|
|
['OS=="linux" or OS=="mac" or OS=="win"', {
|
|
'variables': {
|
|
'command': [
|
|
'../../testing/test_env.py',
|
|
'../../tools/swarm_client/googletest/run_test_cases.py',
|
|
'<(PRODUCT_DIR)/metrics_unittests<(EXECUTABLE_SUFFIX)',
|
|
],
|
|
'isolate_dependency_tracked': [
|
|
'../../DEPS',
|
|
'../../resources/foreman_cif_short.yuv',
|
|
'../../testing/test_env.py',
|
|
'<(PRODUCT_DIR)/metrics_unittests<(EXECUTABLE_SUFFIX)',
|
|
],
|
|
'isolate_dependency_untracked': [
|
|
'../../tools/swarm_client/',
|
|
],
|
|
},
|
|
}],
|
|
],
|
|
}
|