| Index: services/shell/tests/shell/BUILD.gn
|
| diff --git a/services/shell/tests/shell/BUILD.gn b/services/shell/tests/shell/BUILD.gn
|
| deleted file mode 100644
|
| index 7d7027464d6a64af4ef90ce1499d5dfac00798f5..0000000000000000000000000000000000000000
|
| --- a/services/shell/tests/shell/BUILD.gn
|
| +++ /dev/null
|
| @@ -1,102 +0,0 @@
|
| -# Copyright 2016 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("//services/shell/public/cpp/service.gni")
|
| -import("//services/shell/public/service_manifest.gni")
|
| -import("//mojo/public/tools/bindings/mojom.gni")
|
| -import("//testing/test.gni")
|
| -
|
| -source_set("shell") {
|
| - testonly = true
|
| - sources = [
|
| - "shell_unittest.cc",
|
| - ]
|
| -
|
| - deps = [
|
| - ":interfaces",
|
| - "//base",
|
| - "//base/test:test_config",
|
| - "//mojo/common:common_base",
|
| - "//services/shell/public/cpp:service_test_support",
|
| - "//services/shell/public/cpp:sources",
|
| - "//services/shell/public/interfaces",
|
| - ]
|
| -
|
| - data_deps = [
|
| - ":manifest",
|
| - ":shell_unittest_driver",
|
| - ":shell_unittest_target",
|
| - ]
|
| -}
|
| -
|
| -mojom("interfaces") {
|
| - sources = [
|
| - "shell_unittest.mojom",
|
| - ]
|
| -
|
| - deps = [
|
| - "//services/shell/public/interfaces",
|
| - ]
|
| -}
|
| -
|
| -service_manifest("manifest") {
|
| - name = "shell_unittest"
|
| - source = "shell_unittest_manifest.json"
|
| -}
|
| -
|
| -executable("shell_unittest_driver") {
|
| - testonly = true
|
| -
|
| - sources = [
|
| - "driver.cc",
|
| - ]
|
| -
|
| - deps = [
|
| - ":interfaces",
|
| - "//base",
|
| - "//build/win:default_exe_manifest",
|
| - "//mojo/edk/system",
|
| - "//services/shell/public/cpp",
|
| - "//services/shell/public/interfaces",
|
| - "//services/shell/runner:init",
|
| - "//services/shell/runner/child:test_native_main",
|
| - "//services/shell/runner/common",
|
| - ]
|
| -
|
| - data_deps = [
|
| - ":driver_manifest",
|
| - ]
|
| -}
|
| -
|
| -service_manifest("driver_manifest") {
|
| - type = "exe"
|
| - name = "shell_unittest_driver"
|
| - source = "driver_manifest.json"
|
| -}
|
| -
|
| -executable("shell_unittest_target") {
|
| - testonly = true
|
| -
|
| - sources = [
|
| - "target.cc",
|
| - ]
|
| -
|
| - deps = [
|
| - ":interfaces",
|
| - "//base",
|
| - "//build/win:default_exe_manifest",
|
| - "//services/shell/public/cpp",
|
| - "//services/shell/runner/child:test_native_main",
|
| - ]
|
| -
|
| - data_deps = [
|
| - ":target_manifest",
|
| - ]
|
| -}
|
| -
|
| -service_manifest("target_manifest") {
|
| - type = "exe"
|
| - name = "shell_unittest_target"
|
| - source = "target_manifest.json"
|
| -}
|
|
|