| 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 24 matching lines...) Expand all Loading... |
| 35 "ime/arc_ime_bridge_impl.cc", | 35 "ime/arc_ime_bridge_impl.cc", |
| 36 "ime/arc_ime_bridge_impl.h", | 36 "ime/arc_ime_bridge_impl.h", |
| 37 "ime/arc_ime_service.cc", | 37 "ime/arc_ime_service.cc", |
| 38 "ime/arc_ime_service.h", | 38 "ime/arc_ime_service.h", |
| 39 "intent_helper/activity_icon_loader.cc", | 39 "intent_helper/activity_icon_loader.cc", |
| 40 "intent_helper/activity_icon_loader.h", | 40 "intent_helper/activity_icon_loader.h", |
| 41 "intent_helper/arc_intent_helper_bridge.cc", | 41 "intent_helper/arc_intent_helper_bridge.cc", |
| 42 "intent_helper/arc_intent_helper_bridge.h", | 42 "intent_helper/arc_intent_helper_bridge.h", |
| 43 "intent_helper/font_size_util.cc", | 43 "intent_helper/font_size_util.cc", |
| 44 "intent_helper/font_size_util.h", | 44 "intent_helper/font_size_util.h", |
| 45 "intent_helper/intent_constants.cc", |
| 46 "intent_helper/intent_constants.h", |
| 45 "intent_helper/intent_filter.cc", | 47 "intent_helper/intent_filter.cc", |
| 46 "intent_helper/intent_filter.h", | 48 "intent_helper/intent_filter.h", |
| 47 "intent_helper/link_handler_model_impl.cc", | 49 "intent_helper/link_handler_model_impl.cc", |
| 48 "intent_helper/link_handler_model_impl.h", | 50 "intent_helper/link_handler_model_impl.h", |
| 49 "intent_helper/local_activity_resolver.cc", | 51 "intent_helper/local_activity_resolver.cc", |
| 50 "intent_helper/local_activity_resolver.h", | 52 "intent_helper/local_activity_resolver.h", |
| 51 "metrics/arc_metrics_service.cc", | 53 "metrics/arc_metrics_service.cc", |
| 52 "metrics/arc_metrics_service.h", | 54 "metrics/arc_metrics_service.h", |
| 53 "metrics/oom_kills_histogram.h", | 55 "metrics/oom_kills_histogram.h", |
| 54 "metrics/oom_kills_monitor.cc", | 56 "metrics/oom_kills_monitor.cc", |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 "//mojo/public/cpp/system:system", | 213 "//mojo/public/cpp/system:system", |
| 212 "//testing/gtest", | 214 "//testing/gtest", |
| 213 "//ui/aura", | 215 "//ui/aura", |
| 214 "//ui/base:test_support", | 216 "//ui/base:test_support", |
| 215 "//ui/base/ime", | 217 "//ui/base/ime", |
| 216 "//ui/events", | 218 "//ui/events", |
| 217 "//ui/events:dom_keycode_converter", | 219 "//ui/events:dom_keycode_converter", |
| 218 "//url:url", | 220 "//url:url", |
| 219 ] | 221 ] |
| 220 } | 222 } |
| OLD | NEW |