Home | History | Annotate | Download | only in junit
      1 # -*- mode: makefile -*-
      2 # List of junit files include in documentation.
      3 # Shared with frameworks/base.
      4 # based off libcore/Docs.mk
      5 
      6 
      7 # List of source to build into the core-junit library
      8 #
      9 # The list also includes all junit files in public API.
     10 #
     11 core-junit-files := \
     12 src/junit/framework/Assert.java \
     13 src/junit/framework/AssertionFailedError.java \
     14 src/junit/framework/ComparisonCompactor.java \
     15 src/junit/framework/ComparisonFailure.java \
     16 src/junit/framework/Protectable.java \
     17 src/junit/framework/Test.java \
     18 src/junit/framework/TestCase.java \
     19 src/junit/framework/TestFailure.java \
     20 src/junit/framework/TestListener.java \
     21 src/junit/framework/TestResult.java \
     22 src/junit/framework/TestSuite.java
     23 
     24 # TODO: add define for public API files in android.test.runner
     25 
     26 # List of junit javadoc source files for Android public API
     27 #
     28 # $(1): directory for search (to support use from frameworks/base)
     29 define junit_to_document
     30  $(core-junit-files)
     31 endef
     32