You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jm...@apache.org on 2017/12/30 21:26:16 UTC

git commit: [flex-sdk] [refs/heads/develop] - order matters when you compile the flash integration

Repository: flex-sdk
Updated Branches:
  refs/heads/develop e92853781 -> b0ef9c4ee


order matters when you compile the flash integration


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/b0ef9c4e
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/b0ef9c4e
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/b0ef9c4e

Branch: refs/heads/develop
Commit: b0ef9c4ee9fd8d8f199259eaee3924593330622c
Parents: e928537
Author: Justin Mclean <jm...@apache.org>
Authored: Sun Dec 31 08:25:59 2017 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Sun Dec 31 08:25:59 2017 +1100

----------------------------------------------------------------------
 frameworks/build.xml | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/b0ef9c4e/frameworks/build.xml
----------------------------------------------------------------------
diff --git a/frameworks/build.xml b/frameworks/build.xml
index 7a31bdc..5ac6438 100644
--- a/frameworks/build.xml
+++ b/frameworks/build.xml
@@ -108,7 +108,9 @@
        Should consider updating the OSMF and TLF versions in use.
     -->
     
-    <target name="compile" description="Builds all SWCs but not their resource bundles" depends="flex-config,flash-integration.compile">
+    <target name="compile" description="Builds all SWCs but not their resource bundles" depends="flex-config,all.compile,flash-integration.compile,automation.compile" />
+
+    <target name="all.compile">
         <antcall target="framework"/>
         <antcall target="mx"/>
         <antcall target="textLayout"/>
@@ -119,9 +121,9 @@
         <antcall target="sparkskins"/>
         <antcall target="spark_dmv"/>
         <antcall target="airframework"/>
-        <antcall target="airspark"/>        
-        <antcall target="mobilecomponents"/>        
-        <antcall target="mobiletheme"/>     
+        <antcall target="airspark"/>
+        <antcall target="mobilecomponents"/>
+        <antcall target="mobiletheme"/>
         <antcall target="core"/>
         <antcall target="authoringsupport"/>
         <antcall target="halo"/>
@@ -130,13 +132,16 @@
     	<antcall target="apache"/>
     	<antcall target="experimental"/>
     	<antcall target="experimental_mobile"/>
-        <antcall target="compile-automation"/>
         <antcall target="flatspark"/>
     </target>
 
     <target name="flash-integration.compile" unless="isLinux">
         <antcall target="flash_integration" />
     </target>
+
+    <target name="automation.compile">
+        <antcall target="compile-automation"/>
+    </target>
 	
     <target name="test" description="Runs the tests for all projects that have FlexUnit tests">
         <delete dir="${FLEX_HOME}/test-reports"/>