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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 "common/crash_collector.mojom", | 89 "common/crash_collector.mojom", |
90 "common/ime.mojom", | 90 "common/ime.mojom", |
91 "common/input.mojom", | 91 "common/input.mojom", |
92 "common/intent_helper.mojom", | 92 "common/intent_helper.mojom", |
93 "common/net.mojom", | 93 "common/net.mojom", |
94 "common/notifications.mojom", | 94 "common/notifications.mojom", |
95 "common/policy.mojom", | 95 "common/policy.mojom", |
96 "common/power.mojom", | 96 "common/power.mojom", |
97 "common/process.mojom", | 97 "common/process.mojom", |
98 "common/video.mojom", | 98 "common/video.mojom", |
| 99 "common/video_accelerator.mojom", |
99 ] | 100 ] |
100 } | 101 } |
101 | 102 |
102 static_library("arc_test_support") { | 103 static_library("arc_test_support") { |
103 testonly = true | 104 testonly = true |
104 sources = [ | 105 sources = [ |
105 "test/fake_app_instance.cc", | 106 "test/fake_app_instance.cc", |
106 "test/fake_app_instance.h", | 107 "test/fake_app_instance.h", |
107 "test/fake_arc_bridge_bootstrap.cc", | 108 "test/fake_arc_bridge_bootstrap.cc", |
108 "test/fake_arc_bridge_bootstrap.h", | 109 "test/fake_arc_bridge_bootstrap.h", |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 | 194 |
194 deps = [ | 195 deps = [ |
195 ":arc_standalone", | 196 ":arc_standalone", |
196 ":arc_standalone_service", | 197 ":arc_standalone_service", |
197 "//base", | 198 "//base", |
198 "//ipc:ipc", | 199 "//ipc:ipc", |
199 "//ipc/mojo:mojo", | 200 "//ipc/mojo:mojo", |
200 "//mojo/edk/system", | 201 "//mojo/edk/system", |
201 ] | 202 ] |
202 } | 203 } |
OLD | NEW |