Restore relative include paths to libyuv.

Required in order to use an externally compiled libyuv. Removed
in https://code.google.com/p/webrtc/source/detail?r=4167

TBR=tnakamura

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

git-svn-id: http://webrtc.googlecode.com/svn/trunk@4180 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
andrew@webrtc.org 2013-06-04 23:53:48 +00:00
parent 3942f3a985
commit b2d29bd2fe
3 changed files with 9 additions and 5 deletions

View File

@ -9,14 +9,16 @@
*/
#if defined(WIN32)
#include <basetsd.h>
#include <basetsd.h>
#endif
#include <setjmp.h>
#include <stdio.h>
#include <string.h>
#include "third_party/libyuv/include/libyuv.h"
#include "third_party/libyuv/include/libyuv/mjpeg_decoder.h"
// NOTE(ajm): Path provided by gyp.
#include "libyuv.h" // NOLINT
#include "libyuv/mjpeg_decoder.h" // NOLINT
#include "webrtc/common_video/jpeg/data_manager.h"
#include "webrtc/common_video/jpeg/include/jpeg.h"
#include "webrtc/common_video/libyuv/include/webrtc_libyuv.h"

View File

@ -10,7 +10,8 @@
#include "webrtc/common_video/libyuv/include/scaler.h"
#include "third_party/libyuv/include/libyuv.h"
// NOTE(ajm): Path provided by gyp.
#include "libyuv.h" // NOLINT
namespace webrtc {

View File

@ -13,7 +13,8 @@
#include <assert.h>
#include <string.h>
#include "third_party/libyuv/include/libyuv.h"
// NOTE(ajm): Path provided by gyp.
#include "libyuv.h" // NOLINT
namespace webrtc {