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

Side by Side Diff: mojo/shell/runner/host/BUILD.gn

Issue 1722743002: Adds ability for chrome to behave as mojo_runner (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge to tip of tree Created 4 years, 10 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 unified diff | Download patch
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//mojo/public/mojo_application.gni") 5 import("//mojo/public/mojo_application.gni")
6 import("//mojo/public/tools/bindings/mojom.gni") 6 import("//mojo/public/tools/bindings/mojom.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 8
9 group("host") { 9 group("host") {
10 testonly = true 10 testonly = true
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 "//mojo/shell/runner/common", 54 "//mojo/shell/runner/common",
55 ] 55 ]
56 } 56 }
57 57
58 source_set("lib") { 58 source_set("lib") {
59 sources = [ 59 sources = [
60 "child_process.cc", 60 "child_process.cc",
61 "child_process.h", 61 "child_process.h",
62 "child_process_host.cc", 62 "child_process_host.cc",
63 "child_process_host.h", 63 "child_process_host.h",
64 "command_line_switch.h",
65 "in_process_native_runner.cc", 64 "in_process_native_runner.cc",
66 "in_process_native_runner.h", 65 "in_process_native_runner.h",
67 "out_of_process_native_runner.cc", 66 "out_of_process_native_runner.cc",
68 "out_of_process_native_runner.h", 67 "out_of_process_native_runner.h",
69 ] 68 ]
70 69
71 deps = [ 70 deps = [
72 ":child_process_base", 71 ":child_process_base",
73 ":native_application_support", 72 ":native_application_support",
74 "//base", 73 "//base",
(...skipping 29 matching lines...) Expand all
104 "host_unittests.cc", 103 "host_unittests.cc",
105 "in_process_native_runner_unittest.cc", 104 "in_process_native_runner_unittest.cc",
106 ] 105 ]
107 106
108 deps = [ 107 deps = [
109 ":lib", 108 ":lib",
110 "//base", 109 "//base",
111 "//base/test:test_support", 110 "//base/test:test_support",
112 "//mojo/edk/system", 111 "//mojo/edk/system",
113 "//mojo/message_pump", 112 "//mojo/message_pump",
113 "//mojo/shell",
114 "//mojo/shell/runner:init", 114 "//mojo/shell/runner:init",
115 "//mojo/shell/runner/common", 115 "//mojo/shell/runner/common",
116 "//testing/gtest", 116 "//testing/gtest",
117 ] 117 ]
118 } 118 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698