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

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: Deleted extra curly brace, which was closing a namespace too early 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
« no previous file with comments | « mojo/application_manager/application_manager.cc ('k') | mojo/shell/BUILD.gn » ('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 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 'mojo_wm_flow_init', 80 'mojo_wm_flow_init',
81 'mojo_wm_flow_wm', 81 'mojo_wm_flow_wm',
82 'mojo_view_manager', 82 'mojo_view_manager',
83 'mojo_view_manager_unittests', 83 'mojo_view_manager_unittests',
84 ], 84 ],
85 }], 85 }],
86 ['OS == "linux"', { 86 ['OS == "linux"', {
87 'dependencies': [ 87 'dependencies': [
88 'mojo_dbus_echo', 88 'mojo_dbus_echo',
89 'mojo_dbus_echo_service', 89 'mojo_dbus_echo_service',
90 'mojo_external_application_tests',
90 ], 91 ],
91 }], 92 }],
92 ['component != "shared_library" and OS == "linux"', { 93 ['component != "shared_library" and OS == "linux"', {
93 'dependencies': [ 94 'dependencies': [
94 'mojo_python_bindings', 95 'mojo_python_bindings',
95 'mojo_python_embedder', 96 'mojo_python_embedder',
96 'mojo_python_system', 97 'mojo_python_system',
97 'mojo_python', 98 'mojo_python',
98 ], 99 ],
99 }], 100 }],
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 'shell/child_process.h', 170 'shell/child_process.h',
170 'shell/child_process_host.cc', 171 'shell/child_process_host.cc',
171 'shell/child_process_host.h', 172 'shell/child_process_host.h',
172 'shell/context.cc', 173 'shell/context.cc',
173 'shell/context.h', 174 'shell/context.h',
174 'shell/dbus_application_loader_linux.cc', 175 'shell/dbus_application_loader_linux.cc',
175 'shell/dbus_application_loader_linux.h', 176 'shell/dbus_application_loader_linux.h',
176 'shell/dynamic_application_loader.cc', 177 'shell/dynamic_application_loader.cc',
177 'shell/dynamic_application_loader.h', 178 'shell/dynamic_application_loader.h',
178 'shell/dynamic_service_runner.h', 179 'shell/dynamic_service_runner.h',
180 'shell/external_application_listener_posix.cc',
181 'shell/external_application_listener_win.cc',
182 'shell/external_application_listener.h',
183 'shell/external_application_registrar.mojom',
184 'shell/incoming_connection_listener_posix.cc',
185 'shell/incoming_connection_listener_posix.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',
189 'shell/task_runners.cc', 196 'shell/task_runners.cc',
190 'shell/task_runners.h', 197 'shell/task_runners.h',
191 'shell/test_child_process.cc', 198 'shell/test_child_process.cc',
192 'shell/test_child_process.h', 199 'shell/test_child_process.h',
193 'shell/ui_application_loader_android.cc', 200 'shell/ui_application_loader_android.cc',
194 'shell/ui_application_loader_android.h', 201 'shell/ui_application_loader_android.h',
195 ], 202 ],
196 'conditions': [ 203 'conditions': [
197 ['component=="shared_library"', { 204 ['component=="shared_library"', {
198 'dependencies': [ 205 'dependencies': [
199 '../ui/gl/gl.gyp:gl', 206 '../ui/gl/gl.gyp:gl',
200 ], 207 ],
201 }], 208 }],
202 ['OS=="linux"', { 209 ['OS=="linux"', {
203 'dependencies': [ 210 'dependencies': [
204 '../build/linux/system.gyp:dbus', 211 '../build/linux/system.gyp:dbus',
205 '../dbus/dbus.gyp:dbus', 212 '../dbus/dbus.gyp:dbus',
206 ], 213 ],
214 'sources': [
215 'shell/external_application_registrar_connection.cc',
216 'shell/external_application_registrar_connection.h',
217 ],
207 }], 218 }],
208 ['OS=="android"', { 219 ['OS=="android"', {
209 'dependencies': [ 220 'dependencies': [
210 'mojo_network_service_lib', 221 'mojo_network_service_lib',
211 'mojo_native_viewport_service_lib', 222 'mojo_native_viewport_service_lib',
212 ], 223 ],
213 'sources': [ 224 'sources': [
214 'shell/network_application_loader.cc', 225 'shell/network_application_loader.cc',
215 'shell/network_application_loader.h', 226 'shell/network_application_loader.h',
216 ], 227 ],
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 'application_manager/background_shell_application_loader.cc', 327 'application_manager/background_shell_application_loader.cc',
317 'application_manager/background_shell_application_loader.h', 328 'application_manager/background_shell_application_loader.h',
318 ], 329 ],
319 'export_dependent_settings': [ 330 'export_dependent_settings': [
320 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 331 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
321 'mojo_base.gyp:mojo_application_bindings', 332 'mojo_base.gyp:mojo_application_bindings',
322 'mojo_network_bindings', 333 'mojo_network_bindings',
323 ], 334 ],
324 }, 335 },
325 { 336 {
326 # GN version: //mojo/application_manager:unittests 337 # GN version: //mojo/application_manager:mojo_application_manager_unittest s
327 'target_name': 'mojo_application_manager_unittests', 338 'target_name': 'mojo_application_manager_unittests',
328 'type': 'executable', 339 'type': 'executable',
329 'dependencies': [ 340 'dependencies': [
330 '../base/base.gyp:base', 341 '../base/base.gyp:base',
331 '../testing/gtest.gyp:gtest', 342 '../testing/gtest.gyp:gtest',
332 '../url/url.gyp:url_lib', 343 '../url/url.gyp:url_lib',
333 'mojo_application_manager', 344 'mojo_application_manager',
334 'mojo_base.gyp:mojo_common_lib', 345 'mojo_base.gyp:mojo_common_lib',
335 'mojo_base.gyp:mojo_cpp_bindings', 346 'mojo_base.gyp:mojo_cpp_bindings',
336 'mojo_base.gyp:mojo_environment_chromium', 347 'mojo_base.gyp:mojo_environment_chromium',
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
439 'mojo_base.gyp:mojo_application_chromium', 450 'mojo_base.gyp:mojo_application_chromium',
440 'mojo_base.gyp:mojo_common_lib', 451 'mojo_base.gyp:mojo_common_lib',
441 'mojo_base.gyp:mojo_system_impl', 452 'mojo_base.gyp:mojo_system_impl',
442 'mojo_external_service_bindings', 453 'mojo_external_service_bindings',
443 ], 454 ],
444 'sources': [ 455 'sources': [
445 'dbus/dbus_external_service.h', 456 'dbus/dbus_external_service.h',
446 'dbus/dbus_external_service.cc', 457 'dbus/dbus_external_service.cc',
447 ], 458 ],
448 }, 459 },
460 {
461 # GN version: //mojo/shell:mojo_external_application_tests
462 'target_name': 'mojo_external_application_tests',
463 'type': '<(gtest_target_type)',
464 'dependencies': [
465 '../base/base.gyp:base',
466 '../base/base.gyp:test_support_base',
467 '../testing/gtest.gyp:gtest',
468 '../net/net.gyp:net_test_support',
469 '../url/url.gyp:url_lib',
470 'mojo_application_manager',
471 'mojo_base.gyp:mojo_common_lib',
472 'mojo_base.gyp:mojo_environment_chromium',
473 'mojo_base.gyp:mojo_system_impl',
474 'mojo_shell_lib',
475 ],
476 'sources': [
477 'shell/incoming_connection_listener_unittest.cc',
478 'shell/external_application_listener_unittest.cc',
479 'shell/external_application_test_main.cc',
480 ],
481 },
449 ], 482 ],
450 }], 483 }],
451 ['use_aura==1', { 484 ['use_aura==1', {
452 'targets': [ 485 'targets': [
453 { 486 {
454 # GN version: //mojo/aura 487 # GN version: //mojo/aura
455 'target_name': 'mojo_aura_support', 488 'target_name': 'mojo_aura_support',
456 'type': 'static_library', 489 'type': 'static_library',
457 'dependencies': [ 490 'dependencies': [
458 '../cc/cc.gyp:cc', 491 '../cc/cc.gyp:cc',
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
655 'mojo_python_unittests.isolate', 688 'mojo_python_unittests.isolate',
656 ], 689 ],
657 'sources': [ 690 'sources': [
658 'mojo_python_unittests.isolate', 691 'mojo_python_unittests.isolate',
659 ], 692 ],
660 }, 693 },
661 ], 694 ],
662 }], 695 }],
663 ], 696 ],
664 } 697 }
OLDNEW
« no previous file with comments | « mojo/application_manager/application_manager.cc ('k') | mojo/shell/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698