| Index: mojo/nacl/BUILD.gn
|
| diff --git a/mojo/nacl/BUILD.gn b/mojo/nacl/BUILD.gn
|
| index 98d2fe3ed25327da0ae8d8890628b11ac53f6529..cf008b4a1a8fabeaf6d31e7e3c4d50c81c59f4ff 100644
|
| --- a/mojo/nacl/BUILD.gn
|
| +++ b/mojo/nacl/BUILD.gn
|
| @@ -2,20 +2,19 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| +import("//mojo/public/mojo_sdk.gni")
|
| +
|
| # Untrusted code
|
| if (is_nacl) {
|
| - # Unit test for the Mojo public API.
|
| + # Unit test for the Mojo public C API.
|
| + # TODO(vtl): Should also have a test for the C++ API?
|
| executable("monacl_test") {
|
| testonly = true
|
| - sources = [
|
| - "//mojo/public/cpp/system/tests/core_unittest.cc",
|
| - "//mojo/public/cpp/system/tests/macros_unittest.cc",
|
| - ]
|
| + sources = []
|
| deps = [
|
| - "//mojo/public/c/system/tests:tests",
|
| - "//mojo/public/cpp/system:system",
|
| + "//mojo/public/c/system/tests",
|
| "//mojo/public/platform/nacl:mojo",
|
| - "//testing/gtest:gtest",
|
| + "//testing/gtest",
|
| "//testing/gtest:gtest_main",
|
| ]
|
| }
|
|
|