OLD | NEW |
1 <?xml version="1.0" encoding="UTF-8"?> | 1 <?xml version="1.0" encoding="UTF-8"?> |
2 <!-- | 2 <!-- |
3 Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2012 The Chromium Authors. All rights reserved. |
4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
5 found in the LICENSE file. | 5 found in the LICENSE file. |
6 --> | 6 --> |
7 <project name="chrome_common_defines"> | 7 <project name="chrome_common_defines"> |
8 <!-- Common build properties for Chrome for android. --> | 8 <!-- Common build properties for Chrome for android. --> |
9 | 9 |
10 <!-- | 10 <!-- |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 <property name="@{name}" value="@{value}"/> | 68 <property name="@{name}" value="@{value}"/> |
69 <check-property-value property="@{name}"/> | 69 <check-property-value property="@{name}"/> |
70 </sequential> | 70 </sequential> |
71 </macrodef> | 71 </macrodef> |
72 | 72 |
73 <!-- Common environment properties. --> | 73 <!-- Common environment properties. --> |
74 <property-location name="sdk.dir" location="${ANDROID_SDK_ROOT}"/> | 74 <property-location name="sdk.dir" location="${ANDROID_SDK_ROOT}"/> |
75 <property-value name="target" value="android-${ANDROID_SDK_VERSION}"/> | 75 <property-value name="target" value="android-${ANDROID_SDK_VERSION}"/> |
76 <property name="source.dir" location="src"/> | 76 <property name="source.dir" location="src"/> |
77 <property-location name="android.gdbserver" location="${ANDROID_GDBSERVER}"/> | 77 <property-location name="android.gdbserver" location="${ANDROID_GDBSERVER}"/> |
| 78 <!-- |
| 79 Common directories used by SDK Build, when making changes here |
| 80 make sure to update gyp files and test scripts constants in |
| 81 build/android/pylib/constants.py |
| 82 --> |
| 83 <!-- Common directory for chromium_*.jars. --> |
| 84 <property-location name="lib.java.dir" location="${PRODUCT_DIR}/lib.java"/> |
| 85 <!-- Common directory for test jars. --> |
| 86 <property-location name="test.lib.java.dir" |
| 87 location="${PRODUCT_DIR}/test.lib.java"/> |
| 88 <!-- Common directory for apks. --> |
| 89 <property-location name="apks.dir" location="${PRODUCT_DIR}/apks"/> |
78 </project> | 90 </project> |
OLD | NEW |