| 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 | 6 |
| 7 static_library("arc") { | 7 static_library("arc") { |
| 8 sources = [ | 8 sources = [ |
| 9 "arc_bridge_bootstrap.cc", | 9 "arc_bridge_bootstrap.cc", |
| 10 "arc_bridge_bootstrap.h", | 10 "arc_bridge_bootstrap.h", |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 "common/process.mojom", | 78 "common/process.mojom", |
| 79 "common/video.mojom", | 79 "common/video.mojom", |
| 80 ] | 80 ] |
| 81 } | 81 } |
| 82 | 82 |
| 83 static_library("arc_test_support") { | 83 static_library("arc_test_support") { |
| 84 testonly = true | 84 testonly = true |
| 85 sources = [ | 85 sources = [ |
| 86 "test/fake_app_instance.cc", | 86 "test/fake_app_instance.cc", |
| 87 "test/fake_app_instance.h", | 87 "test/fake_app_instance.h", |
| 88 "test/fake_arc_bridge_bootstrap.cc", |
| 89 "test/fake_arc_bridge_bootstrap.h", |
| 88 "test/fake_arc_bridge_instance.cc", | 90 "test/fake_arc_bridge_instance.cc", |
| 89 "test/fake_arc_bridge_instance.h", | 91 "test/fake_arc_bridge_instance.h", |
| 90 "test/fake_arc_bridge_service.cc", | 92 "test/fake_arc_bridge_service.cc", |
| 91 "test/fake_arc_bridge_service.h", | 93 "test/fake_arc_bridge_service.h", |
| 92 "test/fake_notifications_instance.cc", | 94 "test/fake_notifications_instance.cc", |
| 93 "test/fake_notifications_instance.h", | 95 "test/fake_notifications_instance.h", |
| 94 ] | 96 ] |
| 95 | 97 |
| 96 deps = [ | 98 deps = [ |
| 97 ":arc", | 99 ":arc", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 ] | 148 ] |
| 147 | 149 |
| 148 deps = [ | 150 deps = [ |
| 149 ":arc_standalone", | 151 ":arc_standalone", |
| 150 "//base", | 152 "//base", |
| 151 "//ipc:ipc", | 153 "//ipc:ipc", |
| 152 "//ipc/mojo:mojo", | 154 "//ipc/mojo:mojo", |
| 153 "//mojo/edk/system", | 155 "//mojo/edk/system", |
| 154 ] | 156 ] |
| 155 } | 157 } |
| OLD | NEW |