| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 "common/crash_collector.mojom", | 74 "common/crash_collector.mojom", |
| 75 "common/ime.mojom", | 75 "common/ime.mojom", |
| 76 "common/input.mojom", | 76 "common/input.mojom", |
| 77 "common/intent_helper.mojom", | 77 "common/intent_helper.mojom", |
| 78 "common/net.mojom", | 78 "common/net.mojom", |
| 79 "common/notifications.mojom", | 79 "common/notifications.mojom", |
| 80 "common/policy.mojom", | 80 "common/policy.mojom", |
| 81 "common/power.mojom", | 81 "common/power.mojom", |
| 82 "common/process.mojom", | 82 "common/process.mojom", |
| 83 "common/video.mojom", | 83 "common/video.mojom", |
| 84 "common/video_accelerator.mojom", |
| 84 ] | 85 ] |
| 85 } | 86 } |
| 86 | 87 |
| 87 static_library("arc_test_support") { | 88 static_library("arc_test_support") { |
| 88 testonly = true | 89 testonly = true |
| 89 sources = [ | 90 sources = [ |
| 90 "test/fake_app_instance.cc", | 91 "test/fake_app_instance.cc", |
| 91 "test/fake_app_instance.h", | 92 "test/fake_app_instance.h", |
| 92 "test/fake_arc_bridge_instance.cc", | 93 "test/fake_arc_bridge_instance.cc", |
| 93 "test/fake_arc_bridge_instance.h", | 94 "test/fake_arc_bridge_instance.h", |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 | 176 |
| 176 deps = [ | 177 deps = [ |
| 177 ":arc_standalone", | 178 ":arc_standalone", |
| 178 ":arc_standalone_service", | 179 ":arc_standalone_service", |
| 179 "//base", | 180 "//base", |
| 180 "//ipc:ipc", | 181 "//ipc:ipc", |
| 181 "//ipc/mojo:mojo", | 182 "//ipc/mojo:mojo", |
| 182 "//mojo/edk/system", | 183 "//mojo/edk/system", |
| 183 ] | 184 ] |
| 184 } | 185 } |
| OLD | NEW |