BUG=2122 R=andrew@webrtc.org, fischman@webrtc.org Review URL: https://webrtc-codereview.appspot.com/3669004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5273 4adac7df-926f-26a2-2b94-8c16560cd09d
16 lines
688 B
XML
16 lines
688 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project name="WebRTCDemo" default="help">
|
|
<property file="local.properties" />
|
|
<property environment="env" />
|
|
<condition property="sdk.dir" value="${env.ANDROID_SDK_ROOT}">
|
|
<isset property="env.ANDROID_SDK_ROOT" />
|
|
</condition>
|
|
<loadproperties srcFile="project.properties" />
|
|
<fail
|
|
message="sdk.dir is missing. Make sure to generate local.properties using 'android update project' or to inject it through the ANDROID_SDK_ROOT environment variable."
|
|
unless="sdk.dir"
|
|
/>
|
|
<import file="custom_rules.xml" optional="true" />
|
|
<import file="${sdk.dir}/tools/ant/build.xml" />
|
|
</project>
|