From d3ecb615bacbdcbf0febcd6c6a8ee445d84ca510 Mon Sep 17 00:00:00 2001 From: "kjellander@webrtc.org" Date: Fri, 25 Jan 2013 12:18:15 +0000 Subject: [PATCH] Fix path to perf Python scripts in test.gyp The path in test.gyp in r3411 was incorrect since it was based on the symlink that does not exist on Windows. This CL changes it to reference the actual path in /tools/perf TBR=phoglund BUG=none TEST=win try bot. Review URL: https://webrtc-codereview.appspot.com/1074006 git-svn-id: http://webrtc.googlecode.com/svn/trunk@3413 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/test/test.gyp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webrtc/test/test.gyp b/webrtc/test/test.gyp index 83ac8cc2a4..3f90b705cc 100644 --- a/webrtc/test/test.gyp +++ b/webrtc/test/test.gyp @@ -110,8 +110,8 @@ { 'destination': '<(PRODUCT_DIR)/perf', 'files': [ - '<(DEPTH)/tools/e2e_quality/audio/perf/__init__.py', - '<(DEPTH)/tools/e2e_quality/audio/perf/perf_utils.py', + '<(DEPTH)/tools/perf/__init__.py', + '<(DEPTH)/tools/perf/perf_utils.py', ], }, ],