Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Side by Side Diff: tools/android/findbugs_plugin/build.xml

Issue 1841863002: Update monet. (Closed) Base URL: https://github.com/domokit/monet.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/android/findbugs_plugin/README ('k') | tools/android/findbugs_plugin/findbugs.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
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
5 found in the LICENSE file.
6 -->
7
8 <project name="findbugs_plugin" basedir=".">
9
10 <description>
11 Build findbugs_plugin for Chromium Android
12 </description>
13 <property name="src.dir" location="src" />
14 <property name="lib.dir" location="../../../third_party/findbugs/lib" />
15 <property name="bin.dir" location="lib" />
16 <property name="intermediate.dir" location="intermediate" />
17 <property name="jar.name" value="chromiumPlugin.jar" />
18
19 <path id="classpath.id">
20 <fileset dir="${lib.dir}">
21 <include name="**/*.jar" />
22 </fileset>
23 </path>
24
25 <target name="makedir">
26 <mkdir dir="${intermediate.dir}" />
27 <mkdir dir="${bin.dir}" />
28 </target>
29
30 <target name="findbugs_plugin_classes" depends="makedir">
31 <javac srcdir="${src.dir}" destdir="${intermediate.dir}"
32 classpathref="classpath.id" includeantruntime="false" />
33 </target>
34
35 <target name="copy_xml_files" depends="makedir">
36 <copy file="messages.xml" todir="${intermediate.dir}" />
37 <copy file="findbugs.xml" todir="${intermediate.dir}" />
38 </target>
39
40 <target name="findbugs_plugin_jar" depends="findbugs_plugin_classes, copy_xml_ files">
41 <jar destfile="${bin.dir}/${jar.name}" basedir="${intermediate.dir}">
42 </jar>
43 </target>
44
45 <target name="install" depends="findbugs_plugin_jar">
46 <delete dir="${intermediate.dir}" />
47 </target>
48 </project>
OLDNEW
« no previous file with comments | « tools/android/findbugs_plugin/README ('k') | tools/android/findbugs_plugin/findbugs.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698