1<?xml version = "1.0" encoding = "UTF-8" ?> 2<!-- 3Defines sample build configuration file. 4--> 5<config> 6 <target name="aosp_cf_x86_phone_default" android_target="aosp_cf_x86_phone" 7 allow_readwrite_all="true"> 8 <!-- Target elements can define elements and attributes that are inherited 9 by build_config child elements. --> 10 <goal name="droid"/> 11 <build_config> 12 <!-- build_config name will inherit the name aosp_cf_x86_phone_default 13 and append dist to the goal list. --> 14 <goal name="dist"/> 15 </build_config> 16 <build_config name="aosp_cf_x86_phone_no_dist" tags="skip"> 17 </build_config> 18 <build_config name="aosp_cf_x86_phone_ro" allow_readwrite_all="false"> 19 <!-- This build_config will override allow_readwrite_all attribute. --> 20 </build_config> 21 <build_config name="aosp_cf_x86_tv" android_target="aosp_cf_x86_tv"> 22 <!-- This build will use aosp_cf_x86_tv as the lunch target. --> 23 </build_config> 24 </target> 25 <target name="aosp_car_arm64"> 26 <!-- If android_target isn't provided target will use name as default 27 android_target. --> 28 <goal name="droid"/> 29 <goal name="dist"/> 30 <build_config> 31 <!-- build_config will inherit the name and android_target: 32 aosp_car_arm64. --> 33 </build_config> 34 </target> 35</config> 36