Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2955)

Unified Diff: services/shell/runner/host/BUILD.gn

Issue 2419723002: Move services/shell to services/service_manager (Closed)
Patch Set: rebase Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « services/shell/runner/common/switches.cc ('k') | services/shell/runner/host/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/shell/runner/host/BUILD.gn
diff --git a/services/shell/runner/host/BUILD.gn b/services/shell/runner/host/BUILD.gn
deleted file mode 100644
index c07a3eb84af1a6f5a6a5eedf83e1e9e630cf81b2..0000000000000000000000000000000000000000
--- a/services/shell/runner/host/BUILD.gn
+++ /dev/null
@@ -1,127 +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("//services/shell/public/cpp/service.gni")
-import("//mojo/public/tools/bindings/mojom.gni")
-import("//testing/test.gni")
-
-group("host") {
- testonly = true
-
- deps = [
- ":lib",
- ":mojo_runner_host_unittests",
- ]
-}
-
-source_set("native_library_runner") {
- sources = [
- "native_library_runner.cc",
- "native_library_runner.h",
- ]
-
- deps = [
- "//base",
- "//mojo/edk/system",
- "//services/shell",
- ]
-
- # This target has to include the public thunk headers, which generally
- # shouldn't be included without picking an implementation. We are providing
- # the implementation but the thunk header target cannot declare that we are
- # permitted to include it since it's in the public SDK and we are not.
- # Suppress include checking so we can still check the rest of the targets in
- # this file.
- check_includes = false
-}
-
-source_set("child_process_base") {
- sources = [
- "child_process_base.cc",
- "child_process_base.h",
- ]
-
- deps = [
- "//base",
- "//mojo/edk/system",
- "//services/shell",
- "//services/shell/public/interfaces",
- "//services/shell/runner:init",
- "//services/shell/runner/common",
- ]
-
- if (is_linux && !is_android) {
- sources += [
- "linux_sandbox.cc",
- "linux_sandbox.h",
- ]
-
- deps += [
- "//sandbox/linux:sandbox",
- "//sandbox/linux:sandbox_services",
- "//sandbox/linux:seccomp_bpf",
- ]
- }
-
- if (is_mac) {
- sources += [
- "mach_broker.cc",
- "mach_broker.h",
- ]
- }
-}
-
-source_set("lib") {
- sources = [
- "child_process.cc",
- "child_process.h",
- "child_process_host.cc",
- "child_process_host.h",
- "in_process_native_runner.cc",
- "in_process_native_runner.h",
- "out_of_process_native_runner.cc",
- "out_of_process_native_runner.h",
- ]
-
- deps = [
- ":child_process_base",
- ":native_library_runner",
- "//base:base_static",
- "//base:i18n",
- "//services/shell/public/cpp:sources",
- "//services/shell/runner:init",
- "//services/shell/runner/common",
- ]
-
- public_deps = [
- "//base",
- "//mojo/edk/system",
- "//mojo/public/cpp/system",
- "//services/shell",
- "//services/shell/public/interfaces",
- ]
-
- if (is_linux && !is_android) {
- deps += [ "//sandbox/linux:sandbox_services" ]
- }
-}
-
-test("mojo_runner_host_unittests") {
- sources = [
- "child_process_host_unittest.cc",
- "host_unittests.cc",
- "in_process_native_runner_unittest.cc",
- ]
-
- deps = [
- ":lib",
- "//base",
- "//base/test:test_support",
- "//mojo/edk/system",
- "//services/shell",
- "//services/shell/runner:init",
- "//services/shell/runner/common",
- "//testing/gtest",
- ]
-}
« no previous file with comments | « services/shell/runner/common/switches.cc ('k') | services/shell/runner/host/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698