forked from imaya/zlib.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
151 lines (142 loc) · 6.5 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<?xml version="1.0" encoding="utf-8"?>
<project name="project" default="all" >
<property name="level" value="LIBRARY_OPTIMIZATIONS"/>
<property name="src" value="./src"/>
<property name="def" value="./define"/>
<property name="vendor" value="./vendor"/>
<property name="bin" value="./bin"/>
<property name="compiler" value="${vendor}/google-closure-compiler/compiler.jar"/>
<property name="closure_primitives" value="closure-primitives/base.js"/>
<property name="depswriter" value="closure-primitives/depswriter.py"/>
<property name="depend" value="depend.js"/>
<!-- ビルドの事前準備 -->
<target name="prebuild" description="ビルドの事前準備を行う">
<mkdir dir="${bin}"/>
</target>
<!-- 依存関係を解決する -->
<target name="deps" description="依存関係を解決する">
<exec executable="python" failonerror="true">
<arg line="${depswriter}"/>
<arg line="--root_with_prefix=". ../${src}""/>
<arg line="--output_file=${depend}"/>
</exec>
<fileset dir="${src}" includes="*.js" id="srcpath"/>
<pathconvert property="srcfiles" refid="srcpath" pathsep=" "/>
</target>
<!-- Inflate の単体ビルド -->
<target name="inflate" depends="deps,prebuild" description="Inflate の独立ビルドを行う">
<!-- 出力ファイル名 -->
<local name="outfile"/>
<property name="outfile" value="${bin}/inflate.min.js"/>
<!-- ビルド(出力先は一時ファイル) -->
<java jar="${compiler}" fork="true" failonerror="true">
<arg line="--warning_level=VERBOSE"/>
<arg line="--compilation_level=${level}"/>
<arg line="--define=goog.DEBUG=false"/>
<arg line="--define=ZLIB_DEFLATE_EXPORT=false"/>
<arg line="--define=ZLIB_INFLATE_EXPORT=true"/>
<arg line="--output_wrapper='(function() {%output%})();'"/>
<arg line="--summary_detail_level=3"/>
<arg line="--language_in=ECMASCRIPT5_STRICT"/>
<arg line="--js_output_file=${outfile}.tmp"/>
<arg line="--js=${closure_primitives}"/>
<arg line="--js=${depend}"/>
<arg line="${def}/typedarray/hybrid.js"/>
<arg line="${srcfiles}"/>
</java>
<!-- ライセンスとビルドされたファイルをプロパティとして読み込む -->
<local name="license"/>
<loadfile property="license" srcfile="./LICENSE_min"/>
<local name="output"/>
<loadfile property="output" srcfile="${outfile}.tmp"/>
<!-- ライセンスとビルドされたファイルの結合 -->
<echo file="${outfile}" append="no" message="${license}"/>
<echo file="${outfile}" append="yes" message="${output}"/>
<fixcrlf file="${outfile}" eol="unix" eof="remove"/>
<!-- 一時ファイルの削除 -->
<delete file="${outfile}.tmp"/>
</target>
<!-- Deflate の単体ビルド -->
<target name="deflate" depends="deps,prebuild" description="Deflate の独立ビルドを行う">
<!-- 出力ファイル名 -->
<local name="outfile"/>
<property name="outfile" value="${bin}/deflate.min.js"/>
<!-- ビルド(出力先は一時ファイル) -->
<java jar="${compiler}" fork="true" failonerror="true">
<arg line="--warning_level=VERBOSE"/>
<arg line="--compilation_level=${level}"/>
<arg line="--define=goog.DEBUG=false"/>
<arg line="--define=ZLIB_DEFLATE_EXPORT=true"/>
<arg line="--define=ZLIB_RAWDEFLATE_EXPORT=true"/>
<arg line="--define=ZLIB_INFLATE_EXPORT=false"/>
<arg line="--output_wrapper='(function() {%output%})();'"/>
<arg line="--summary_detail_level=3"/>
<arg line="--language_in=ECMASCRIPT5_STRICT"/>
<arg line="--js_output_file=${outfile}.tmp"/>
<arg line="--js=${closure_primitives}"/>
<arg line="--js=${depend}"/>
<arg line="${def}/typedarray/hybrid.js"/>
<arg line="${srcfiles}"/>
</java>
<!-- ライセンスとビルドされたファイルをプロパティとして読み込む -->
<local name="license"/>
<loadfile property="license" srcfile="./LICENSE_min"/>
<local name="output"/>
<loadfile property="output" srcfile="${outfile}.tmp"/>
<!-- ライセンスとビルドされたファイルの結合 -->
<echo file="${outfile}" append="no" message="${license}"/>
<echo file="${outfile}" append="yes" message="${output}"/>
<fixcrlf file="${outfile}" eol="unix" eof="remove"/>
<!-- 一時ファイルの削除 -->
<delete file="${outfile}.tmp"/>
</target>
<!-- Zlib のビルド -->
<target name="zlib" depends="deps,prebuild" description="リリース版のファイル zlib.min.js を作成する">
<!-- 出力ファイル名 -->
<local name="outfile"/>
<property name="outfile" value="${bin}/zlib.min.js"/>
<!-- ビルド(出力先は一時ファイル) -->
<java jar="${compiler}" fork="true" failonerror="true">
<arg line="--warning_level=VERBOSE"/>
<arg line="--compilation_level=${level}"/>
<arg line="--define=goog.DEBUG=false"/>
<arg line="--define=ZLIB_DEFLATE_EXPORT=true"/>
<arg line="--define=ZLIB_RAWDEFLATE_EXPORT=true"/>
<arg line="--define=ZLIB_INFLATE_EXPORT=true"/>
<arg line="--output_wrapper='(function() {%output%})();'"/>
<arg line="--summary_detail_level=3"/>
<arg line="--language_in=ECMASCRIPT5_STRICT"/>
<arg line="--js_output_file=${outfile}.tmp"/>
<arg line="--js=${closure_primitives}"/>
<arg line="--js=${depend}"/>
<arg line="${def}/typedarray/hybrid.js"/>
<arg line="${srcfiles}"/>
</java>
<!-- ライセンスとビルドされたファイルをプロパティとして読み込む -->
<local name="license"/>
<loadfile property="license" srcfile="./LICENSE_min"/>
<local name="output"/>
<loadfile property="output" srcfile="${outfile}.tmp"/>
<!-- ライセンスとビルドされたファイルの結合 -->
<echo file="${outfile}" append="no" message="${license}"/>
<echo file="${outfile}" append="yes" message="${output}"/>
<fixcrlf file="${outfile}" eol="unix" eof="remove"/>
<!-- 一時ファイルの削除 -->
<delete file="${outfile}.tmp"/>
</target>
<target name="help">
<java jar="${compiler}" fork="true" failonerror="true">
<arg line="--help"/>
</java>
</target>
<!-- 全て作成 -->
<target name="all" depends="zlib,inflate,deflate"></target>
<!-- 削除 -->
<target name="clean">
<delete file="${depend}"/>
<delete dir="${bin}"/>
</target>
<!-- リビルド -->
<target name="rebuild" depends="clean,all"></target>
</project>
<!-- vim: set expandtab ts=2 sw=2: -->