Run GWT emul tests in a pure JRE.

Running GWT's emul tests in a pure JRE allows us to
verify that tests assert the correct behaviour. This was
previously done using devmode, but since its going away we
need to have another way of infering correct behaviour for
tests.

Change-Id: Ifbb2b87e13bd8b86d84cb2e76dbb209eb438a6ea
diff --git a/user/BUILD b/user/BUILD
index c60903f..d3ac5eb 100644
--- a/user/BUILD
+++ b/user/BUILD
@@ -653,3 +653,16 @@
     ),
     visibility = ["//third_party/java_src/j2cl:__subpackages__"],
 )
+
+filegroup(
+    name = "emul_test",
+    srcs = glob(
+        [
+            "test/com/google/gwt/emultest/**/*.java",
+            "test/com/google/gwt/testing/TestUtils.java",
+            "test/org/apache/commons/**/*.java",
+        ],
+        exclude = ["**/package-info.java"],
+    ),
+    visibility = ["//third_party/java_src/j2cl:__subpackages__"],
+)