Index: mojo/edk/test/BUILD.gn |
diff --git a/mojo/public/cpp/test_support/BUILD.gn b/mojo/edk/test/BUILD.gn |
similarity index 50% |
copy from mojo/public/cpp/test_support/BUILD.gn |
copy to mojo/edk/test/BUILD.gn |
index 6c73c29c5696f069f70f94aae7c0cb7533f6f995..6a6f3126755513047f9b4faaf49fbaa0590c273b 100644 |
--- a/mojo/public/cpp/test_support/BUILD.gn |
+++ b/mojo/edk/test/BUILD.gn |
@@ -2,19 +2,21 @@ |
# Use of this source code is governed by a BSD-style license that can be |
# found in the LICENSE file. |
-# GYP version: mojo/mojo_public_tests.gypi:mojo_public_test_utils |
-source_set("test_utils") { |
+# GYP version: mojo/mojo_base.gyp:mojo_common_test_support |
+source_set("test_support") { |
testonly = true |
+ sources = [ |
+ "multiprocess_test_helper.cc", |
+ "multiprocess_test_helper.h", |
+ "test_utils.h", |
+ "test_utils_posix.cc", |
+ "test_utils_win.cc", |
+ ] |
+ |
deps = [ |
"//base", |
- "//mojo/public/c/test_support", |
- "//mojo/public/cpp/system", |
+ "//base/test:test_support", |
+ "//mojo/edk/system", |
"//testing/gtest", |
] |
- |
- sources = [ |
- "lib/test_support.cc", |
- "lib/test_utils.cc", |
- "test_utils.h", |
- ] |
} |