| 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_host_impl.cc", | 10 "arc_bridge_host_impl.cc", |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 "common/arc_bridge.mojom", | 139 "common/arc_bridge.mojom", |
| 140 "common/audio.mojom", | 140 "common/audio.mojom", |
| 141 "common/auth.mojom", | 141 "common/auth.mojom", |
| 142 "common/bitmap.mojom", | 142 "common/bitmap.mojom", |
| 143 "common/bluetooth.mojom", | 143 "common/bluetooth.mojom", |
| 144 "common/boot_phase_monitor.mojom", | 144 "common/boot_phase_monitor.mojom", |
| 145 "common/clipboard.mojom", | 145 "common/clipboard.mojom", |
| 146 "common/crash_collector.mojom", | 146 "common/crash_collector.mojom", |
| 147 "common/enterprise_reporting.mojom", | 147 "common/enterprise_reporting.mojom", |
| 148 "common/file_system.mojom", | 148 "common/file_system.mojom", |
| 149 "common/focus_highlight.mojom", |
| 149 "common/ime.mojom", | 150 "common/ime.mojom", |
| 150 "common/intent_helper.mojom", | 151 "common/intent_helper.mojom", |
| 151 "common/kiosk.mojom", | 152 "common/kiosk.mojom", |
| 152 "common/metrics.mojom", | 153 "common/metrics.mojom", |
| 153 "common/notifications.mojom", | 154 "common/notifications.mojom", |
| 154 "common/obb_mounter.mojom", | 155 "common/obb_mounter.mojom", |
| 155 "common/policy.mojom", | 156 "common/policy.mojom", |
| 156 "common/power.mojom", | 157 "common/power.mojom", |
| 157 "common/print.mojom", | 158 "common/print.mojom", |
| 158 "common/process.mojom", | 159 "common/process.mojom", |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 "//testing/gtest", | 229 "//testing/gtest", |
| 229 "//ui/aura", | 230 "//ui/aura", |
| 230 "//ui/aura:test_support", | 231 "//ui/aura:test_support", |
| 231 "//ui/base:test_support", | 232 "//ui/base:test_support", |
| 232 "//ui/base/ime", | 233 "//ui/base/ime", |
| 233 "//ui/events", | 234 "//ui/events", |
| 234 "//ui/events:dom_keycode_converter", | 235 "//ui/events:dom_keycode_converter", |
| 235 "//url:url", | 236 "//url:url", |
| 236 ] | 237 ] |
| 237 } | 238 } |
| OLD | NEW |