| 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_service_manager.cc", | 10 "arc_service_manager.cc", |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 | 127 |
| 128 public_deps = [ | 128 public_deps = [ |
| 129 ":arc_bindings", | 129 ":arc_bindings", |
| 130 ] | 130 ] |
| 131 } | 131 } |
| 132 | 132 |
| 133 mojom("arc_bindings") { | 133 mojom("arc_bindings") { |
| 134 sources = [ | 134 sources = [ |
| 135 "common/accessibility_helper.mojom", | 135 "common/accessibility_helper.mojom", |
| 136 "common/app.mojom", | 136 "common/app.mojom", |
| 137 "common/app_discovery_result.mojom", |
| 137 "common/arc_bridge.mojom", | 138 "common/arc_bridge.mojom", |
| 138 "common/audio.mojom", | 139 "common/audio.mojom", |
| 139 "common/auth.mojom", | 140 "common/auth.mojom", |
| 140 "common/bitmap.mojom", | 141 "common/bitmap.mojom", |
| 141 "common/bluetooth.mojom", | 142 "common/bluetooth.mojom", |
| 142 "common/boot_phase_monitor.mojom", | 143 "common/boot_phase_monitor.mojom", |
| 143 "common/clipboard.mojom", | 144 "common/clipboard.mojom", |
| 144 "common/crash_collector.mojom", | 145 "common/crash_collector.mojom", |
| 145 "common/enterprise_reporting.mojom", | 146 "common/enterprise_reporting.mojom", |
| 146 "common/file_system.mojom", | 147 "common/file_system.mojom", |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 "//testing/gtest", | 242 "//testing/gtest", |
| 242 "//ui/aura", | 243 "//ui/aura", |
| 243 "//ui/aura:test_support", | 244 "//ui/aura:test_support", |
| 244 "//ui/base:test_support", | 245 "//ui/base:test_support", |
| 245 "//ui/base/ime", | 246 "//ui/base/ime", |
| 246 "//ui/events", | 247 "//ui/events", |
| 247 "//ui/events:dom_keycode_converter", | 248 "//ui/events:dom_keycode_converter", |
| 248 "//url:url", | 249 "//url:url", |
| 249 ] | 250 ] |
| 250 } | 251 } |
| OLD | NEW |