References to includes in third_party should be relative, not absolute.

BUG=
R=henrik.lundin@webrtc.org

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

git-svn-id: http://webrtc.googlecode.com/svn/trunk@5704 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
sprang@webrtc.org 2014-03-14 16:22:18 +00:00
parent 4375e1acbb
commit cf6f46d716
2 changed files with 5 additions and 3 deletions

View File

@ -14,9 +14,9 @@
#if defined(__cplusplus)
extern "C" {
#endif
#include "third_party/opus/src/celt/celt.h"
#include "third_party/opus/src/src/analysis.h"
#include "third_party/opus/src/src/opus_private.h"
#include "celt.h"
#include "analysis.h"
#include "opus_private.h"
#if defined(__cplusplus)
}
#endif

View File

@ -41,11 +41,13 @@
'include_dirs': [
# Need Opus header files for the audio classifier.
'<(DEPTH)/third_party/opus/src/celt',
'<(DEPTH)/third_party/opus/src/src',
],
'direct_dependent_settings': {
'include_dirs': [
# Need Opus header files for the audio classifier.
'<(DEPTH)/third_party/opus/src/celt',
'<(DEPTH)/third_party/opus/src/src',
],
},
'export_dependent_settings': [