Home | History | Annotate | Download | only in tools

Lines Matching full:append

125         self._packages.append('ltp_%s' % base_name)
127 self._bp_result.append('cc_test {')
128 self._bp_result.append(' name: "ltp_%s",' % base_name)
129 self._bp_result.append(' stem: "%s",' % base_name)
130 self._bp_result.append(' defaults: ["ltp_test_defaults"],')
133 self._bp_result.append(' srcs: ["%s"],' % list(local_src_files)[0])
135 self._bp_result.append(' srcs: [')
137 self._bp_result.append(' "%s",' % src)
138 self._bp_result.append(' ],')
141 self._bp_result.append(' cflags: ["%s"],' % list(local_cflags)[0])
143 self._bp_result.append(' cflags: [')
145 self._bp_result.append(' "%s",' % cflag)
146 self._bp_result.append(' ],')
149 self._bp_result.append(' local_include_dirs: ["%s"],' % list(local_c_includes)[0])
151 self._bp_result.append(' local_include_dirs: [')
153 self._bp_result.append(' "%s",' % d)
154 self._bp_result.append(' ],')
161 self._bp_result.append(' static_libs: ["libltp_%s"],' % list(static_libraries)[0])
163 self._bp_result.append(' static_libs: [')
165 self._bp_result.append(' "libltp_%s",' % lib)
166 self._bp_result.append(' ],')
173 self._bp_result.append(' shared_libs: ["lib%s"],' % list(shared_libraries)[0])
175 self._bp_result.append(' shared_libs: [')
177 self._bp_result.append(' "lib%s",' % lib)
178 self._bp_result.append(' ],')
180 self._bp_result.append('}')
181 self._bp_result.append('')
193 self._bp_result.append('cc_library_static {')
194 self._bp_result.append(' name: "libltp_%s",' %
196 self._bp_result.append(' defaults: ["ltp_defaults"],')
199 self._bp_result.append(' local_include_dirs: [')
201 self._bp_result.append(' "%s",' % d)
202 self._bp_result.append(' ],')
205 self._bp_result.append(' cflags: [')
207 self._bp_result.append(' "%s",' % cflag)
208 self._bp_result.append(' ],')
210 self._bp_result.append(' srcs: [')
212 self._bp_result.append(' "%s",' % src)
213 self._bp_result.append(' ],')
215 self._bp_result.append('}')
216 self._bp_result.append('')
225 self._mk_result.append('module_prebuilt := %s' % install_target)
226 self._mk_result.append('module_src_files := %s' % local_src_file)
230 self._packages.append(module)
232 self._mk_result.append('include $(ltp_build_prebuilt)')
233 self._mk_result.append('')