Updating Android demo app src path for audio_device

Due to source files moved in r2804, the build.xml needed to be updated.

TBR=leozwang
TEST=AndroidNDK trybot
BUG=none

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

git-svn-id: http://webrtc.googlecode.com/svn/trunk@2805 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
kjellander@webrtc.org 2012-09-22 22:06:32 +00:00
parent 236d5d3159
commit 31b61b5fb6

View File

@ -883,6 +883,7 @@ Notice for all the files in this folder.
<path refid="project.all.jars.path" />
<path refid="tested.project.classpath" />
</path>
<property name="webrtc.modules.dir" value="../../../../modules" />
<javac encoding="${java.encoding}"
source="${java.source}" target="${java.target}"
debug="true" extdirs="" includeantruntime="false"
@ -891,8 +892,11 @@ Notice for all the files in this folder.
verbose="${verbose}"
classpathref="project.javac.classpath"
fork="${need.javac.fork}">
<src path="${source.absolute.dir}:../../../../modules/video_capture/main/source/android/java:../../../../modules/video_render/main/source/android/java:../../../../modules/audio_device/main/source/android" />
<src path="${source.absolute.dir}" />
<src path="${gen.absolute.dir}" />
<src path="${webrtc.modules.dir}/video_capture/main/source/android/java" />
<src path="${webrtc.modules.dir}/video_render/main/source/android/java" />
<src path="${webrtc.modules.dir}/audio_device/android" />
<compilerarg line="${java.compilerargs}" />
</javac>