]> git.proxmox.com Git - extjs.git/blob - extjs/classic/theme-neptune-touch/.sencha/package/js-impl.xml
add extjs 6.0.1 sources
[extjs.git] / extjs / classic / theme-neptune-touch / .sencha / package / js-impl.xml
1 <project name="x-js-impl">
2 <target name="-init-compile-js" depends="-init-compiler">
3 <if>
4 <equals arg1="theme" arg2="${package.type}"/>
5 <then>
6 <property name="build.compile.js.filter">
7 <![CDATA[
8 union
9 -tag=package-${package.name}
10 and
11 include
12 -tag=package-${package.name}-base
13 and
14 ${build.operations}
15 ]]>
16 </property>
17 </then>
18 <else>
19 <property name="build.compile.js.filter">
20 <![CDATA[
21 union
22 -tag=package-${package.name}
23 and
24 ${build.operations}
25 ]]>
26 </property>
27 </else>
28 </if>
29 </target>
30
31 <target name="-compile-js-debug" depends="-init-compile-js">
32 <x-compile refid="${compiler.ref.id}">
33 <![CDATA[
34 restore
35 package-${package.name}-all
36 and
37 -options=${build.compile.js.debug.options}
38 ${build.compile.js.filter}
39 and
40 concatenate
41 -remove-text-references=${build.remove.references}
42 -output-file=${build.all.debug.js}
43 ${build.concat.debug.options}
44 ]]>
45 </x-compile>
46 </target>
47
48 <target name="-compile-js-non-debug" depends="-init-compile-js">
49 <x-compile refid="${compiler.ref.id}">
50 <![CDATA[
51 restore
52 package-${package.name}-all
53 and
54 -options=${build.compile.js.options}
55 ${build.compile.js.filter}
56 and
57 concatenate
58 -remove-text-references=${build.remove.references}
59 ${build.compile.js.compress}
60 -output-file=${build.all.js}
61 ${build.concat.options}
62 ]]>
63 </x-compile>
64 </target>
65
66 <target name="-before-js"/>
67 <target name="-after-js"/>
68 <target name="-js"
69 depends="-compile-js-debug,-compile-js-non-debug"/>
70
71 </project>