From c3f42f37b5dbc0458ca7fdeda2e59e4d66942000 Mon Sep 17 00:00:00 2001 From: "kjellander@webrtc.org" Date: Mon, 1 Sep 2014 15:06:14 +0000 Subject: [PATCH] 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 --- .../neteq/audio_decoder_unittests.isolate | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/webrtc/modules/audio_coding/neteq/audio_decoder_unittests.isolate b/webrtc/modules/audio_coding/neteq/audio_decoder_unittests.isolate index bb57e74b34..e4a18ca841 100644 --- a/webrtc/modules/audio_coding/neteq/audio_decoder_unittests.isolate +++ b/webrtc/modules/audio_coding/neteq/audio_decoder_unittests.isolate @@ -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/', ], }, }],