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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//mojo/system.gni")
6
7 group("dbus_echo") {
8 deps = [
9 ":dbus_echo_app",
10 ":dbus_echo_service",
11 ]
12 }
13
14 # GYP version: mojo/mojo_examples.gypi:mojo_dbus_echo
15 shared_library("dbus_echo_app") {
16 output_name = "mojo_dbus_echo"
17
18 sources = [
19 "dbus_echo_app.cc",
20 ]
21
22 deps = [
23 "//base",
24 "//mojo/application",
25 "//mojo/public/cpp/bindings",
26 "//mojo/public/cpp/utility",
27 "//mojo/examples/echo:bindings",
28 ] + mojo_system_for_shared_library
29 }
30
31 # GYP version: mojo/mojo_examples.gypi:mojo_dbus_echo_service
32 executable("dbus_echo_service") {
33 output_name = "mojo_dbus_service"
34
35 sources = [
36 "dbus_echo_service.cc",
37 ]
38
39 deps = [
40 "//base",
41 "//dbus",
42 "//mojo/application",
43 "//mojo/common",
44 "//mojo/dbus",
45 "//mojo/examples/echo:bindings",
46 "//mojo/system",
47 ]
48 }
OLDNEW
« 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