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

Side by Side Diff: mojo/mojo.gyp

Issue 522443003: Accept inbound connections on unix domain socket (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bug407782
Patch Set: Fix clang style complaints Created 6 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 unified diff | Download patch
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'target_defaults': { 6 'target_defaults': {
7 'conditions': [ 7 'conditions': [
8 ['mojo_shell_debug_url != ""', { 8 ['mojo_shell_debug_url != ""', {
9 'defines': [ 9 'defines': [
10 'MOJO_SHELL_DEBUG=1', 10 'MOJO_SHELL_DEBUG=1',
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 'shell/child_process.h', 169 'shell/child_process.h',
170 'shell/child_process_host.cc', 170 'shell/child_process_host.cc',
171 'shell/child_process_host.h', 171 'shell/child_process_host.h',
172 'shell/context.cc', 172 'shell/context.cc',
173 'shell/context.h', 173 'shell/context.h',
174 'shell/dbus_application_loader_linux.cc', 174 'shell/dbus_application_loader_linux.cc',
175 'shell/dbus_application_loader_linux.h', 175 'shell/dbus_application_loader_linux.h',
176 'shell/dynamic_application_loader.cc', 176 'shell/dynamic_application_loader.cc',
177 'shell/dynamic_application_loader.h', 177 'shell/dynamic_application_loader.h',
178 'shell/dynamic_service_runner.h', 178 'shell/dynamic_service_runner.h',
179 'shell/external_application_listener.cc',
180 'shell/external_application_listener.h',
181 'shell/external_application_registrar.mojom',
182 'shell/external_application_registrar_connection.cc',
183 'shell/external_application_registrar_connection.h',
184 'shell/incoming_connection_listener.cc',
185 'shell/incoming_connection_listener.h',
179 'shell/init.cc', 186 'shell/init.cc',
180 'shell/init.h', 187 'shell/init.h',
181 'shell/in_process_dynamic_service_runner.cc', 188 'shell/in_process_dynamic_service_runner.cc',
182 'shell/in_process_dynamic_service_runner.h', 189 'shell/in_process_dynamic_service_runner.h',
183 'shell/mojo_url_resolver.cc', 190 'shell/mojo_url_resolver.cc',
184 'shell/mojo_url_resolver.h', 191 'shell/mojo_url_resolver.h',
185 'shell/out_of_process_dynamic_service_runner.cc', 192 'shell/out_of_process_dynamic_service_runner.cc',
186 'shell/out_of_process_dynamic_service_runner.h', 193 'shell/out_of_process_dynamic_service_runner.h',
187 'shell/switches.cc', 194 'shell/switches.cc',
188 'shell/switches.h', 195 'shell/switches.h',
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 'mojo_base.gyp:mojo_environment_chromium', 275 'mojo_base.gyp:mojo_environment_chromium',
269 'mojo_base.gyp:mojo_system_impl', 276 'mojo_base.gyp:mojo_system_impl',
270 'mojo_shell_lib', 277 'mojo_shell_lib',
271 'mojo_test_app', 278 'mojo_test_app',
272 'mojo_test_request_tracker_app', 279 'mojo_test_request_tracker_app',
273 'mojo_test_service_bindings', 280 'mojo_test_service_bindings',
274 ], 281 ],
275 'sources': [ 282 'sources': [
276 'shell/child_process_host_unittest.cc', 283 'shell/child_process_host_unittest.cc',
277 'shell/dynamic_application_loader_unittest.cc', 284 'shell/dynamic_application_loader_unittest.cc',
285 'shell/external_application_listener_unittest.cc',
278 'shell/in_process_dynamic_service_runner_unittest.cc', 286 'shell/in_process_dynamic_service_runner_unittest.cc',
279 'shell/shell_test_base.cc', 287 'shell/shell_test_base.cc',
280 'shell/shell_test_base.h', 288 'shell/shell_test_base.h',
281 'shell/shell_test_base_unittest.cc', 289 'shell/shell_test_base_unittest.cc',
282 'shell/shell_test_main.cc', 290 'shell/shell_test_main.cc',
283 ], 291 ],
284 'conditions': [ 292 'conditions': [
285 ['OS == "android"', { 293 ['OS == "android"', {
286 'dependencies': [ 294 'dependencies': [
287 '../testing/android/native_test.gyp:native_test_native_code', 295 '../testing/android/native_test.gyp:native_test_native_code',
288 ], 296 ],
289 }], 297 }],
290 ], 298 ],
291 }, 299 },
292 { 300 {
301 # GN version: //mojo/shell:mojo_external_application_tests
302 'target_name': 'mojo_external_application_tests',
303 'type': '<(gtest_target_type)',
304 'dependencies': [
305 '../base/base.gyp:base',
306 '../base/base.gyp:test_support_base',
307 '../testing/gtest.gyp:gtest',
308 '../net/net.gyp:net_test_support',
309 '../url/url.gyp:url_lib',
310 'mojo_application_manager',
311 'mojo_base.gyp:mojo_common_lib',
312 'mojo_base.gyp:mojo_environment_chromium',
313 'mojo_base.gyp:mojo_system_impl',
314 'mojo_shell_lib',
315 ],
316 'sources': [
317 'shell/incoming_connection_listener_unittest.cc',
318 'shell/external_application_listener_unittest.cc',
319 'shell/external_application_test_main.cc',
320 ],
321 },
322 {
293 # GN version: //mojo/application_manager 323 # GN version: //mojo/application_manager
294 'target_name': 'mojo_application_manager', 324 'target_name': 'mojo_application_manager',
295 'type': '<(component)', 325 'type': '<(component)',
296 'defines': [ 326 'defines': [
297 'MOJO_APPLICATION_MANAGER_IMPLEMENTATION', 327 'MOJO_APPLICATION_MANAGER_IMPLEMENTATION',
298 ], 328 ],
299 'dependencies': [ 329 'dependencies': [
300 '../base/base.gyp:base', 330 '../base/base.gyp:base',
301 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 331 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
302 '../url/url.gyp:url_lib', 332 '../url/url.gyp:url_lib',
(...skipping 13 matching lines...) Expand all
316 'application_manager/background_shell_application_loader.cc', 346 'application_manager/background_shell_application_loader.cc',
317 'application_manager/background_shell_application_loader.h', 347 'application_manager/background_shell_application_loader.h',
318 ], 348 ],
319 'export_dependent_settings': [ 349 'export_dependent_settings': [
320 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 350 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
321 'mojo_base.gyp:mojo_application_bindings', 351 'mojo_base.gyp:mojo_application_bindings',
322 'mojo_network_bindings', 352 'mojo_network_bindings',
323 ], 353 ],
324 }, 354 },
325 { 355 {
326 # GN version: //mojo/application_manager:unittests 356 # GN version: //mojo/application_manager:mojo_application_manager_unittest s
327 'target_name': 'mojo_application_manager_unittests', 357 'target_name': 'mojo_application_manager_unittests',
328 'type': 'executable', 358 'type': 'executable',
329 'dependencies': [ 359 'dependencies': [
330 '../base/base.gyp:base', 360 '../base/base.gyp:base',
331 '../testing/gtest.gyp:gtest', 361 '../testing/gtest.gyp:gtest',
332 '../url/url.gyp:url_lib', 362 '../url/url.gyp:url_lib',
333 'mojo_application_manager', 363 'mojo_application_manager',
334 'mojo_base.gyp:mojo_common_lib', 364 'mojo_base.gyp:mojo_common_lib',
335 'mojo_base.gyp:mojo_cpp_bindings', 365 'mojo_base.gyp:mojo_cpp_bindings',
336 'mojo_base.gyp:mojo_environment_chromium', 366 'mojo_base.gyp:mojo_environment_chromium',
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
654 'mojo_python_unittests.isolate', 684 'mojo_python_unittests.isolate',
655 ], 685 ],
656 'sources': [ 686 'sources': [
657 'mojo_python_unittests.isolate', 687 'mojo_python_unittests.isolate',
658 ], 688 ],
659 }, 689 },
660 ], 690 ],
661 }], 691 }],
662 ], 692 ],
663 } 693 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698