| 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 "common/metrics.mojom", | 145 "common/metrics.mojom", |
| 146 "common/net.mojom", | 146 "common/net.mojom", |
| 147 "common/notifications.mojom", | 147 "common/notifications.mojom", |
| 148 "common/obb_mounter.mojom", | 148 "common/obb_mounter.mojom", |
| 149 "common/policy.mojom", | 149 "common/policy.mojom", |
| 150 "common/power.mojom", | 150 "common/power.mojom", |
| 151 "common/process.mojom", | 151 "common/process.mojom", |
| 152 "common/scale_factor.mojom", | 152 "common/scale_factor.mojom", |
| 153 "common/screen_rect.mojom", | 153 "common/screen_rect.mojom", |
| 154 "common/storage_manager.mojom", | 154 "common/storage_manager.mojom", |
| 155 "common/tts.mojom", |
| 155 "common/video.mojom", | 156 "common/video.mojom", |
| 156 "common/video_accelerator.mojom", | 157 "common/video_accelerator.mojom", |
| 157 ] | 158 ] |
| 158 | 159 |
| 159 deps = [ | 160 deps = [ |
| 160 "//ui/gfx/geometry/mojo", | 161 "//ui/gfx/geometry/mojo", |
| 161 ] | 162 ] |
| 162 | 163 |
| 163 use_new_wrapper_types = false | 164 use_new_wrapper_types = false |
| 164 } | 165 } |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 ] | 262 ] |
| 262 | 263 |
| 263 deps = [ | 264 deps = [ |
| 264 ":arc_standalone", | 265 ":arc_standalone", |
| 265 ":arc_standalone_service", | 266 ":arc_standalone_service", |
| 266 "//base", | 267 "//base", |
| 267 "//ipc:ipc", | 268 "//ipc:ipc", |
| 268 "//mojo/edk/system", | 269 "//mojo/edk/system", |
| 269 ] | 270 ] |
| 270 } | 271 } |
| OLD | NEW |