OLD | NEW |
| (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/mojo_application.gni") | |
6 import("//mojo/public/tools/bindings/mojom.gni") | |
7 | |
8 mojom("bindings") { | |
9 sources = [ | |
10 "test_request_tracker.mojom", | |
11 "test_service.mojom", | |
12 ] | |
13 } | |
14 | |
15 mojo_native_application("test_app") { | |
16 sources = [ | |
17 "test_request_tracker_client_impl.cc", | |
18 "test_request_tracker_client_impl.h", | |
19 "test_service_application.cc", | |
20 "test_service_application.h", | |
21 "test_service_impl.cc", | |
22 "test_service_impl.h", | |
23 "test_time_service_impl.cc", | |
24 "test_time_service_impl.h", | |
25 ] | |
26 | |
27 deps = [ | |
28 ":bindings", | |
29 "//base", | |
30 "//base:i18n", | |
31 "//mojo/public/c/system:for_shared_library", | |
32 "//mojo/public/cpp/application", | |
33 "//mojo/public/cpp/application:standalone", | |
34 "//mojo/public/cpp/bindings", | |
35 "//mojo/public/cpp/system", | |
36 "//mojo/public/cpp/utility", | |
37 ] | |
38 } | |
39 | |
40 mojo_native_application("test_request_tracker_app") { | |
41 sources = [ | |
42 "test_request_tracker_client_impl.cc", | |
43 "test_request_tracker_client_impl.h", | |
44 "test_request_tracker_application.cc", | |
45 "test_request_tracker_application.h", | |
46 "test_time_service_impl.cc", | |
47 "test_time_service_impl.h", | |
48 "test_request_tracker_impl.cc", | |
49 "test_request_tracker_impl.h", | |
50 ] | |
51 | |
52 deps = [ | |
53 ":bindings", | |
54 "//base", | |
55 "//base:i18n", | |
56 "//mojo/public/c/system:for_shared_library", | |
57 "//mojo/public/cpp/application", | |
58 "//mojo/public/cpp/application:standalone", | |
59 "//mojo/public/cpp/bindings", | |
60 "//mojo/public/cpp/system", | |
61 "//mojo/public/cpp/utility", | |
62 ] | |
63 } | |
OLD | NEW |