Remove default resource dirs

The resource defaults only work when the user is in their repo root.
This leads to confusing different behavior based on the users current
working directory (this is still true of other flags even after this
change) and their mode.

Those resources are included in the core-tests-support target.

The resources in luni/src/test/resources include a .class file which
causes problems for dx if you include both the core-tests.jar *and* the
default resources are found.

The best approaches are probably:

make -j32 core-tests-support
vogar --mode <host|device> --classpath out/target/common/obj/JAVA_LIBRARIES/core-tests-support_intermediates/javalib.jar <Test .java file>

or

make -j32 core-tests
vogar --mode <host|device> --classpath out/target/common/obj/JAVA_LIBRARIES/core-tests_intermediates/javalib.jar <name of Test class>

Bug: 19081566
Change-Id: Id4335cb81c2c6b21c540d43250f087df9c80fb74
2 files changed