| 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 "common/process.mojom", | 93 "common/process.mojom", |
| 94 "common/video.mojom", | 94 "common/video.mojom", |
| 95 ] | 95 ] |
| 96 } | 96 } |
| 97 | 97 |
| 98 static_library("arc_test_support") { | 98 static_library("arc_test_support") { |
| 99 testonly = true | 99 testonly = true |
| 100 sources = [ | 100 sources = [ |
| 101 "test/fake_app_instance.cc", | 101 "test/fake_app_instance.cc", |
| 102 "test/fake_app_instance.h", | 102 "test/fake_app_instance.h", |
| 103 "test/fake_arc_bridge_bootstrap.cc", |
| 104 "test/fake_arc_bridge_bootstrap.h", |
| 103 "test/fake_arc_bridge_instance.cc", | 105 "test/fake_arc_bridge_instance.cc", |
| 104 "test/fake_arc_bridge_instance.h", | 106 "test/fake_arc_bridge_instance.h", |
| 105 "test/fake_arc_bridge_service.cc", | 107 "test/fake_arc_bridge_service.cc", |
| 106 "test/fake_arc_bridge_service.h", | 108 "test/fake_arc_bridge_service.h", |
| 107 "test/fake_notifications_instance.cc", | 109 "test/fake_notifications_instance.cc", |
| 108 "test/fake_notifications_instance.h", | 110 "test/fake_notifications_instance.h", |
| 109 ] | 111 ] |
| 110 | 112 |
| 111 deps = [ | 113 deps = [ |
| 112 ":arc", | 114 ":arc", |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 | 189 |
| 188 deps = [ | 190 deps = [ |
| 189 ":arc_standalone", | 191 ":arc_standalone", |
| 190 ":arc_standalone_service", | 192 ":arc_standalone_service", |
| 191 "//base", | 193 "//base", |
| 192 "//ipc:ipc", | 194 "//ipc:ipc", |
| 193 "//ipc/mojo:mojo", | 195 "//ipc/mojo:mojo", |
| 194 "//mojo/edk/system", | 196 "//mojo/edk/system", |
| 195 ] | 197 ] |
| 196 } | 198 } |
| OLD | NEW |