Fix audio_decoder_unittests.isolate

In r6427 all .isolate files except
audio_decooder_unittests.isolate was updated to use the
<(DEPTH) variable instead of relative paths.
This started breaking the Android bots after committing
r7014.

BUG=3741
TBR=phoglund@webrtc.org,

Review URL: https://webrtc-codereview.appspot.com/23409004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@7017 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
kjellander@webrtc.org 2014-09-01 15:06:14 +00:00
parent 8dbeb5b301
commit c3f42f37b5

View File

@ -8,31 +8,29 @@
{
'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': [
'../../../../../resources/',
'../../../../../data/',
'<(DEPTH)/resources/',
'<(DEPTH)/data/',
],
},
}],
['OS=="linux" or OS=="mac" or OS=="win"', {
'variables': {
'command': [
'../../../../testing/test_env.py',
'<(DEPTH)/testing/test_env.py',
'<(PRODUCT_DIR)/audio_decoder_unittests<(EXECUTABLE_SUFFIX)',
],
'isolate_dependency_touched': [
'../../../../DEPS',
'<(DEPTH)/DEPS',
],
'isolate_dependency_tracked': [
'../../../../resources/audio_coding/testfile32kHz.pcm',
'../../../../testing/test_env.py',
'<(DEPTH)/resources/audio_coding/testfile32kHz.pcm',
'<(DEPTH)/testing/test_env.py',
'<(PRODUCT_DIR)/audio_decoder_unittests<(EXECUTABLE_SUFFIX)',
],
'isolate_dependency_untracked': [
'../../../../tools/swarming_client/',
'<(DEPTH)/tools/swarming_client/',
],
},
}],