| 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 public_deps = [ | 122 public_deps = [ |
| 123 ":arc_bindings", | 123 ":arc_bindings", |
| 124 ] | 124 ] |
| 125 } | 125 } |
| 126 | 126 |
| 127 # TODO(crbug.com/662510): Remove this altogether. | 127 # TODO(crbug.com/662510): Remove this altogether. |
| 128 mojom("arc_bindings_old_types") { | 128 mojom("arc_bindings_old_types") { |
| 129 sources = [ | 129 sources = [ |
| 130 "common/bitmap.mojom", | 130 "common/bitmap.mojom", |
| 131 "common/bluetooth.mojom", | 131 "common/bluetooth.mojom", |
| 132 "common/enterprise_reporting.mojom", | |
| 133 "common/net.mojom", | 132 "common/net.mojom", |
| 134 "common/video_accelerator.mojom", | 133 "common/video_accelerator.mojom", |
| 135 ] | 134 ] |
| 136 | 135 |
| 137 public_deps = [ | 136 public_deps = [ |
| 138 "//mojo/common:common_custom_types", | 137 "//mojo/common:common_custom_types", |
| 139 "//ui/gfx/geometry/mojo", | 138 "//ui/gfx/geometry/mojo", |
| 140 ] | 139 ] |
| 141 | 140 |
| 142 use_new_wrapper_types = false | 141 use_new_wrapper_types = false |
| 143 } | 142 } |
| 144 | 143 |
| 145 mojom("arc_bindings") { | 144 mojom("arc_bindings") { |
| 146 sources = [ | 145 sources = [ |
| 147 "common/app.mojom", | 146 "common/app.mojom", |
| 148 "common/arc_bridge.mojom", | 147 "common/arc_bridge.mojom", |
| 149 "common/audio.mojom", | 148 "common/audio.mojom", |
| 150 "common/auth.mojom", | 149 "common/auth.mojom", |
| 151 "common/boot_phase_monitor.mojom", | 150 "common/boot_phase_monitor.mojom", |
| 152 "common/clipboard.mojom", | 151 "common/clipboard.mojom", |
| 153 "common/crash_collector.mojom", | 152 "common/crash_collector.mojom", |
| 153 "common/enterprise_reporting.mojom", |
| 154 "common/file_system.mojom", | 154 "common/file_system.mojom", |
| 155 "common/ime.mojom", | 155 "common/ime.mojom", |
| 156 "common/intent_helper.mojom", | 156 "common/intent_helper.mojom", |
| 157 "common/kiosk.mojom", | 157 "common/kiosk.mojom", |
| 158 "common/metrics.mojom", | 158 "common/metrics.mojom", |
| 159 "common/notifications.mojom", | 159 "common/notifications.mojom", |
| 160 "common/obb_mounter.mojom", | 160 "common/obb_mounter.mojom", |
| 161 "common/policy.mojom", | 161 "common/policy.mojom", |
| 162 "common/power.mojom", | 162 "common/power.mojom", |
| 163 "common/print.mojom", | 163 "common/print.mojom", |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 "//testing/gtest", | 231 "//testing/gtest", |
| 232 "//ui/aura", | 232 "//ui/aura", |
| 233 "//ui/aura:test_support", | 233 "//ui/aura:test_support", |
| 234 "//ui/base:test_support", | 234 "//ui/base:test_support", |
| 235 "//ui/base/ime", | 235 "//ui/base/ime", |
| 236 "//ui/events", | 236 "//ui/events", |
| 237 "//ui/events:dom_keycode_converter", | 237 "//ui/events:dom_keycode_converter", |
| 238 "//url:url", | 238 "//url:url", |
| 239 ] | 239 ] |
| 240 } | 240 } |
| OLD | NEW |