| 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 ] | 122 ] |
| 123 } | 123 } |
| 124 | 124 |
| 125 # TODO(crbug.com/662510): Remove this altogether. | 125 # TODO(crbug.com/662510): Remove this altogether. |
| 126 mojom("arc_bindings_old_types") { | 126 mojom("arc_bindings_old_types") { |
| 127 sources = [ | 127 sources = [ |
| 128 "common/app.mojom", | 128 "common/app.mojom", |
| 129 "common/bitmap.mojom", | 129 "common/bitmap.mojom", |
| 130 "common/bluetooth.mojom", | 130 "common/bluetooth.mojom", |
| 131 "common/enterprise_reporting.mojom", | 131 "common/enterprise_reporting.mojom", |
| 132 "common/ime.mojom", | |
| 133 "common/intent_helper.mojom", | 132 "common/intent_helper.mojom", |
| 134 "common/metrics.mojom", | |
| 135 "common/net.mojom", | 133 "common/net.mojom", |
| 136 "common/notifications.mojom", | 134 "common/notifications.mojom", |
| 137 "common/obb_mounter.mojom", | |
| 138 "common/policy.mojom", | |
| 139 "common/power.mojom", | |
| 140 "common/print.mojom", | |
| 141 "common/process.mojom", | |
| 142 "common/scale_factor.mojom", | 135 "common/scale_factor.mojom", |
| 143 "common/screen_rect.mojom", | 136 "common/screen_rect.mojom", |
| 144 "common/storage_manager.mojom", | |
| 145 "common/tts.mojom", | |
| 146 "common/video.mojom", | |
| 147 "common/video_accelerator.mojom", | 137 "common/video_accelerator.mojom", |
| 148 "common/wallpaper.mojom", | |
| 149 ] | 138 ] |
| 150 | 139 |
| 151 public_deps = [ | 140 public_deps = [ |
| 152 "//mojo/common:common_custom_types", | 141 "//mojo/common:common_custom_types", |
| 153 "//ui/gfx/geometry/mojo", | 142 "//ui/gfx/geometry/mojo", |
| 154 ] | 143 ] |
| 155 | 144 |
| 156 use_new_wrapper_types = false | 145 use_new_wrapper_types = false |
| 157 } | 146 } |
| 158 | 147 |
| 159 mojom("arc_bindings") { | 148 mojom("arc_bindings") { |
| 160 sources = [ | 149 sources = [ |
| 161 "common/arc_bridge.mojom", | 150 "common/arc_bridge.mojom", |
| 162 "common/audio.mojom", | 151 "common/audio.mojom", |
| 163 "common/auth.mojom", | 152 "common/auth.mojom", |
| 164 "common/boot_phase_monitor.mojom", | 153 "common/boot_phase_monitor.mojom", |
| 165 "common/clipboard.mojom", | 154 "common/clipboard.mojom", |
| 166 "common/crash_collector.mojom", | 155 "common/crash_collector.mojom", |
| 167 "common/file_system.mojom", | 156 "common/file_system.mojom", |
| 157 "common/ime.mojom", |
| 158 "common/metrics.mojom", |
| 159 "common/obb_mounter.mojom", |
| 160 "common/policy.mojom", |
| 161 "common/power.mojom", |
| 162 "common/print.mojom", |
| 163 "common/process.mojom", |
| 164 "common/storage_manager.mojom", |
| 165 "common/tts.mojom", |
| 166 "common/video.mojom", |
| 167 "common/wallpaper.mojom", |
| 168 ] | 168 ] |
| 169 | 169 |
| 170 public_deps = [ | 170 public_deps = [ |
| 171 ":arc_bindings_old_types", | 171 ":arc_bindings_old_types", |
| 172 "//mojo/common:common_custom_types", | 172 "//mojo/common:common_custom_types", |
| 173 ] | 173 ] |
| 174 } | 174 } |
| 175 | 175 |
| 176 static_library("arc_test_support") { | 176 static_library("arc_test_support") { |
| 177 testonly = true | 177 testonly = true |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 "//testing/gtest", | 228 "//testing/gtest", |
| 229 "//ui/aura", | 229 "//ui/aura", |
| 230 "//ui/aura:test_support", | 230 "//ui/aura:test_support", |
| 231 "//ui/base:test_support", | 231 "//ui/base:test_support", |
| 232 "//ui/base/ime", | 232 "//ui/base/ime", |
| 233 "//ui/events", | 233 "//ui/events", |
| 234 "//ui/events:dom_keycode_converter", | 234 "//ui/events:dom_keycode_converter", |
| 235 "//url:url", | 235 "//url:url", |
| 236 ] | 236 ] |
| 237 } | 237 } |
| OLD | NEW |