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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 mojom("arc_bindings") { | 131 mojom("arc_bindings") { |
132 sources = [ | 132 sources = [ |
133 "common/app.mojom", | 133 "common/app.mojom", |
134 "common/arc_bridge.mojom", | 134 "common/arc_bridge.mojom", |
135 "common/audio.mojom", | 135 "common/audio.mojom", |
136 "common/auth.mojom", | 136 "common/auth.mojom", |
137 "common/bitmap.mojom", | 137 "common/bitmap.mojom", |
138 "common/bluetooth.mojom", | 138 "common/bluetooth.mojom", |
139 "common/clipboard.mojom", | 139 "common/clipboard.mojom", |
140 "common/crash_collector.mojom", | 140 "common/crash_collector.mojom", |
| 141 "common/enterprise_reporting.mojom", |
141 "common/file_system.mojom", | 142 "common/file_system.mojom", |
142 "common/ime.mojom", | 143 "common/ime.mojom", |
143 "common/intent_helper.mojom", | 144 "common/intent_helper.mojom", |
144 "common/metrics.mojom", | 145 "common/metrics.mojom", |
145 "common/net.mojom", | 146 "common/net.mojom", |
146 "common/notifications.mojom", | 147 "common/notifications.mojom", |
147 "common/obb_mounter.mojom", | 148 "common/obb_mounter.mojom", |
148 "common/policy.mojom", | 149 "common/policy.mojom", |
149 "common/power.mojom", | 150 "common/power.mojom", |
150 "common/process.mojom", | 151 "common/process.mojom", |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
259 ] | 260 ] |
260 | 261 |
261 deps = [ | 262 deps = [ |
262 ":arc_standalone", | 263 ":arc_standalone", |
263 ":arc_standalone_service", | 264 ":arc_standalone_service", |
264 "//base", | 265 "//base", |
265 "//ipc:ipc", | 266 "//ipc:ipc", |
266 "//mojo/edk/system", | 267 "//mojo/edk/system", |
267 ] | 268 ] |
268 } | 269 } |
OLD | NEW |