| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 "intent_helper/font_size_util.h", | 42 "intent_helper/font_size_util.h", |
| 43 "intent_helper/link_handler_model_impl.cc", | 43 "intent_helper/link_handler_model_impl.cc", |
| 44 "intent_helper/link_handler_model_impl.h", | 44 "intent_helper/link_handler_model_impl.h", |
| 45 "metrics/arc_metrics_service.cc", | 45 "metrics/arc_metrics_service.cc", |
| 46 "metrics/arc_metrics_service.h", | 46 "metrics/arc_metrics_service.h", |
| 47 "metrics/oom_kills_histogram.h", | 47 "metrics/oom_kills_histogram.h", |
| 48 "metrics/oom_kills_monitor.cc", | 48 "metrics/oom_kills_monitor.cc", |
| 49 "metrics/oom_kills_monitor.h", | 49 "metrics/oom_kills_monitor.h", |
| 50 "net/arc_net_host_impl.cc", | 50 "net/arc_net_host_impl.cc", |
| 51 "net/arc_net_host_impl.h", | 51 "net/arc_net_host_impl.h", |
| 52 "obb_mounter/arc_obb_mounter_bridge.cc", | |
| 53 "obb_mounter/arc_obb_mounter_bridge.h", | |
| 54 "power/arc_power_bridge.cc", | 52 "power/arc_power_bridge.cc", |
| 55 "power/arc_power_bridge.h", | 53 "power/arc_power_bridge.h", |
| 56 "storage_manager/arc_storage_manager.cc", | 54 "storage_manager/arc_storage_manager.cc", |
| 57 "storage_manager/arc_storage_manager.h", | 55 "storage_manager/arc_storage_manager.h", |
| 58 "window_manager/arc_window_manager_bridge.cc", | 56 "window_manager/arc_window_manager_bridge.cc", |
| 59 "window_manager/arc_window_manager_bridge.h", | 57 "window_manager/arc_window_manager_bridge.h", |
| 60 ] | 58 ] |
| 61 | 59 |
| 62 deps = [ | 60 deps = [ |
| 63 "//ash:ash", | 61 "//ash:ash", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 "common/auth.mojom", | 96 "common/auth.mojom", |
| 99 "common/bitmap.mojom", | 97 "common/bitmap.mojom", |
| 100 "common/bluetooth.mojom", | 98 "common/bluetooth.mojom", |
| 101 "common/clipboard.mojom", | 99 "common/clipboard.mojom", |
| 102 "common/crash_collector.mojom", | 100 "common/crash_collector.mojom", |
| 103 "common/ime.mojom", | 101 "common/ime.mojom", |
| 104 "common/intent_helper.mojom", | 102 "common/intent_helper.mojom", |
| 105 "common/metrics.mojom", | 103 "common/metrics.mojom", |
| 106 "common/net.mojom", | 104 "common/net.mojom", |
| 107 "common/notifications.mojom", | 105 "common/notifications.mojom", |
| 108 "common/obb_mounter.mojom", | |
| 109 "common/policy.mojom", | 106 "common/policy.mojom", |
| 110 "common/power.mojom", | 107 "common/power.mojom", |
| 111 "common/process.mojom", | 108 "common/process.mojom", |
| 112 "common/scale_factor.mojom", | 109 "common/scale_factor.mojom", |
| 113 "common/storage_manager.mojom", | 110 "common/storage_manager.mojom", |
| 114 "common/video.mojom", | 111 "common/video.mojom", |
| 115 "common/video_accelerator.mojom", | 112 "common/video_accelerator.mojom", |
| 116 "common/window_manager.mojom", | 113 "common/window_manager.mojom", |
| 117 ] | 114 ] |
| 118 } | 115 } |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 | 209 |
| 213 deps = [ | 210 deps = [ |
| 214 ":arc_standalone", | 211 ":arc_standalone", |
| 215 ":arc_standalone_service", | 212 ":arc_standalone_service", |
| 216 "//base", | 213 "//base", |
| 217 "//ipc:ipc", | 214 "//ipc:ipc", |
| 218 "//ipc/mojo:mojo", | 215 "//ipc/mojo:mojo", |
| 219 "//mojo/edk/system", | 216 "//mojo/edk/system", |
| 220 ] | 217 ] |
| 221 } | 218 } |
| OLD | NEW |