Repository: flex-tlf Updated Branches: refs/heads/develop 6155a8ab4 -> eda4997e5
Fix tlf build - add missing swc to build.xml and imports in automation_core module. Project: http://git-wip-us.apache.org/repos/asf/flex-tlf/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-tlf/commit/eda4997e Tree: http://git-wip-us.apache.org/repos/asf/flex-tlf/tree/eda4997e Diff: http://git-wip-us.apache.org/repos/asf/flex-tlf/diff/eda4997e Branch: refs/heads/develop Commit: eda4997e53fca9b347eef48e37f8f1249348ecb6 Parents: 6155a8a Author: piotrz <[email protected]> Authored: Tue Mar 3 22:34:58 2015 +0100 Committer: piotrz <[email protected]> Committed: Tue Mar 3 22:34:58 2015 +0100 ---------------------------------------------------------------------- automation_core/src/AutomationCoreClasses.as | 18 ++---------------- .../ExtendedClasses/TestConfigurationLoader.as | 1 - build.xml | 1 + 3 files changed, 3 insertions(+), 17 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-tlf/blob/eda4997e/automation_core/src/AutomationCoreClasses.as ---------------------------------------------------------------------- diff --git a/automation_core/src/AutomationCoreClasses.as b/automation_core/src/AutomationCoreClasses.as index c7a3faa..9935d99 100644 --- a/automation_core/src/AutomationCoreClasses.as +++ b/automation_core/src/AutomationCoreClasses.as @@ -20,6 +20,7 @@ package { internal class AutomationCoreClasses { + import UnitTest.ExtendedClasses.TestConfigurationLoader; TestConfigurationLoader; import UnitTest.ExtendedClasses.VellumTestCase; VellumTestCase; import UnitTest.Validation.BoundsChecker; BoundsChecker; import UnitTest.Validation.CompositionResults; CompositionResults; @@ -33,22 +34,7 @@ package import UnitTest.Validation.UpdateCompleteEventValidator; UpdateCompleteEventValidator; import UnitTest.Fixtures.TestEditManager; TestEditManager; import UnitTest.Fixtures.MeasureConstants; MeasureConstants; - - /*import UnitTest.ExtendedClasses.TestDescriptor; TestDescriptor; - import UnitTest.ExtendedClasses.TestSuiteExtended; TestSuiteExtended; - import UnitTest.ExtendedClasses.VellumPerformanceCase; VellumPerformanceCase; - - import UnitTest.Fixtures.FileRepository; FileRepository; - import UnitTest.Fixtures.TestApp; TestApp; - import UnitTest.Fixtures.TestConfig; TestConfig; - import UnitTest.Fixtures.TestEditManager; TestEditManager; - - - import UnitTest.Validation.LineSnapshot; LineSnapshot; - - import UnitTest.Validation.XMLSnapshot; XMLSnapshot; */ - // Alphabetical list of classes to be included as part of vellum.swc. - // This should mirror what's in the .flexLibProperties + import UnitTest.Fixtures.TestCaseVo; TestCaseVo; } } http://git-wip-us.apache.org/repos/asf/flex-tlf/blob/eda4997e/automation_core/src/UnitTest/ExtendedClasses/TestConfigurationLoader.as ---------------------------------------------------------------------- diff --git a/automation_core/src/UnitTest/ExtendedClasses/TestConfigurationLoader.as b/automation_core/src/UnitTest/ExtendedClasses/TestConfigurationLoader.as index 9e47a35..41e2a56 100644 --- a/automation_core/src/UnitTest/ExtendedClasses/TestConfigurationLoader.as +++ b/automation_core/src/UnitTest/ExtendedClasses/TestConfigurationLoader.as @@ -8,7 +8,6 @@ package UnitTest.ExtendedClasses import mx.rpc.AsyncToken; import mx.rpc.IResponder; - import mx.rpc.http.HTTPService; import mx.utils.LoaderUtil; http://git-wip-us.apache.org/repos/asf/flex-tlf/blob/eda4997e/build.xml ---------------------------------------------------------------------- diff --git a/build.xml b/build.xml index 02a499f..09a27ab 100644 --- a/build.xml +++ b/build.xml @@ -239,6 +239,7 @@ <library-path/> <external-library-path dir="${output.dir}" includes="textLayout.swc" append="true"/> <external-library-path dir="${flex.sdk.frameworks}/libs/mx/" includes="mx.swc" append="true"/> + <external-library-path dir="${flex.sdk.frameworks}/libs/" includes="rpc.swc" append="true"/> <!-- for Flex SDK 4.5 --> <external-library-path dir="${flex.sdk.frameworks}/libs/" includes="framework.swc" append="true"/> <!-- External swcs -->
