OLD | NEW |
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("//third_party/mojo/src/mojo/public/mojo_application.gni") | 5 import("//third_party/mojo/src/mojo/public/mojo_application.gni") |
6 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 6 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
7 | 7 |
8 group("test_service") { | 8 group("test_service") { |
9 # Meta-target, don't link into production code. | 9 # Meta-target, don't link into production code. |
10 testonly = true | 10 testonly = true |
(...skipping 20 matching lines...) Expand all Loading... |
31 "test_time_service_impl.cc", | 31 "test_time_service_impl.cc", |
32 "test_time_service_impl.h", | 32 "test_time_service_impl.h", |
33 "tracked_service.cc", | 33 "tracked_service.cc", |
34 "tracked_service.h", | 34 "tracked_service.h", |
35 ] | 35 ] |
36 | 36 |
37 deps = [ | 37 deps = [ |
38 ":bindings", | 38 ":bindings", |
39 "//base", | 39 "//base", |
40 "//base:i18n", | 40 "//base:i18n", |
41 "//third_party/mojo/src/mojo/public/cpp/application", | 41 "//mojo/application/public/cpp:application", |
42 "//third_party/mojo/src/mojo/public/cpp/application:standalone", | 42 "//mojo/application/public/cpp:standalone", |
43 "//third_party/mojo/src/mojo/public/cpp/bindings", | 43 "//third_party/mojo/src/mojo/public/cpp/bindings", |
44 "//third_party/mojo/src/mojo/public/cpp/system", | 44 "//third_party/mojo/src/mojo/public/cpp/system", |
45 "//third_party/mojo/src/mojo/public/cpp/utility", | 45 "//third_party/mojo/src/mojo/public/cpp/utility", |
46 ] | 46 ] |
47 } | 47 } |
48 | 48 |
49 mojo_native_application("test_request_tracker_app") { | 49 mojo_native_application("test_request_tracker_app") { |
50 sources = [ | 50 sources = [ |
51 "test_request_tracker_application.cc", | 51 "test_request_tracker_application.cc", |
52 "test_request_tracker_application.h", | 52 "test_request_tracker_application.h", |
53 "test_request_tracker_impl.cc", | 53 "test_request_tracker_impl.cc", |
54 "test_request_tracker_impl.h", | 54 "test_request_tracker_impl.h", |
55 "test_time_service_impl.cc", | 55 "test_time_service_impl.cc", |
56 "test_time_service_impl.h", | 56 "test_time_service_impl.h", |
57 "tracked_service.cc", | 57 "tracked_service.cc", |
58 "tracked_service.h", | 58 "tracked_service.h", |
59 ] | 59 ] |
60 | 60 |
61 deps = [ | 61 deps = [ |
62 ":bindings", | 62 ":bindings", |
63 "//base", | 63 "//base", |
64 "//base:i18n", | 64 "//base:i18n", |
65 "//third_party/mojo/src/mojo/public/cpp/application", | 65 "//mojo/application/public/cpp:application", |
66 "//third_party/mojo/src/mojo/public/cpp/application:standalone", | 66 "//mojo/application/public/cpp:standalone", |
67 "//third_party/mojo/src/mojo/public/cpp/bindings", | 67 "//third_party/mojo/src/mojo/public/cpp/bindings", |
68 "//third_party/mojo/src/mojo/public/cpp/system", | 68 "//third_party/mojo/src/mojo/public/cpp/system", |
69 "//third_party/mojo/src/mojo/public/cpp/utility", | 69 "//third_party/mojo/src/mojo/public/cpp/utility", |
70 ] | 70 ] |
71 } | 71 } |
OLD | NEW |