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_host_impl.cc", | 10 "arc_bridge_host_impl.cc", |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 "intent_helper/intent_constants.cc", | 45 "intent_helper/intent_constants.cc", |
46 "intent_helper/intent_constants.h", | 46 "intent_helper/intent_constants.h", |
47 "intent_helper/intent_filter.cc", | 47 "intent_helper/intent_filter.cc", |
48 "intent_helper/intent_filter.h", | 48 "intent_helper/intent_filter.h", |
49 "intent_helper/link_handler_model_impl.cc", | 49 "intent_helper/link_handler_model_impl.cc", |
50 "intent_helper/link_handler_model_impl.h", | 50 "intent_helper/link_handler_model_impl.h", |
51 "intent_helper/local_activity_resolver.cc", | 51 "intent_helper/local_activity_resolver.cc", |
52 "intent_helper/local_activity_resolver.h", | 52 "intent_helper/local_activity_resolver.h", |
53 "intent_helper/page_transition_util.cc", | 53 "intent_helper/page_transition_util.cc", |
54 "intent_helper/page_transition_util.h", | 54 "intent_helper/page_transition_util.h", |
55 "kiosk/arc_kiosk_bridge.cc", | |
56 "kiosk/arc_kiosk_bridge.h", | |
57 "metrics/arc_metrics_service.cc", | 55 "metrics/arc_metrics_service.cc", |
58 "metrics/arc_metrics_service.h", | 56 "metrics/arc_metrics_service.h", |
59 "metrics/oom_kills_histogram.h", | 57 "metrics/oom_kills_histogram.h", |
60 "metrics/oom_kills_monitor.cc", | 58 "metrics/oom_kills_monitor.cc", |
61 "metrics/oom_kills_monitor.h", | 59 "metrics/oom_kills_monitor.h", |
62 "net/arc_net_host_impl.cc", | 60 "net/arc_net_host_impl.cc", |
63 "net/arc_net_host_impl.h", | 61 "net/arc_net_host_impl.h", |
64 "obb_mounter/arc_obb_mounter_bridge.cc", | 62 "obb_mounter/arc_obb_mounter_bridge.cc", |
65 "obb_mounter/arc_obb_mounter_bridge.h", | 63 "obb_mounter/arc_obb_mounter_bridge.h", |
66 "power/arc_power_bridge.cc", | 64 "power/arc_power_bridge.cc", |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
231 "//testing/gtest", | 229 "//testing/gtest", |
232 "//ui/aura", | 230 "//ui/aura", |
233 "//ui/aura:test_support", | 231 "//ui/aura:test_support", |
234 "//ui/base:test_support", | 232 "//ui/base:test_support", |
235 "//ui/base/ime", | 233 "//ui/base/ime", |
236 "//ui/events", | 234 "//ui/events", |
237 "//ui/events:dom_keycode_converter", | 235 "//ui/events:dom_keycode_converter", |
238 "//url:url", | 236 "//url:url", |
239 ] | 237 ] |
240 } | 238 } |
OLD | NEW |