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

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

Issue 485523004: GN: Mojo wget, sample_app, surfaces app and component build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « mojo/examples/BUILD.gn ('k') | mojo/examples/sample_app/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/public/tools/bindings/mojom.gni")
6 import("//mojo/system.gni")
7
8 group("echo") {
9 deps = [
10 ":client",
11 ":service"
12 ]
13 }
14
15 # GYP version: mojo/mojo_examples.gypi:mojo_echo_client
16 shared_library("client") {
17 output_name = "mojo_echo_client"
18
19 deps = [
20 ":bindings",
21 "//mojo/public/cpp/application:main_standalone",
22 "//mojo/public/cpp/application:standalone",
23 "//mojo/public/cpp/bindings",
24 "//mojo/public/cpp/environment:standalone",
25 "//mojo/public/cpp/utility",
26 ]
27 deps += mojo_system_for_shared_library
28
29 sources = [ "echo_client.cc" ]
30 }
31
32 # GYP version: mojo/mojo_examples.gypi:mojo_echo_service
33 shared_library("service") {
34 output_name = "mojo_echo_service"
35
36 deps = [
37 ":bindings",
38 "//mojo/public/cpp/application:main_standalone",
39 "//mojo/public/cpp/application:standalone",
40 "//mojo/public/cpp/bindings",
41 "//mojo/public/cpp/environment:standalone",
42 "//mojo/public/cpp/utility",
43 ]
44 deps += mojo_system_for_shared_library
45
46 sources = [ "echo_service.cc" ]
47 }
48
49 # GYP version: mojo/mojo_examples.gypi:mojo_echo_service_bindings
50 mojom("bindings") {
51 sources = [ "echo_service.mojom" ]
52 }
OLDNEW
« no previous file with comments | « mojo/examples/BUILD.gn ('k') | mojo/examples/sample_app/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698