| 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 testonly = true | 135 testonly = true |
| 136 sources = [ | 136 sources = [ |
| 137 "test/fake_app_instance.cc", | 137 "test/fake_app_instance.cc", |
| 138 "test/fake_app_instance.h", | 138 "test/fake_app_instance.h", |
| 139 "test/fake_arc_bridge_bootstrap.cc", | 139 "test/fake_arc_bridge_bootstrap.cc", |
| 140 "test/fake_arc_bridge_bootstrap.h", | 140 "test/fake_arc_bridge_bootstrap.h", |
| 141 "test/fake_arc_bridge_instance.cc", | 141 "test/fake_arc_bridge_instance.cc", |
| 142 "test/fake_arc_bridge_instance.h", | 142 "test/fake_arc_bridge_instance.h", |
| 143 "test/fake_arc_bridge_service.cc", | 143 "test/fake_arc_bridge_service.cc", |
| 144 "test/fake_arc_bridge_service.h", | 144 "test/fake_arc_bridge_service.h", |
| 145 "test/fake_bluetooth_instance.cc", |
| 146 "test/fake_bluetooth_instance.h", |
| 145 "test/fake_notifications_instance.cc", | 147 "test/fake_notifications_instance.cc", |
| 146 "test/fake_notifications_instance.h", | 148 "test/fake_notifications_instance.h", |
| 147 "test/fake_policy_instance.cc", | 149 "test/fake_policy_instance.cc", |
| 148 "test/fake_policy_instance.h", | 150 "test/fake_policy_instance.h", |
| 149 ] | 151 ] |
| 150 | 152 |
| 151 deps = [ | 153 deps = [ |
| 152 ":arc", | 154 ":arc", |
| 153 ":arc_bindings", | 155 ":arc_bindings", |
| 154 "//base", | 156 "//base", |
| 155 "//mojo/common:common_base", | 157 "//mojo/common:common_base", |
| 156 ] | 158 ] |
| 157 } | 159 } |
| 158 | 160 |
| 159 source_set("unit_tests") { | 161 source_set("unit_tests") { |
| 160 testonly = true | 162 testonly = true |
| 161 sources = [ | 163 sources = [ |
| 162 "arc_bridge_service_unittest.cc", | 164 "arc_bridge_service_unittest.cc", |
| 165 "bluetooth/arc_bluetooth_bridge_unittest.cc", |
| 166 "bluetooth/bluetooth_type_converters_unittest.cc", |
| 163 "ime/arc_ime_service_unittest.cc", | 167 "ime/arc_ime_service_unittest.cc", |
| 164 "intent_helper/activity_icon_loader_unittest.cc", | 168 "intent_helper/activity_icon_loader_unittest.cc", |
| 165 "intent_helper/arc_intent_helper_bridge_unittest.cc", | 169 "intent_helper/arc_intent_helper_bridge_unittest.cc", |
| 166 "intent_helper/font_size_util_unittest.cc", | 170 "intent_helper/font_size_util_unittest.cc", |
| 167 "intent_helper/link_handler_model_impl_unittest.cc", | 171 "intent_helper/link_handler_model_impl_unittest.cc", |
| 168 ] | 172 ] |
| 169 | 173 |
| 170 deps = [ | 174 deps = [ |
| 171 ":arc", | 175 ":arc", |
| 172 ":arc_bindings", | 176 ":arc_bindings", |
| 173 ":arc_test_support", | 177 ":arc_test_support", |
| 174 "//base", | 178 "//base", |
| 175 "//chromeos", | 179 "//chromeos", |
| 176 "//ipc/mojo:mojo", | 180 "//ipc/mojo:mojo", |
| 177 "//mojo/public/cpp/system:system", | 181 "//mojo/public/cpp/system:system", |
| 182 "//testing/gmock", |
| 178 "//testing/gtest", | 183 "//testing/gtest", |
| 179 "//ui/aura", | 184 "//ui/aura", |
| 180 "//ui/base:test_support", | 185 "//ui/base:test_support", |
| 181 "//ui/base/ime", | 186 "//ui/base/ime", |
| 182 "//ui/events", | 187 "//ui/events", |
| 183 "//ui/events:dom_keycode_converter", | 188 "//ui/events:dom_keycode_converter", |
| 184 "//url:url", | 189 "//url:url", |
| 185 ] | 190 ] |
| 186 } | 191 } |
| 187 | 192 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 | 235 |
| 231 deps = [ | 236 deps = [ |
| 232 ":arc_standalone", | 237 ":arc_standalone", |
| 233 ":arc_standalone_service", | 238 ":arc_standalone_service", |
| 234 "//base", | 239 "//base", |
| 235 "//ipc:ipc", | 240 "//ipc:ipc", |
| 236 "//ipc/mojo:mojo", | 241 "//ipc/mojo:mojo", |
| 237 "//mojo/edk/system", | 242 "//mojo/edk/system", |
| 238 ] | 243 ] |
| 239 } | 244 } |
| OLD | NEW |