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

Unified 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, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/application_manager/application_manager.cc ('k') | mojo/shell/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/mojo.gyp
diff --git a/mojo/mojo.gyp b/mojo/mojo.gyp
index f56e6e9a2c62428abed53dcddefc9304d9b055a5..c9d27b56aafc67528157196ce202b507228435a5 100644
--- a/mojo/mojo.gyp
+++ b/mojo/mojo.gyp
@@ -87,6 +87,7 @@
'dependencies': [
'mojo_dbus_echo',
'mojo_dbus_echo_service',
+ 'mojo_external_application_tests',
],
}],
['component != "shared_library" and OS == "linux"', {
@@ -176,6 +177,12 @@
'shell/dynamic_application_loader.cc',
'shell/dynamic_application_loader.h',
'shell/dynamic_service_runner.h',
+ 'shell/external_application_listener_posix.cc',
+ 'shell/external_application_listener_win.cc',
+ 'shell/external_application_listener.h',
+ 'shell/external_application_registrar.mojom',
+ 'shell/incoming_connection_listener_posix.cc',
+ 'shell/incoming_connection_listener_posix.h',
'shell/init.cc',
'shell/init.h',
'shell/in_process_dynamic_service_runner.cc',
@@ -204,6 +211,10 @@
'../build/linux/system.gyp:dbus',
'../dbus/dbus.gyp:dbus',
],
+ 'sources': [
+ 'shell/external_application_registrar_connection.cc',
+ 'shell/external_application_registrar_connection.h',
+ ],
}],
['OS=="android"', {
'dependencies': [
@@ -323,7 +334,7 @@
],
},
{
- # GN version: //mojo/application_manager:unittests
+ # GN version: //mojo/application_manager:mojo_application_manager_unittests
'target_name': 'mojo_application_manager_unittests',
'type': 'executable',
'dependencies': [
@@ -446,6 +457,28 @@
'dbus/dbus_external_service.cc',
],
},
+ {
+ # GN version: //mojo/shell:mojo_external_application_tests
+ 'target_name': 'mojo_external_application_tests',
+ 'type': '<(gtest_target_type)',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../base/base.gyp:test_support_base',
+ '../testing/gtest.gyp:gtest',
+ '../net/net.gyp:net_test_support',
+ '../url/url.gyp:url_lib',
+ 'mojo_application_manager',
+ 'mojo_base.gyp:mojo_common_lib',
+ 'mojo_base.gyp:mojo_environment_chromium',
+ 'mojo_base.gyp:mojo_system_impl',
+ 'mojo_shell_lib',
+ ],
+ 'sources': [
+ 'shell/incoming_connection_listener_unittest.cc',
+ 'shell/external_application_listener_unittest.cc',
+ 'shell/external_application_test_main.cc',
+ ],
+ },
],
}],
['use_aura==1', {
« 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