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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 "net/arc_net_host_impl.h", | 49 "net/arc_net_host_impl.h", |
50 "obb_mounter/arc_obb_mounter_bridge.cc", | 50 "obb_mounter/arc_obb_mounter_bridge.cc", |
51 "obb_mounter/arc_obb_mounter_bridge.h", | 51 "obb_mounter/arc_obb_mounter_bridge.h", |
52 "power/arc_power_bridge.cc", | 52 "power/arc_power_bridge.cc", |
53 "power/arc_power_bridge.h", | 53 "power/arc_power_bridge.h", |
54 "set_wallpaper_delegate.h", | 54 "set_wallpaper_delegate.h", |
55 "storage_manager/arc_storage_manager.cc", | 55 "storage_manager/arc_storage_manager.cc", |
56 "storage_manager/arc_storage_manager.h", | 56 "storage_manager/arc_storage_manager.h", |
57 "user_data/arc_user_data_service.cc", | 57 "user_data/arc_user_data_service.cc", |
58 "user_data/arc_user_data_service.h", | 58 "user_data/arc_user_data_service.h", |
59 "window_manager/arc_window_manager_bridge.cc", | |
60 "window_manager/arc_window_manager_bridge.h", | |
61 ] | 59 ] |
62 | 60 |
63 deps = [ | 61 deps = [ |
64 ":arc_base", | 62 ":arc_base", |
65 "//ash:ash", | 63 "//ash:ash", |
66 "//base", | 64 "//base", |
67 "//chromeos", | 65 "//chromeos", |
68 "//chromeos:power_manager_proto", | 66 "//chromeos:power_manager_proto", |
69 "//components/exo", | 67 "//components/exo", |
70 "//components/google/core/browser", | 68 "//components/google/core/browser", |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 "common/notifications.mojom", | 144 "common/notifications.mojom", |
147 "common/obb_mounter.mojom", | 145 "common/obb_mounter.mojom", |
148 "common/policy.mojom", | 146 "common/policy.mojom", |
149 "common/power.mojom", | 147 "common/power.mojom", |
150 "common/process.mojom", | 148 "common/process.mojom", |
151 "common/scale_factor.mojom", | 149 "common/scale_factor.mojom", |
152 "common/screen_rect.mojom", | 150 "common/screen_rect.mojom", |
153 "common/storage_manager.mojom", | 151 "common/storage_manager.mojom", |
154 "common/video.mojom", | 152 "common/video.mojom", |
155 "common/video_accelerator.mojom", | 153 "common/video_accelerator.mojom", |
156 "common/window_manager.mojom", | |
157 ] | 154 ] |
158 | 155 |
159 deps = [ | 156 deps = [ |
160 "//ui/gfx/geometry/mojo", | 157 "//ui/gfx/geometry/mojo", |
161 ] | 158 ] |
162 | 159 |
163 use_new_wrapper_types = false | 160 use_new_wrapper_types = false |
164 } | 161 } |
165 | 162 |
166 static_library("arc_test_support") { | 163 static_library("arc_test_support") { |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 ] | 258 ] |
262 | 259 |
263 deps = [ | 260 deps = [ |
264 ":arc_standalone", | 261 ":arc_standalone", |
265 ":arc_standalone_service", | 262 ":arc_standalone_service", |
266 "//base", | 263 "//base", |
267 "//ipc:ipc", | 264 "//ipc:ipc", |
268 "//mojo/edk/system", | 265 "//mojo/edk/system", |
269 ] | 266 ] |
270 } | 267 } |
OLD | NEW |