OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 static_library("arc") { | 8 static_library("arc") { |
9 sources = [ | 9 sources = [ |
10 "arc_bridge_bootstrap.cc", | 10 "arc_bridge_bootstrap.cc", |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 "common/process.mojom", | 82 "common/process.mojom", |
83 "common/video.mojom", | 83 "common/video.mojom", |
84 ] | 84 ] |
85 } | 85 } |
86 | 86 |
87 static_library("arc_test_support") { | 87 static_library("arc_test_support") { |
88 testonly = true | 88 testonly = true |
89 sources = [ | 89 sources = [ |
90 "test/fake_app_instance.cc", | 90 "test/fake_app_instance.cc", |
91 "test/fake_app_instance.h", | 91 "test/fake_app_instance.h", |
| 92 "test/fake_arc_bridge_bootstrap.cc", |
| 93 "test/fake_arc_bridge_bootstrap.h", |
92 "test/fake_arc_bridge_instance.cc", | 94 "test/fake_arc_bridge_instance.cc", |
93 "test/fake_arc_bridge_instance.h", | 95 "test/fake_arc_bridge_instance.h", |
94 "test/fake_arc_bridge_service.cc", | 96 "test/fake_arc_bridge_service.cc", |
95 "test/fake_arc_bridge_service.h", | 97 "test/fake_arc_bridge_service.h", |
96 "test/fake_notifications_instance.cc", | 98 "test/fake_notifications_instance.cc", |
97 "test/fake_notifications_instance.h", | 99 "test/fake_notifications_instance.h", |
98 ] | 100 ] |
99 | 101 |
100 deps = [ | 102 deps = [ |
101 ":arc", | 103 ":arc", |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 | 177 |
176 deps = [ | 178 deps = [ |
177 ":arc_standalone", | 179 ":arc_standalone", |
178 ":arc_standalone_service", | 180 ":arc_standalone_service", |
179 "//base", | 181 "//base", |
180 "//ipc:ipc", | 182 "//ipc:ipc", |
181 "//ipc/mojo:mojo", | 183 "//ipc/mojo:mojo", |
182 "//mojo/edk/system", | 184 "//mojo/edk/system", |
183 ] | 185 ] |
184 } | 186 } |
OLD | NEW |