From 89088b963e4c556bf0e647ef99d2cb5e3b49245c Mon Sep 17 00:00:00 2001 From: "andrew@webrtc.org" Date: Thu, 3 Nov 2011 20:43:45 +0000 Subject: [PATCH] Fix the path to protoc.gypi. It was mistakenly pointing to the trunk/build rather than the trunk/src/build copy, causing the Chrome build to fail. TEST=./build/gyp_chromium in Chrome Review URL: http://webrtc-codereview.appspot.com/253006 git-svn-id: http://webrtc.googlecode.com/svn/trunk@883 4adac7df-926f-26a2-2b94-8c16560cd09d --- src/modules/audio_processing/apm_tests.gypi | 2 +- src/modules/audio_processing/audio_processing.gypi | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/audio_processing/apm_tests.gypi b/src/modules/audio_processing/apm_tests.gypi index 59a186488d..2cd3f791a7 100644 --- a/src/modules/audio_processing/apm_tests.gypi +++ b/src/modules/audio_processing/apm_tests.gypi @@ -39,7 +39,7 @@ 'proto_out_protected': 'webrtc/audio_processing', 'proto_out_dir': '<(proto_out_protected)', }, - 'includes': [ '../../../build/protoc.gypi', ], + 'includes': [ '../../build/protoc.gypi', ], }, { 'target_name': 'audioproc', diff --git a/src/modules/audio_processing/audio_processing.gypi b/src/modules/audio_processing/audio_processing.gypi index 4bc48fcc62..6f62676100 100644 --- a/src/modules/audio_processing/audio_processing.gypi +++ b/src/modules/audio_processing/audio_processing.gypi @@ -76,7 +76,7 @@ 'proto_out_protected': 'webrtc/audio_processing', 'proto_out_dir': '<(proto_out_protected)', }, - 'includes': [ '../../../build/protoc.gypi', ], + 'includes': [ '../../build/protoc.gypi', ], }, ], }