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

Side by Side Diff: mojo/examples/dbus_echo/BUILD.gn

Issue 554363005: GN: Replace mojo/system.gni with forwarding groups (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
1 # Copyright 2014 The Chromium Authors. All rights reserved. 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 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 import("//mojo/system.gni")
6
7 group("dbus_echo") { 5 group("dbus_echo") {
8 deps = [ 6 deps = [
9 ":dbus_echo_app", 7 ":dbus_echo_app",
10 ":dbus_echo_service", 8 ":dbus_echo_service",
11 ] 9 ]
12 } 10 }
13 11
14 # GYP version: mojo/mojo_examples.gypi:mojo_dbus_echo 12 # GYP version: mojo/mojo_examples.gypi:mojo_dbus_echo
15 shared_library("dbus_echo_app") { 13 shared_library("dbus_echo_app") {
16 output_name = "mojo_dbus_echo" 14 output_name = "mojo_dbus_echo"
17 15
18 sources = [ 16 sources = [
19 "dbus_echo_app.cc", 17 "dbus_echo_app.cc",
20 ] 18 ]
21 19
22 deps = [ 20 deps = [
23 "//base", 21 "//base",
24 "//mojo/application", 22 "//mojo/application",
23 "//mojo/public/c/system:for_shared_library",
25 "//mojo/public/cpp/bindings", 24 "//mojo/public/cpp/bindings",
26 "//mojo/public/cpp/utility", 25 "//mojo/public/cpp/utility",
27 "//mojo/examples/echo:bindings", 26 "//mojo/examples/echo:bindings",
28 ] + mojo_system_for_shared_library 27 ]
29 } 28 }
30 29
31 # GYP version: mojo/mojo_examples.gypi:mojo_dbus_echo_service 30 # GYP version: mojo/mojo_examples.gypi:mojo_dbus_echo_service
32 executable("dbus_echo_service") { 31 executable("dbus_echo_service") {
33 output_name = "mojo_dbus_service" 32 output_name = "mojo_dbus_service"
34 33
35 sources = [ 34 sources = [
36 "dbus_echo_service.cc", 35 "dbus_echo_service.cc",
37 ] 36 ]
38 37
39 deps = [ 38 deps = [
40 "//base", 39 "//base",
41 "//dbus", 40 "//dbus",
42 "//mojo/application", 41 "//mojo/application",
43 "//mojo/common", 42 "//mojo/common",
44 "//mojo/dbus", 43 "//mojo/dbus",
45 "//mojo/examples/echo:bindings", 44 "//mojo/examples/echo:bindings",
46 "//mojo/system", 45 "//mojo/system",
47 ] 46 ]
48 } 47 }
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