| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 mojom("arc_bindings") { | 91 mojom("arc_bindings") { |
| 92 sources = [ | 92 sources = [ |
| 93 "common/app.mojom", | 93 "common/app.mojom", |
| 94 "common/arc_bridge.mojom", | 94 "common/arc_bridge.mojom", |
| 95 "common/audio.mojom", | 95 "common/audio.mojom", |
| 96 "common/auth.mojom", | 96 "common/auth.mojom", |
| 97 "common/bitmap.mojom", | 97 "common/bitmap.mojom", |
| 98 "common/bluetooth.mojom", | 98 "common/bluetooth.mojom", |
| 99 "common/clipboard.mojom", | 99 "common/clipboard.mojom", |
| 100 "common/crash_collector.mojom", | 100 "common/crash_collector.mojom", |
| 101 "common/file_system.mojom", |
| 101 "common/ime.mojom", | 102 "common/ime.mojom", |
| 102 "common/intent_helper.mojom", | 103 "common/intent_helper.mojom", |
| 103 "common/metrics.mojom", | 104 "common/metrics.mojom", |
| 104 "common/net.mojom", | 105 "common/net.mojom", |
| 105 "common/notifications.mojom", | 106 "common/notifications.mojom", |
| 106 "common/policy.mojom", | 107 "common/policy.mojom", |
| 107 "common/power.mojom", | 108 "common/power.mojom", |
| 108 "common/process.mojom", | 109 "common/process.mojom", |
| 109 "common/scale_factor.mojom", | 110 "common/scale_factor.mojom", |
| 110 "common/storage_manager.mojom", | 111 "common/storage_manager.mojom", |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 | 210 |
| 210 deps = [ | 211 deps = [ |
| 211 ":arc_standalone", | 212 ":arc_standalone", |
| 212 ":arc_standalone_service", | 213 ":arc_standalone_service", |
| 213 "//base", | 214 "//base", |
| 214 "//ipc:ipc", | 215 "//ipc:ipc", |
| 215 "//ipc/mojo:mojo", | 216 "//ipc/mojo:mojo", |
| 216 "//mojo/edk/system", | 217 "//mojo/edk/system", |
| 217 ] | 218 ] |
| 218 } | 219 } |
| OLD | NEW |