Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
cf43179a
Commit
cf43179a
authored
12 years ago
by
cramakri
Browse files
Options
Downloads
Patches
Plain Diff
BIS-336 SP-520 : Change ui-tests to only compile javascript for Firefox
SVN: 28466
parent
b51762a3
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
openbis/build/build.xml
+33
-2
33 additions, 2 deletions
openbis/build/build.xml
with
33 additions
and
2 deletions
openbis/build/build.xml
+
33
−
2
View file @
cf43179a
...
@@ -356,12 +356,33 @@
...
@@ -356,12 +356,33 @@
<param
name=
"gwt.module.name"
value=
"ch.systemsx.cisd.openbis.OpenBIS"
/>
<param
name=
"gwt.module.name"
value=
"ch.systemsx.cisd.openbis.OpenBIS"
/>
</antcall>
</antcall>
</target>
</target>
<!--
// Compiles the javascript for Firefox using GWT compiler.
-->
<target
name=
"compile-firefox-javascript"
depends=
"prepare-web-client"
description=
"Compiles the javascript using GWT compiler."
>
<antcall
target=
"compile-gwt-module-flexible"
>
<param
name=
"gwt.module.name"
value=
"ch.systemsx.cisd.openbis.OpenBISFirefox"
/>
<param
name=
"gwt.output.name"
value=
"ch.systemsx.cisd.openbis.OpenBIS"
/>
</antcall>
</target>
<!--
<!--
Compiles a GWT module to Javascript. As a side effect ${webbap.dist} is deleted. Parameters: gwt.module.name: Fully
Compiles a GWT module to Javascript. As a side effect ${webbap.dist} is deleted. Parameters: gwt.module.name: Fully
qualified name of the module.
qualified name of the module.
-->
-->
<target
name=
"compile-gwt-module"
>
<target
name=
"compile-gwt-module"
>
<antcall
target=
"compile-gwt-module-flexible"
>
<param
name=
"gwt.module.name"
value=
"${gwt.module.name}"
/>
<param
name=
"gwt.output.name"
value=
"${gwt.module.name}"
/>
</antcall>
</target>
<!--
Compiles a GWT module to Javascript. As a side effect ${webbap.dist} is deleted. Parameters: gwt.module.name: Fully
qualified name of the module.
-->
<target
name=
"compile-gwt-module-flexible"
>
<mkdir
dir=
"${webapp.dist}"
/>
<mkdir
dir=
"${webapp.dist}"
/>
<delete
includeEmptyDirs=
"true"
>
<delete
includeEmptyDirs=
"true"
>
<fileset
dir=
"${webapp.dist}"
excludes=
"*.jar"
/>
<fileset
dir=
"${webapp.dist}"
excludes=
"*.jar"
/>
...
@@ -377,9 +398,9 @@
...
@@ -377,9 +398,9 @@
<arg
value=
"-XdisableClassMetadata"
/>
<arg
value=
"-XdisableClassMetadata"
/>
</java>
</java>
<move
todir=
"${webapp.dist}"
>
<move
todir=
"${webapp.dist}"
>
<fileset
dir=
"${webapp.dist}/${gwt.
module
.name}"
/>
<fileset
dir=
"${webapp.dist}/${gwt.
output
.name}"
/>
</move>
</move>
</target>
</target>
<!--
<!--
// Creates build information.
// Creates build information.
...
@@ -401,6 +422,16 @@
...
@@ -401,6 +422,16 @@
<param
name=
"module-test.module"
value=
"ch.systemsx.cisd.openbis.OpenBIS"
/>
<param
name=
"module-test.module"
value=
"ch.systemsx.cisd.openbis.OpenBIS"
/>
</antcall>
</antcall>
</target>
</target>
<!--
// Override 'prepare-gwt' target by writing out 'OpenBIS.gwt-without-entry-point.xml' and updating
'ClientPluginProvider.java'.
-->
<target
name=
"prepare-firefox-gwt"
>
<antcall
target=
"do-prepare-gwt"
>
<param
name=
"module-test.module"
value=
"ch.systemsx.cisd.openbis.OpenBISFirefox"
/>
</antcall>
</target>
<target
name=
"do-prepare-gwt"
<target
name=
"do-prepare-gwt"
depends=
"prepare-web-client, compile-tests, openbis-common-common.prepare-gwt"
depends=
"prepare-web-client, compile-tests, openbis-common-common.prepare-gwt"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment