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

Side by Side Diff: services/native_support/BUILD.gn

Issue 1321253010: Add a "native_support" service. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: fix android? Created 5 years, 2 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 | « services/BUILD.gn ('k') | services/native_support/main.cc » ('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 2015 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/mojo_application.gni")
6
7 mojo_native_application("native_support") {
8 sources = [
9 "main.cc",
10 "make_pty_pair.cc",
11 "make_pty_pair.h",
12 "process_controller_impl.cc",
13 "process_controller_impl.h",
14 "process_impl.cc",
15 "process_impl.h",
16 "process_io_redirection.cc",
17 "process_io_redirection.h",
18 "redirectors.cc",
19 "redirectors.h",
20 ]
21
22 deps = [
23 "//base",
24 "//mojo/application",
25 "//mojo/common",
26 "//mojo/public/cpp/application",
27 "//mojo/public/cpp/bindings:callback",
28 "//mojo/public/cpp/system",
29 "//mojo/services/files/public/interfaces",
30 "//mojo/services/native_support/public/interfaces",
31 ]
32 }
33
34 mojo_native_application("apptests") {
35 output_name = "native_support_apptests"
36
37 testonly = true
38
39 sources = [
40 "process_controller_impl_unittest.cc",
41 "process_impl_unittest.cc",
42 "process_test_base.cc",
43 "process_test_base.h",
44 ]
45
46 deps = [
47 "//base",
48 "//mojo/application",
49 "//mojo/application:test_support",
50 "//mojo/public/cpp/bindings",
51 "//mojo/public/cpp/system",
52 "//mojo/services/files/public/cpp:files_impl",
53 "//mojo/services/files/public/interfaces",
54 "//mojo/services/native_support/public/interfaces",
55 ]
56
57 data_deps = [ ":native_support($default_toolchain)" ]
58 }
OLDNEW
« no previous file with comments | « services/BUILD.gn ('k') | services/native_support/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698