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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 "net/arc_net_host_impl.h", | 51 "net/arc_net_host_impl.h", |
52 "obb_mounter/arc_obb_mounter_bridge.cc", | 52 "obb_mounter/arc_obb_mounter_bridge.cc", |
53 "obb_mounter/arc_obb_mounter_bridge.h", | 53 "obb_mounter/arc_obb_mounter_bridge.h", |
54 "power/arc_power_bridge.cc", | 54 "power/arc_power_bridge.cc", |
55 "power/arc_power_bridge.h", | 55 "power/arc_power_bridge.h", |
56 "set_wallpaper_delegate.h", | 56 "set_wallpaper_delegate.h", |
57 "storage_manager/arc_storage_manager.cc", | 57 "storage_manager/arc_storage_manager.cc", |
58 "storage_manager/arc_storage_manager.h", | 58 "storage_manager/arc_storage_manager.h", |
59 "user_data/arc_user_data_service.cc", | 59 "user_data/arc_user_data_service.cc", |
60 "user_data/arc_user_data_service.h", | 60 "user_data/arc_user_data_service.h", |
| 61 "wallpaper/arc_wallpaper_bridge.cc", |
| 62 "wallpaper/arc_wallpaper_bridge.h", |
61 ] | 63 ] |
62 | 64 |
63 deps = [ | 65 deps = [ |
64 ":arc_base", | 66 ":arc_base", |
65 "//ash:ash", | 67 "//ash:ash", |
66 "//base", | 68 "//base", |
67 "//chromeos", | 69 "//chromeos", |
68 "//chromeos:power_manager_proto", | 70 "//chromeos:power_manager_proto", |
69 "//components/exo", | 71 "//components/exo", |
70 "//components/google/core/browser", | 72 "//components/google/core/browser", |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 "common/policy.mojom", | 151 "common/policy.mojom", |
150 "common/power.mojom", | 152 "common/power.mojom", |
151 "common/print.mojom", | 153 "common/print.mojom", |
152 "common/process.mojom", | 154 "common/process.mojom", |
153 "common/scale_factor.mojom", | 155 "common/scale_factor.mojom", |
154 "common/screen_rect.mojom", | 156 "common/screen_rect.mojom", |
155 "common/storage_manager.mojom", | 157 "common/storage_manager.mojom", |
156 "common/tts.mojom", | 158 "common/tts.mojom", |
157 "common/video.mojom", | 159 "common/video.mojom", |
158 "common/video_accelerator.mojom", | 160 "common/video_accelerator.mojom", |
| 161 "common/wallpaper.mojom", |
159 ] | 162 ] |
160 | 163 |
161 deps = [ | 164 deps = [ |
162 "//ui/gfx/geometry/mojo", | 165 "//ui/gfx/geometry/mojo", |
163 ] | 166 ] |
164 | 167 |
165 use_new_wrapper_types = false | 168 use_new_wrapper_types = false |
166 } | 169 } |
167 | 170 |
168 static_library("arc_test_support") { | 171 static_library("arc_test_support") { |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 ] | 271 ] |
269 | 272 |
270 deps = [ | 273 deps = [ |
271 ":arc_standalone", | 274 ":arc_standalone", |
272 ":arc_standalone_service", | 275 ":arc_standalone_service", |
273 "//base", | 276 "//base", |
274 "//ipc:ipc", | 277 "//ipc:ipc", |
275 "//mojo/edk/system", | 278 "//mojo/edk/system", |
276 ] | 279 ] |
277 } | 280 } |
OLD | NEW |