Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(256)

Side by Side Diff: components/arc/BUILD.gn

Issue 2511253002: arc: bluetooth: enable use_new_wrapper_types for bluetooth.mojom (Closed)
Patch Set: rebase to ToT Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 121
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",
132 "common/net.mojom", 131 "common/net.mojom",
133 "common/video_accelerator.mojom", 132 "common/video_accelerator.mojom",
134 ] 133 ]
135 134
136 public_deps = [ 135 public_deps = [
137 "//mojo/common:common_custom_types", 136 "//mojo/common:common_custom_types",
138 "//ui/gfx/geometry/mojo", 137 "//ui/gfx/geometry/mojo",
139 ] 138 ]
140 139
141 use_new_wrapper_types = false 140 use_new_wrapper_types = false
142 } 141 }
143 142
144 mojom("arc_bindings") { 143 mojom("arc_bindings") {
145 sources = [ 144 sources = [
146 "common/app.mojom", 145 "common/app.mojom",
147 "common/arc_bridge.mojom", 146 "common/arc_bridge.mojom",
148 "common/audio.mojom", 147 "common/audio.mojom",
149 "common/auth.mojom", 148 "common/auth.mojom",
149 "common/bluetooth.mojom",
150 "common/boot_phase_monitor.mojom", 150 "common/boot_phase_monitor.mojom",
151 "common/clipboard.mojom", 151 "common/clipboard.mojom",
152 "common/crash_collector.mojom", 152 "common/crash_collector.mojom",
153 "common/enterprise_reporting.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",
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698