summaryrefslogtreecommitdiffstats
path: root/components/arc.gypi
diff options
context:
space:
mode:
authorarthurhsu <arthurhsu@chromium.org>2016-03-08 23:34:03 -0800
committerCommit bot <commit-bot@chromium.org>2016-03-09 07:35:29 +0000
commitce755fed953f6240102e76439a21e0740a7914ba (patch)
treee263cf9927ba401e7062cdc94049146ed72e8981 /components/arc.gypi
parent661d69a3fc8f6e445af126ebed94f33ac8363df1 (diff)
downloadchromium_src-ce755fed953f6240102e76439a21e0740a7914ba.zip
chromium_src-ce755fed953f6240102e76439a21e0740a7914ba.tar.gz
chromium_src-ce755fed953f6240102e76439a21e0740a7914ba.tar.bz2
Implement standalone bridge service executable
BUG=588783 Review URL: https://codereview.chromium.org/1739473008 Cr-Commit-Position: refs/heads/master@{#380095}
Diffstat (limited to 'components/arc.gypi')
-rw-r--r--components/arc.gypi35
1 files changed, 35 insertions, 0 deletions
diff --git a/components/arc.gypi b/components/arc.gypi
index 0785d39..20f6600 100644
--- a/components/arc.gypi
+++ b/components/arc.gypi
@@ -76,6 +76,24 @@
],
},
{
+ # GN version: //components/arc:arc_standalone
+ 'target_name': 'arc_standalone',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..',
+ ],
+ 'dependencies': [
+ 'arc',
+ '../base/base.gyp:base',
+ '../ipc/ipc.gyp:ipc',
+ '../mojo/mojo_edk.gyp:mojo_system_impl',
+ ],
+ 'sources': [
+ 'arc/standalone/arc_standalone_bridge_runner.cc',
+ 'arc/standalone/arc_standalone_bridge_runner.h',
+ ]
+ },
+ {
# GN version: //components/arc:mojo_bindings
'target_name': 'arc_mojo_bindings',
'type': 'static_library',
@@ -97,5 +115,22 @@
'arc/common/video.mojom',
],
},
+ {
+ # GN version: //components/arc:arc_standalone_bridge
+ 'target_name': 'arc_standalone_bridge',
+ 'type': 'executable',
+ 'include_dirs': [
+ '..',
+ ],
+ 'dependencies': [
+ 'arc_standalone',
+ '../base/base.gyp:base',
+ '../ipc/ipc.gyp:ipc',
+ '../mojo/mojo_edk.gyp:mojo_system_impl',
+ ],
+ 'sources': [
+ 'arc/standalone/arc_standalone_bridge_main.cc',
+ ]
+ }
],
}