| 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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 testonly = true | 178 testonly = true |
| 179 sources = [ | 179 sources = [ |
| 180 "test/fake_app_instance.cc", | 180 "test/fake_app_instance.cc", |
| 181 "test/fake_app_instance.h", | 181 "test/fake_app_instance.h", |
| 182 "test/fake_arc_bridge_service.cc", | 182 "test/fake_arc_bridge_service.cc", |
| 183 "test/fake_arc_bridge_service.h", | 183 "test/fake_arc_bridge_service.h", |
| 184 "test/fake_arc_session.cc", | 184 "test/fake_arc_session.cc", |
| 185 "test/fake_arc_session.h", | 185 "test/fake_arc_session.h", |
| 186 "test/fake_bluetooth_instance.cc", | 186 "test/fake_bluetooth_instance.cc", |
| 187 "test/fake_bluetooth_instance.h", | 187 "test/fake_bluetooth_instance.h", |
| 188 "test/fake_file_system_instance.cc", |
| 189 "test/fake_file_system_instance.h", |
| 188 "test/fake_intent_helper_instance.cc", | 190 "test/fake_intent_helper_instance.cc", |
| 189 "test/fake_intent_helper_instance.h", | 191 "test/fake_intent_helper_instance.h", |
| 190 "test/fake_notifications_instance.cc", | 192 "test/fake_notifications_instance.cc", |
| 191 "test/fake_notifications_instance.h", | 193 "test/fake_notifications_instance.h", |
| 192 "test/fake_policy_instance.cc", | 194 "test/fake_policy_instance.cc", |
| 193 "test/fake_policy_instance.h", | 195 "test/fake_policy_instance.h", |
| 194 ] | 196 ] |
| 195 | 197 |
| 196 public_deps = [ | 198 public_deps = [ |
| 197 ":arc", | 199 ":arc", |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 "//testing/gtest", | 231 "//testing/gtest", |
| 230 "//ui/aura", | 232 "//ui/aura", |
| 231 "//ui/aura:test_support", | 233 "//ui/aura:test_support", |
| 232 "//ui/base:test_support", | 234 "//ui/base:test_support", |
| 233 "//ui/base/ime", | 235 "//ui/base/ime", |
| 234 "//ui/events", | 236 "//ui/events", |
| 235 "//ui/events:dom_keycode_converter", | 237 "//ui/events:dom_keycode_converter", |
| 236 "//url:url", | 238 "//url:url", |
| 237 ] | 239 ] |
| 238 } | 240 } |
| OLD | NEW |