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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 "metrics/oom_kills_monitor.cc", | 54 "metrics/oom_kills_monitor.cc", |
55 "metrics/oom_kills_monitor.h", | 55 "metrics/oom_kills_monitor.h", |
56 "net/arc_net_host_impl.cc", | 56 "net/arc_net_host_impl.cc", |
57 "net/arc_net_host_impl.h", | 57 "net/arc_net_host_impl.h", |
58 "obb_mounter/arc_obb_mounter_bridge.cc", | 58 "obb_mounter/arc_obb_mounter_bridge.cc", |
59 "obb_mounter/arc_obb_mounter_bridge.h", | 59 "obb_mounter/arc_obb_mounter_bridge.h", |
60 "power/arc_power_bridge.cc", | 60 "power/arc_power_bridge.cc", |
61 "power/arc_power_bridge.h", | 61 "power/arc_power_bridge.h", |
62 "storage_manager/arc_storage_manager.cc", | 62 "storage_manager/arc_storage_manager.cc", |
63 "storage_manager/arc_storage_manager.h", | 63 "storage_manager/arc_storage_manager.h", |
| 64 "trace/arc_trace_bridge.cc", |
| 65 "trace/arc_trace_bridge.h", |
64 "user_data/arc_user_data_service.cc", | 66 "user_data/arc_user_data_service.cc", |
65 "user_data/arc_user_data_service.h", | 67 "user_data/arc_user_data_service.h", |
66 ] | 68 ] |
67 | 69 |
68 public_deps = [ | 70 public_deps = [ |
69 ":arc_base", | 71 ":arc_base", |
70 ":arc_bindings", | 72 ":arc_bindings", |
71 ] | 73 ] |
72 | 74 |
73 deps = [ | 75 deps = [ |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 "common/net.mojom", | 139 "common/net.mojom", |
138 "common/notifications.mojom", | 140 "common/notifications.mojom", |
139 "common/obb_mounter.mojom", | 141 "common/obb_mounter.mojom", |
140 "common/policy.mojom", | 142 "common/policy.mojom", |
141 "common/power.mojom", | 143 "common/power.mojom", |
142 "common/print.mojom", | 144 "common/print.mojom", |
143 "common/process.mojom", | 145 "common/process.mojom", |
144 "common/scale_factor.mojom", | 146 "common/scale_factor.mojom", |
145 "common/screen_rect.mojom", | 147 "common/screen_rect.mojom", |
146 "common/storage_manager.mojom", | 148 "common/storage_manager.mojom", |
| 149 "common/trace.mojom", |
147 "common/tts.mojom", | 150 "common/tts.mojom", |
148 "common/video.mojom", | 151 "common/video.mojom", |
149 "common/video_accelerator.mojom", | 152 "common/video_accelerator.mojom", |
150 "common/wallpaper.mojom", | 153 "common/wallpaper.mojom", |
151 ] | 154 ] |
152 | 155 |
153 public_deps = [ | 156 public_deps = [ |
154 "//mojo/common:common_custom_types", | 157 "//mojo/common:common_custom_types", |
155 "//ui/gfx/geometry/mojo", | 158 "//ui/gfx/geometry/mojo", |
156 ] | 159 ] |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 "//mojo/public/cpp/system:system", | 214 "//mojo/public/cpp/system:system", |
212 "//testing/gtest", | 215 "//testing/gtest", |
213 "//ui/aura", | 216 "//ui/aura", |
214 "//ui/base:test_support", | 217 "//ui/base:test_support", |
215 "//ui/base/ime", | 218 "//ui/base/ime", |
216 "//ui/events", | 219 "//ui/events", |
217 "//ui/events:dom_keycode_converter", | 220 "//ui/events:dom_keycode_converter", |
218 "//url:url", | 221 "//url:url", |
219 ] | 222 ] |
220 } | 223 } |
OLD | NEW |