| 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", | |
| 11 "arc_bridge_bootstrap.h", | |
| 12 "arc_bridge_host_impl.cc", | 10 "arc_bridge_host_impl.cc", |
| 13 "arc_bridge_host_impl.h", | 11 "arc_bridge_host_impl.h", |
| 14 "arc_bridge_service_impl.cc", | 12 "arc_bridge_service_impl.cc", |
| 15 "arc_bridge_service_impl.h", | 13 "arc_bridge_service_impl.h", |
| 16 "arc_features.cc", | 14 "arc_features.cc", |
| 17 "arc_features.h", | 15 "arc_features.h", |
| 18 "arc_service_manager.cc", | 16 "arc_service_manager.cc", |
| 19 "arc_service_manager.h", | 17 "arc_service_manager.h", |
| 18 "arc_session.cc", |
| 19 "arc_session.h", |
| 20 "audio/arc_audio_bridge.cc", | 20 "audio/arc_audio_bridge.cc", |
| 21 "audio/arc_audio_bridge.h", | 21 "audio/arc_audio_bridge.h", |
| 22 "bluetooth/arc_bluetooth_bridge.cc", | 22 "bluetooth/arc_bluetooth_bridge.cc", |
| 23 "bluetooth/arc_bluetooth_bridge.h", | 23 "bluetooth/arc_bluetooth_bridge.h", |
| 24 "bluetooth/bluetooth_struct_traits.cc", | 24 "bluetooth/bluetooth_struct_traits.cc", |
| 25 "bluetooth/bluetooth_struct_traits.h", | 25 "bluetooth/bluetooth_struct_traits.h", |
| 26 "bluetooth/bluetooth_type_converters.cc", | 26 "bluetooth/bluetooth_type_converters.cc", |
| 27 "bluetooth/bluetooth_type_converters.h", | 27 "bluetooth/bluetooth_type_converters.h", |
| 28 "boot_phase_monitor/arc_boot_phase_monitor_bridge.cc", | 28 "boot_phase_monitor/arc_boot_phase_monitor_bridge.cc", |
| 29 "boot_phase_monitor/arc_boot_phase_monitor_bridge.h", | 29 "boot_phase_monitor/arc_boot_phase_monitor_bridge.h", |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 ] | 160 ] |
| 161 | 161 |
| 162 use_new_wrapper_types = false | 162 use_new_wrapper_types = false |
| 163 } | 163 } |
| 164 | 164 |
| 165 static_library("arc_test_support") { | 165 static_library("arc_test_support") { |
| 166 testonly = true | 166 testonly = true |
| 167 sources = [ | 167 sources = [ |
| 168 "test/fake_app_instance.cc", | 168 "test/fake_app_instance.cc", |
| 169 "test/fake_app_instance.h", | 169 "test/fake_app_instance.h", |
| 170 "test/fake_arc_bridge_bootstrap.cc", | |
| 171 "test/fake_arc_bridge_bootstrap.h", | |
| 172 "test/fake_arc_bridge_service.cc", | 170 "test/fake_arc_bridge_service.cc", |
| 173 "test/fake_arc_bridge_service.h", | 171 "test/fake_arc_bridge_service.h", |
| 172 "test/fake_arc_session.cc", |
| 173 "test/fake_arc_session.h", |
| 174 "test/fake_bluetooth_instance.cc", | 174 "test/fake_bluetooth_instance.cc", |
| 175 "test/fake_bluetooth_instance.h", | 175 "test/fake_bluetooth_instance.h", |
| 176 "test/fake_intent_helper_instance.cc", | 176 "test/fake_intent_helper_instance.cc", |
| 177 "test/fake_intent_helper_instance.h", | 177 "test/fake_intent_helper_instance.h", |
| 178 "test/fake_notifications_instance.cc", | 178 "test/fake_notifications_instance.cc", |
| 179 "test/fake_notifications_instance.h", | 179 "test/fake_notifications_instance.h", |
| 180 "test/fake_policy_instance.cc", | 180 "test/fake_policy_instance.cc", |
| 181 "test/fake_policy_instance.h", | 181 "test/fake_policy_instance.h", |
| 182 ] | 182 ] |
| 183 | 183 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 "//mojo/public/cpp/system:system", | 216 "//mojo/public/cpp/system:system", |
| 217 "//testing/gtest", | 217 "//testing/gtest", |
| 218 "//ui/aura", | 218 "//ui/aura", |
| 219 "//ui/base:test_support", | 219 "//ui/base:test_support", |
| 220 "//ui/base/ime", | 220 "//ui/base/ime", |
| 221 "//ui/events", | 221 "//ui/events", |
| 222 "//ui/events:dom_keycode_converter", | 222 "//ui/events:dom_keycode_converter", |
| 223 "//url:url", | 223 "//url:url", |
| 224 ] | 224 ] |
| 225 } | 225 } |
| OLD | NEW |