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

Side by Side Diff: mojo/mojo_base.gyp

Issue 1877753003: Move mojo\shell to services\shell (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@62scan
Patch Set: . Created 4 years, 8 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
« no previous file with comments | « mojo/common/DEPS ('k') | mojo/mojo_shell.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 # Essential components (and their tests) that are needed to build 5 # Essential components (and their tests) that are needed to build
6 # Chrome should be here. Other components that are useful only in 6 # Chrome should be here. Other components that are useful only in
7 # Mojo land like mojo_shell should be in mojo.gyp. 7 # Mojo land like mojo_shell should be in mojo.gyp.
8 { 8 {
9 'includes': [ 9 'includes': [
10 'mojo_variables.gypi', 10 'mojo_variables.gypi',
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 'message_pump/message_pump_mojo_unittest.cc', 119 'message_pump/message_pump_mojo_unittest.cc',
120 ], 120 ],
121 }, 121 },
122 { 122 {
123 'target_name': 'mojo_application_bindings_mojom', 123 'target_name': 'mojo_application_bindings_mojom',
124 'type': 'none', 124 'type': 'none',
125 'variables': { 125 'variables': {
126 'mojom_files': [ 126 'mojom_files': [
127 'services/catalog/public/interfaces/catalog.mojom', 127 'services/catalog/public/interfaces/catalog.mojom',
128 'services/catalog/public/interfaces/resolver.mojom', 128 'services/catalog/public/interfaces/resolver.mojom',
129 'shell/public/interfaces/capabilities.mojom', 129 '../services/shell/public/interfaces/capabilities.mojom',
130 'shell/public/interfaces/connector.mojom', 130 '../services/shell/public/interfaces/connector.mojom',
131 'shell/public/interfaces/interface_provider.mojom', 131 '../services/shell/public/interfaces/interface_provider.mojom',
132 'shell/public/interfaces/shell.mojom', 132 '../services/shell/public/interfaces/shell.mojom',
133 'shell/public/interfaces/shell_client.mojom', 133 '../services/shell/public/interfaces/shell_client.mojom',
134 'shell/public/interfaces/shell_client_factory.mojom', 134 '../services/shell/public/interfaces/shell_client_factory.mojom',
135 'shell/public/interfaces/shell_resolver.mojom', 135 '../services/shell/public/interfaces/shell_resolver.mojom',
136 ], 136 ],
137 }, 137 },
138 'includes': [ 'mojom_bindings_generator_explicit.gypi' ], 138 'includes': [ 'mojom_bindings_generator_explicit.gypi' ],
139 }, 139 },
140 { 140 {
141 # GN version: //mojo/shell/public/cpp 141 # GN version: //services/shell/public/cpp
142 'target_name': 'mojo_application_base', 142 'target_name': 'mojo_application_base',
143 'type': 'static_library', 143 'type': 'static_library',
144 'sources': [ 144 'sources': [
145 'shell/public/cpp/application_runner.h', 145 '../services/shell/public/cpp/application_runner.h',
146 'shell/public/cpp/capabilities.h', 146 '../services/shell/public/cpp/capabilities.h',
147 'shell/public/cpp/connect.h', 147 '../services/shell/public/cpp/connect.h',
148 'shell/public/cpp/connection.h', 148 '../services/shell/public/cpp/connection.h',
149 'shell/public/cpp/connector.h', 149 '../services/shell/public/cpp/connector.h',
150 'shell/public/cpp/identity.h', 150 '../services/shell/public/cpp/identity.h',
151 'shell/public/cpp/initialize_base_and_icu.cc', 151 '../services/shell/public/cpp/initialize_base_and_icu.cc',
152 'shell/public/cpp/initialize_base_and_icu.h', 152 '../services/shell/public/cpp/initialize_base_and_icu.h',
153 'shell/public/cpp/interface_binder.h', 153 '../services/shell/public/cpp/interface_binder.h',
154 'shell/public/cpp/interface_factory.h', 154 '../services/shell/public/cpp/interface_factory.h',
155 'shell/public/cpp/interface_factory_impl.h', 155 '../services/shell/public/cpp/interface_factory_impl.h',
156 'shell/public/cpp/interface_registry.h', 156 '../services/shell/public/cpp/interface_registry.h',
157 'shell/public/cpp/lib/application_runner.cc', 157 '../services/shell/public/cpp/lib/application_runner.cc',
158 'shell/public/cpp/lib/capabilities.cc', 158 '../services/shell/public/cpp/lib/capabilities.cc',
159 'shell/public/cpp/lib/connection_impl.cc', 159 '../services/shell/public/cpp/lib/connection_impl.cc',
160 'shell/public/cpp/lib/connection_impl.h', 160 '../services/shell/public/cpp/lib/connection_impl.h',
161 'shell/public/cpp/lib/connector_impl.cc', 161 '../services/shell/public/cpp/lib/connector_impl.cc',
162 'shell/public/cpp/lib/connector_impl.h', 162 '../services/shell/public/cpp/lib/connector_impl.h',
163 'shell/public/cpp/lib/identity.cc', 163 '../services/shell/public/cpp/lib/identity.cc',
164 'shell/public/cpp/lib/interface_factory_binder.h', 164 '../services/shell/public/cpp/lib/interface_factory_binder.h',
165 'shell/public/cpp/lib/interface_registry.cc', 165 '../services/shell/public/cpp/lib/interface_registry.cc',
166 'shell/public/cpp/lib/message_loop_ref.cc', 166 '../services/shell/public/cpp/lib/message_loop_ref.cc',
167 'shell/public/cpp/lib/names.cc', 167 '../services/shell/public/cpp/lib/names.cc',
168 'shell/public/cpp/lib/shell_client.cc', 168 '../services/shell/public/cpp/lib/shell_client.cc',
169 'shell/public/cpp/lib/shell_connection.cc', 169 '../services/shell/public/cpp/lib/shell_connection.cc',
170 'shell/public/cpp/message_loop_ref.h', 170 '../services/shell/public/cpp/message_loop_ref.h',
171 'shell/public/cpp/names.h', 171 '../services/shell/public/cpp/names.h',
172 'shell/public/cpp/shell.h', 172 '../services/shell/public/cpp/shell.h',
173 'shell/public/cpp/shell_client.h', 173 '../services/shell/public/cpp/shell_client.h',
174 'shell/public/cpp/shell_connection.h', 174 '../services/shell/public/cpp/shell_connection.h',
175 ], 175 ],
176 'dependencies': [ 176 'dependencies': [
177 '../base/base.gyp:base_i18n', 177 '../base/base.gyp:base_i18n',
178 'mojo_application_bindings', 178 'mojo_application_bindings',
179 'mojo_public.gyp:mojo_message_pump_lib', 179 'mojo_public.gyp:mojo_message_pump_lib',
180 ], 180 ],
181 }, 181 },
182 { 182 {
183 # GN version: //mojo/public/interfaces/application:application 183 # GN version: //mojo/public/interfaces/application:application
184 'target_name': 'mojo_application_bindings', 184 'target_name': 'mojo_application_bindings',
(...skipping 10 matching lines...) Expand all
195 'dependencies': [ 195 'dependencies': [
196 '../base/base.gyp:base', 196 '../base/base.gyp:base',
197 ], 197 ],
198 'sources': [ 198 'sources': [
199 'test/test_utils.h', 199 'test/test_utils.h',
200 'test/test_utils_posix.cc', 200 'test/test_utils_posix.cc',
201 'test/test_utils_win.cc', 201 'test/test_utils_win.cc',
202 ], 202 ],
203 }, 203 },
204 { 204 {
205 # GN version: //mojo/shell/public/cpp/tests 205 # GN version: //services/shell/public/cpp/tests
206 'target_name': 'mojo_public_application_unittests', 206 'target_name': 'mojo_public_application_unittests',
207 'type': 'executable', 207 'type': 'executable',
208 'dependencies': [ 208 'dependencies': [
209 '../base/base.gyp:base', 209 '../base/base.gyp:base',
210 '../testing/gtest.gyp:gtest', 210 '../testing/gtest.gyp:gtest',
211 'mojo_application_base', 211 'mojo_application_base',
212 'mojo_edk.gyp:mojo_run_all_unittests', 212 'mojo_edk.gyp:mojo_run_all_unittests',
213 ], 213 ],
214 'sources': [ 214 'sources': [
215 'shell/public/cpp/tests/interface_registry_unittest.cc', 215 '../services/shell/public/cpp/tests/interface_registry_unittest.cc',
216 ], 216 ],
217 }, 217 },
218 { 218 {
219 # Technically, these should be in the mojo_services.gyp, but this causes 219 # Technically, these should be in the mojo_services.gyp, but this causes
220 # a cycle since the ios generator can't have gyp files refer to each 220 # a cycle since the ios generator can't have gyp files refer to each
221 # other, even if the targets don't form a cycle. 221 # other, even if the targets don't form a cycle.
222 # 222 #
223 # GN version: //mojo/services/tracing:lib 223 # GN version: //mojo/services/tracing:lib
224 'target_name': 'tracing_service', 224 'target_name': 'tracing_service',
225 'type': 'static_library', 225 'type': 'static_library',
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 '../build/isolate.gypi', 327 '../build/isolate.gypi',
328 ], 328 ],
329 'sources': [ 329 'sources': [
330 'mojo_common_unittests.isolate', 330 'mojo_common_unittests.isolate',
331 ], 331 ],
332 }, 332 },
333 ], 333 ],
334 }], 334 }],
335 ] 335 ]
336 } 336 }
OLDNEW
« no previous file with comments | « mojo/common/DEPS ('k') | mojo/mojo_shell.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698