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

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

Issue 684543003: Move //mojo/examples to //examples (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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
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/public/tools/bindings/mojom.gni")
6
7 group("echo") {
8 deps = [
9 ":client",
10 ":service"
11 ]
12 }
13
14 shared_library("client") {
15 output_name = "echo_client"
16
17 deps = [
18 ":bindings",
19 "//mojo/public/c/system:for_shared_library",
20 "//mojo/public/cpp/application:standalone",
21 "//mojo/public/cpp/bindings",
22 "//mojo/public/cpp/utility",
23 ]
24
25 sources = [ "echo_client.cc" ]
26 }
27
28 shared_library("service") {
29 output_name = "echo_service"
30
31 deps = [
32 ":bindings",
33 "//mojo/public/c/system:for_shared_library",
34 "//mojo/public/cpp/application:standalone",
35 "//mojo/public/cpp/bindings",
36 "//mojo/public/cpp/utility",
37 ]
38
39 sources = [ "echo_service.cc" ]
40 }
41
42 mojom("bindings") {
43 sources = [ "echo_service.mojom" ]
44 }
OLDNEW
« no previous file with comments | « mojo/examples/content_handler_demo/content_handler_demo.cc ('k') | mojo/examples/echo/echo_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698