Fix a few include paths and update include TODO.

TBR=wu@webrtc.org

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

git-svn-id: http://webrtc.googlecode.com/svn/trunk@2967 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
andrew@webrtc.org 2012-10-22 21:51:58 +00:00
parent 534e495df0
commit be8ec386c4
2 changed files with 7 additions and 8 deletions

View File

@ -124,8 +124,9 @@
},
'target_defaults': {
'include_dirs': [
# TODO(andrew): we should be able to just use <(webrtc_root) here.
'..','../..',
# TODO(andrew): Remove '..' when we've added webrtc/ to include paths.
'..',
'../..',
],
'defines': [
# TODO(leozwang): Run this as a gclient hook rather than at build-time:

View File

@ -10,17 +10,15 @@
#include <stdio.h>
#include "gtest/gtest.h"
#include "modules/utility/interface/process_thread.h"
#include "modules/video_capture/main/interface/video_capture.h"
#include "modules/video_capture/main/interface/video_capture_factory.h"
#include "system_wrappers/interface/critical_section_wrapper.h"
#include "system_wrappers/interface/scoped_ptr.h"
#include "system_wrappers/interface/scoped_refptr.h"
#include "system_wrappers/interface/sleep.h"
#include "system_wrappers/interface/tick_util.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "modules/utility/interface/process_thread.h"
#include "modules/video_capture/main/interface/video_capture.h"
#include "modules/video_capture/main/interface/video_capture_factory.h"
using webrtc::CriticalSectionWrapper;
using webrtc::CriticalSectionScoped;