| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 "//url:url", | 97 "//url:url", |
| 98 ] | 98 ] |
| 99 } | 99 } |
| 100 | 100 |
| 101 static_library("arc_base") { | 101 static_library("arc_base") { |
| 102 sources = [ | 102 sources = [ |
| 103 "arc_bridge_service.cc", | 103 "arc_bridge_service.cc", |
| 104 "arc_bridge_service.h", | 104 "arc_bridge_service.h", |
| 105 "arc_service.cc", | 105 "arc_service.cc", |
| 106 "arc_service.h", | 106 "arc_service.h", |
| 107 "arc_session_observer.cc", |
| 108 "arc_session_observer.h", |
| 107 "instance_holder.h", | 109 "instance_holder.h", |
| 108 ] | 110 ] |
| 109 | 111 |
| 110 deps = [ | 112 deps = [ |
| 111 "//base", | 113 "//base", |
| 112 "//chromeos", | 114 "//chromeos", |
| 113 ] | 115 ] |
| 114 | 116 |
| 115 public_deps = [ | 117 public_deps = [ |
| 116 ":arc_bindings", | 118 ":arc_bindings", |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 "//testing/gtest", | 228 "//testing/gtest", |
| 227 "//ui/aura", | 229 "//ui/aura", |
| 228 "//ui/aura:test_support", | 230 "//ui/aura:test_support", |
| 229 "//ui/base:test_support", | 231 "//ui/base:test_support", |
| 230 "//ui/base/ime", | 232 "//ui/base/ime", |
| 231 "//ui/events", | 233 "//ui/events", |
| 232 "//ui/events:dom_keycode_converter", | 234 "//ui/events:dom_keycode_converter", |
| 233 "//url:url", | 235 "//url:url", |
| 234 ] | 236 ] |
| 235 } | 237 } |
| OLD | NEW |