| 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 "//mojo/edk/system", | 118 "//mojo/edk/system", |
| 119 ] | 119 ] |
| 120 | 120 |
| 121 public_deps = [ | 121 public_deps = [ |
| 122 ":arc_bindings", | 122 ":arc_bindings", |
| 123 ] | 123 ] |
| 124 } | 124 } |
| 125 | 125 |
| 126 mojom("arc_bindings") { | 126 mojom("arc_bindings") { |
| 127 sources = [ | 127 sources = [ |
| 128 "common/accessibility_helper.mojom", |
| 128 "common/app.mojom", | 129 "common/app.mojom", |
| 129 "common/arc_bridge.mojom", | 130 "common/arc_bridge.mojom", |
| 130 "common/audio.mojom", | 131 "common/audio.mojom", |
| 131 "common/auth.mojom", | 132 "common/auth.mojom", |
| 132 "common/bitmap.mojom", | 133 "common/bitmap.mojom", |
| 133 "common/bluetooth.mojom", | 134 "common/bluetooth.mojom", |
| 134 "common/boot_phase_monitor.mojom", | 135 "common/boot_phase_monitor.mojom", |
| 135 "common/clipboard.mojom", | 136 "common/clipboard.mojom", |
| 136 "common/crash_collector.mojom", | 137 "common/crash_collector.mojom", |
| 137 "common/enterprise_reporting.mojom", | 138 "common/enterprise_reporting.mojom", |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 "//testing/gtest", | 219 "//testing/gtest", |
| 219 "//ui/aura", | 220 "//ui/aura", |
| 220 "//ui/aura:test_support", | 221 "//ui/aura:test_support", |
| 221 "//ui/base:test_support", | 222 "//ui/base:test_support", |
| 222 "//ui/base/ime", | 223 "//ui/base/ime", |
| 223 "//ui/events", | 224 "//ui/events", |
| 224 "//ui/events:dom_keycode_converter", | 225 "//ui/events:dom_keycode_converter", |
| 225 "//url:url", | 226 "//url:url", |
| 226 ] | 227 ] |
| 227 } | 228 } |
| OLD | NEW |