| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 sources = [ | 64 sources = [ |
| 65 "common/app.mojom", | 65 "common/app.mojom", |
| 66 "common/arc_bridge.mojom", | 66 "common/arc_bridge.mojom", |
| 67 "common/auth.mojom", | 67 "common/auth.mojom", |
| 68 "common/clipboard.mojom", | 68 "common/clipboard.mojom", |
| 69 "common/ime.mojom", | 69 "common/ime.mojom", |
| 70 "common/input.mojom", | 70 "common/input.mojom", |
| 71 "common/intent_helper.mojom", | 71 "common/intent_helper.mojom", |
| 72 "common/net.mojom", | 72 "common/net.mojom", |
| 73 "common/notifications.mojom", | 73 "common/notifications.mojom", |
| 74 "common/policy.mojom", |
| 74 "common/power.mojom", | 75 "common/power.mojom", |
| 75 "common/process.mojom", | 76 "common/process.mojom", |
| 76 "common/video.mojom", | 77 "common/video.mojom", |
| 77 ] | 78 ] |
| 78 } | 79 } |
| 79 | 80 |
| 80 static_library("arc_test_support") { | 81 static_library("arc_test_support") { |
| 81 testonly = true | 82 testonly = true |
| 82 sources = [ | 83 sources = [ |
| 83 "test/fake_app_instance.cc", | 84 "test/fake_app_instance.cc", |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 ] | 144 ] |
| 144 | 145 |
| 145 deps = [ | 146 deps = [ |
| 146 ":arc_standalone", | 147 ":arc_standalone", |
| 147 "//base", | 148 "//base", |
| 148 "//ipc:ipc", | 149 "//ipc:ipc", |
| 149 "//ipc/mojo:mojo", | 150 "//ipc/mojo:mojo", |
| 150 "//mojo/edk/system", | 151 "//mojo/edk/system", |
| 151 ] | 152 ] |
| 152 } | 153 } |
| OLD | NEW |