| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 deps = [ | 106 deps = [ |
| 107 "//base", | 107 "//base", |
| 108 "//chromeos", | 108 "//chromeos", |
| 109 ] | 109 ] |
| 110 | 110 |
| 111 public_deps = [ | 111 public_deps = [ |
| 112 ":arc_bindings", | 112 ":arc_bindings", |
| 113 ] | 113 ] |
| 114 } | 114 } |
| 115 | 115 |
| 116 static_library("arc_bitmap") { | |
| 117 sources = [ | |
| 118 "bitmap/bitmap_type_converters.cc", | |
| 119 "bitmap/bitmap_type_converters.h", | |
| 120 ] | |
| 121 | |
| 122 deps = [ | |
| 123 "//skia", | |
| 124 ] | |
| 125 | |
| 126 public_deps = [ | |
| 127 ":arc_bindings", | |
| 128 ] | |
| 129 } | |
| 130 | |
| 131 mojom("arc_bindings") { | 116 mojom("arc_bindings") { |
| 132 sources = [ | 117 sources = [ |
| 133 "common/app.mojom", | 118 "common/app.mojom", |
| 134 "common/arc_bridge.mojom", | 119 "common/arc_bridge.mojom", |
| 135 "common/audio.mojom", | 120 "common/audio.mojom", |
| 136 "common/auth.mojom", | 121 "common/auth.mojom", |
| 137 "common/bitmap.mojom", | 122 "common/bitmap.mojom", |
| 138 "common/bluetooth.mojom", | 123 "common/bluetooth.mojom", |
| 139 "common/clipboard.mojom", | 124 "common/clipboard.mojom", |
| 140 "common/crash_collector.mojom", | 125 "common/crash_collector.mojom", |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 ] | 254 ] |
| 270 | 255 |
| 271 deps = [ | 256 deps = [ |
| 272 ":arc_standalone", | 257 ":arc_standalone", |
| 273 ":arc_standalone_service", | 258 ":arc_standalone_service", |
| 274 "//base", | 259 "//base", |
| 275 "//ipc:ipc", | 260 "//ipc:ipc", |
| 276 "//mojo/edk/system", | 261 "//mojo/edk/system", |
| 277 ] | 262 ] |
| 278 } | 263 } |
| OLD | NEW |