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

Unified Diff: mojo/examples/dbus_echo/BUILD.gn

Issue 563953003: GN rules for everything in //mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/examples/content_handler_demo/BUILD.gn ('k') | mojo/examples/demo_launcher/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/examples/dbus_echo/BUILD.gn
diff --git a/mojo/examples/dbus_echo/BUILD.gn b/mojo/examples/dbus_echo/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..ee9ce4182b02f74f7568092f03bf137ae2848fcc
--- /dev/null
+++ b/mojo/examples/dbus_echo/BUILD.gn
@@ -0,0 +1,48 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//mojo/system.gni")
+
+group("dbus_echo") {
+ deps = [
+ ":dbus_echo_app",
+ ":dbus_echo_service",
+ ]
+}
+
+# GYP version: mojo/mojo_examples.gypi:mojo_dbus_echo
+shared_library("dbus_echo_app") {
+ output_name = "mojo_dbus_echo"
+
+ sources = [
+ "dbus_echo_app.cc",
+ ]
+
+ deps = [
+ "//base",
+ "//mojo/application",
+ "//mojo/public/cpp/bindings",
+ "//mojo/public/cpp/utility",
+ "//mojo/examples/echo:bindings",
+ ] + mojo_system_for_shared_library
+}
+
+# GYP version: mojo/mojo_examples.gypi:mojo_dbus_echo_service
+executable("dbus_echo_service") {
+ output_name = "mojo_dbus_service"
+
+ sources = [
+ "dbus_echo_service.cc",
+ ]
+
+ deps = [
+ "//base",
+ "//dbus",
+ "//mojo/application",
+ "//mojo/common",
+ "//mojo/dbus",
+ "//mojo/examples/echo:bindings",
+ "//mojo/system",
+ ]
+}
« no previous file with comments | « mojo/examples/content_handler_demo/BUILD.gn ('k') | mojo/examples/demo_launcher/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698