| 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_service_manager.cc", | 10 "arc_service_manager.cc", |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 "arc_bridge_host_impl.cc", | 96 "arc_bridge_host_impl.cc", |
| 97 "arc_bridge_host_impl.h", | 97 "arc_bridge_host_impl.h", |
| 98 "arc_bridge_service.cc", | 98 "arc_bridge_service.cc", |
| 99 "arc_bridge_service.h", | 99 "arc_bridge_service.h", |
| 100 "arc_features.cc", | 100 "arc_features.cc", |
| 101 "arc_features.h", | 101 "arc_features.h", |
| 102 "arc_service.cc", | 102 "arc_service.cc", |
| 103 "arc_service.h", | 103 "arc_service.h", |
| 104 "arc_session.cc", | 104 "arc_session.cc", |
| 105 "arc_session.h", | 105 "arc_session.h", |
| 106 "arc_session_observer.cc", | |
| 107 "arc_session_observer.h", | |
| 108 "arc_session_runner.cc", | 106 "arc_session_runner.cc", |
| 109 "arc_session_runner.h", | 107 "arc_session_runner.h", |
| 108 "arc_stop_reason.cc", |
| 109 "arc_stop_reason.h", |
| 110 "arc_util.cc", | 110 "arc_util.cc", |
| 111 "arc_util.h", | 111 "arc_util.h", |
| 112 "instance_holder.h", | 112 "instance_holder.h", |
| 113 ] | 113 ] |
| 114 | 114 |
| 115 deps = [ | 115 deps = [ |
| 116 "//base", | 116 "//base", |
| 117 "//chromeos", | 117 "//chromeos", |
| 118 "//components/user_manager", | 118 "//components/user_manager", |
| 119 "//mojo/edk/system", | 119 "//mojo/edk/system", |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 "//testing/gtest", | 223 "//testing/gtest", |
| 224 "//ui/aura", | 224 "//ui/aura", |
| 225 "//ui/aura:test_support", | 225 "//ui/aura:test_support", |
| 226 "//ui/base:test_support", | 226 "//ui/base:test_support", |
| 227 "//ui/base/ime", | 227 "//ui/base/ime", |
| 228 "//ui/events", | 228 "//ui/events", |
| 229 "//ui/events:dom_keycode_converter", | 229 "//ui/events:dom_keycode_converter", |
| 230 "//url:url", | 230 "//url:url", |
| 231 ] | 231 ] |
| 232 } | 232 } |
| OLD | NEW |