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

Side by Side Diff: mojo/mojo_shell.gyp

Issue 1738663002: Hook embedded shell up to MojoShellConnection (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: self review 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 { 5 {
6 'targets': [{ 6 'targets': [{
7 'target_name': 'mojo_shell_lib', 7 'target_name': 'mojo_shell_lib',
8 'type': 'static_library', 8 'type': 'static_library',
9 'sources': [ 9 'sources': [
10 'common/mojo_scheme_register.cc', 10 'common/mojo_scheme_register.cc',
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 'type': 'static_library', 67 'type': 'static_library',
68 'variables': { 68 'variables': {
69 'mojom_files': [ 69 'mojom_files': [
70 'shell/tests/capability_filter_unittest.mojom', 70 'shell/tests/capability_filter_unittest.mojom',
71 'shell/tests/test.mojom', 71 'shell/tests/test.mojom',
72 ], 72 ],
73 }, 73 },
74 'includes': [ 74 'includes': [
75 'mojom_bindings_generator_explicit.gypi', 75 'mojom_bindings_generator_explicit.gypi',
76 ], 76 ],
77 }, {
78 'target_name': 'mojo_runner_connection_lib',
79 'type': 'static_library',
80 'sources': [
81 'shell/runner/child/runner_connection.cc',
82 'shell/runner/child/runner_connection.h',
83 ],
84 'dependencies': [
85 'mojo_runner_common_lib',
86 'mojo_runner_connection_bindings_lib',
87 '<(DEPTH)/base/base.gyp:base',
88 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base',
89 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_system_impl',
90 '<(DEPTH)/mojo/mojo_platform_handle.gyp:platform_handle',
91 '<(DEPTH)/mojo/mojo_public.gyp:mojo_message_pump_lib',
92 ],
93 }, {
94 'target_name': 'mojo_runner_common_lib',
95 'type': 'static_library',
96 'sources': [
97 'shell/runner/common/switches.cc',
98 'shell/runner/common/switches.h',
99 ],
100 'include_dirs': [
101 '..',
102 ],
103 }, {
104 'target_name': 'mojo_runner_connection_bindings_lib',
105 'type': 'static_library',
106 'dependencies': [
107 'mojo_runner_connection_mojom',
108 ],
109 }, {
110 'target_name': 'mojo_runner_connection_mojom',
111 'type': 'none',
112 'variables': {
113 'mojom_files': [
114 'shell/runner/child/child_controller.mojom',
115 ],
116 },
117 'includes': [
118 'mojom_bindings_generator_explicit.gypi',
119 ],
77 }], 120 }],
78 } 121 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698