124c41072583e508dd0cd190785dabd07580e58a3Brett Chabot# -*- mode: makefile -*-
224c41072583e508dd0cd190785dabd07580e58a3Brett Chabot# List of junit files include in documentation.
324c41072583e508dd0cd190785dabd07580e58a3Brett Chabot# Shared with frameworks/base.
424c41072583e508dd0cd190785dabd07580e58a3Brett Chabot# based off libcore/Docs.mk
524c41072583e508dd0cd190785dabd07580e58a3Brett Chabot
624c41072583e508dd0cd190785dabd07580e58a3Brett Chabot
724c41072583e508dd0cd190785dabd07580e58a3Brett Chabot# List of source to build into the core-junit library
824c41072583e508dd0cd190785dabd07580e58a3Brett Chabot#
924c41072583e508dd0cd190785dabd07580e58a3Brett Chabotcore-junit-files := \
1024c41072583e508dd0cd190785dabd07580e58a3Brett Chabotsrc/junit/framework/Assert.java \
1124c41072583e508dd0cd190785dabd07580e58a3Brett Chabotsrc/junit/framework/AssertionFailedError.java \
1224c41072583e508dd0cd190785dabd07580e58a3Brett Chabotsrc/junit/framework/ComparisonCompactor.java \
1324c41072583e508dd0cd190785dabd07580e58a3Brett Chabotsrc/junit/framework/ComparisonFailure.java \
1424c41072583e508dd0cd190785dabd07580e58a3Brett Chabotsrc/junit/framework/Protectable.java \
1524c41072583e508dd0cd190785dabd07580e58a3Brett Chabotsrc/junit/framework/Test.java \
1624c41072583e508dd0cd190785dabd07580e58a3Brett Chabotsrc/junit/framework/TestCase.java \
1724c41072583e508dd0cd190785dabd07580e58a3Brett Chabotsrc/junit/framework/TestFailure.java \
1824c41072583e508dd0cd190785dabd07580e58a3Brett Chabotsrc/junit/framework/TestListener.java \
1924c41072583e508dd0cd190785dabd07580e58a3Brett Chabotsrc/junit/framework/TestResult.java \
2024c41072583e508dd0cd190785dabd07580e58a3Brett Chabotsrc/junit/framework/TestSuite.java
2124c41072583e508dd0cd190785dabd07580e58a3Brett Chabot
2241b2b155ae49e696f71c65b8b30345663860127bBrett Chabot# List of source to build into the android.test.runner library
2341b2b155ae49e696f71c65b8b30345663860127bBrett Chabot#
2441b2b155ae49e696f71c65b8b30345663860127bBrett Chabotjunit-runner-files := \
2541b2b155ae49e696f71c65b8b30345663860127bBrett Chabotsrc/junit/runner/BaseTestRunner.java \
2641b2b155ae49e696f71c65b8b30345663860127bBrett Chabotsrc/junit/runner/TestRunListener.java \
2741b2b155ae49e696f71c65b8b30345663860127bBrett Chabotsrc/junit/runner/TestSuiteLoader.java \
2841b2b155ae49e696f71c65b8b30345663860127bBrett Chabotsrc/junit/runner/StandardTestSuiteLoader.java \
2941b2b155ae49e696f71c65b8b30345663860127bBrett Chabotsrc/junit/runner/Version.java \
3041b2b155ae49e696f71c65b8b30345663860127bBrett Chabotsrc/junit/textui/ResultPrinter.java \
3141b2b155ae49e696f71c65b8b30345663860127bBrett Chabotsrc/junit/textui/TestRunner.java
3224c41072583e508dd0cd190785dabd07580e58a3Brett Chabot
3324c41072583e508dd0cd190785dabd07580e58a3Brett Chabot# List of junit javadoc source files for Android public API
3424c41072583e508dd0cd190785dabd07580e58a3Brett Chabot#
3524c41072583e508dd0cd190785dabd07580e58a3Brett Chabot# $(1): directory for search (to support use from frameworks/base)
3624c41072583e508dd0cd190785dabd07580e58a3Brett Chabotdefine junit_to_document
3741b2b155ae49e696f71c65b8b30345663860127bBrett Chabot $(core-junit-files) \
3841b2b155ae49e696f71c65b8b30345663860127bBrett Chabot $(junit-runner-files)
3924c41072583e508dd0cd190785dabd07580e58a3Brett Chabotendef
40