Index: mojo/shell/runner/child/BUILD.gn |
diff --git a/mojo/shell/runner/child/BUILD.gn b/mojo/shell/runner/child/BUILD.gn |
deleted file mode 100644 |
index 0276b3d1fdc2bd725b5b4ea59fe7f96c7988b531..0000000000000000000000000000000000000000 |
--- a/mojo/shell/runner/child/BUILD.gn |
+++ /dev/null |
@@ -1,90 +0,0 @@ |
-# Copyright 2015 The Chromium Authors. All rights reserved. |
-# Use of this source code is governed by a BSD-style license that can be |
-# found in the LICENSE file. |
- |
-import("//mojo/public/mojo_application.gni") |
-import("//mojo/public/mojo_application_manifest.gni") |
-import("//mojo/public/tools/bindings/mojom.gni") |
- |
-group("child") { |
- testonly = true |
- deps = [ |
- ":apptests", |
- ] |
-} |
- |
-source_set("test_native_main") { |
- sources = [ |
- "test_native_main.cc", |
- "test_native_main.h", |
- ] |
- |
- public_deps = [ |
- "//mojo/shell/runner:init", |
- ] |
- |
- deps = [ |
- "//base", |
- "//mojo/edk/system", |
- "//mojo/message_pump", |
- "//mojo/shell/public/cpp", |
- "//mojo/shell/runner/common", |
- ] |
-} |
- |
-mojom("apptest_interfaces") { |
- sources = [ |
- "test_native_service.mojom", |
- ] |
- |
- deps = [ |
- "//mojo/shell/public/interfaces", |
- ] |
- |
- import_dirs = [ "//mojo/services" ] |
-} |
- |
-mojo_native_application("apptests") { |
- output_name = "mojo_runner_child_apptest" |
- testonly = true |
- avoid_runner_cycle = true |
- |
- sources = [ |
- "native_apptest.cc", |
- ] |
- |
- deps = [ |
- ":apptest_interfaces", |
- "//base", |
- "//base/test:test_config", |
- "//mojo/shell/public/cpp:sources", |
- "//mojo/shell/public/cpp:test_support", |
- ] |
- |
- data_deps = [ |
- ":manifest", |
- ":native_target", |
- ] |
-} |
- |
-mojo_application_manifest("manifest") { |
- application_name = "mojo_runner_child_apptest" |
- source = "manifest.json" |
-} |
- |
-executable("native_target") { |
- output_name = "mojo_runner_child_apptest_native_target" |
- testonly = true |
- |
- sources = [ |
- "native_apptest_target.cc", |
- ] |
- |
- deps = [ |
- ":apptest_interfaces", |
- ":test_native_main", |
- "//base", |
- "//build/config/sanitizers:deps", |
- "//mojo/shell/public/cpp", |
- ] |
-} |