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

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

Issue 2308663002: Migrate ArcBitmap to use typemapping (Closed)
Patch Set: Addressed comment Created 4 years, 3 months 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
« no previous file with comments | « no previous file | components/arc/bitmap/OWNERS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_bootstrap.cc", 10 "arc_bridge_bootstrap.cc",
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 deps = [ 106 deps = [
107 "//base", 107 "//base",
108 "//chromeos", 108 "//chromeos",
109 ] 109 ]
110 110
111 public_deps = [ 111 public_deps = [
112 ":arc_bindings", 112 ":arc_bindings",
113 ] 113 ]
114 } 114 }
115 115
116 static_library("arc_bitmap") {
117 sources = [
118 "bitmap/bitmap_type_converters.cc",
119 "bitmap/bitmap_type_converters.h",
120 ]
121
122 deps = [
123 "//skia",
124 ]
125
126 public_deps = [
127 ":arc_bindings",
128 ]
129 }
130
131 mojom("arc_bindings") { 116 mojom("arc_bindings") {
132 sources = [ 117 sources = [
133 "common/app.mojom", 118 "common/app.mojom",
134 "common/arc_bridge.mojom", 119 "common/arc_bridge.mojom",
135 "common/audio.mojom", 120 "common/audio.mojom",
136 "common/auth.mojom", 121 "common/auth.mojom",
137 "common/bitmap.mojom", 122 "common/bitmap.mojom",
138 "common/bluetooth.mojom", 123 "common/bluetooth.mojom",
139 "common/clipboard.mojom", 124 "common/clipboard.mojom",
140 "common/crash_collector.mojom", 125 "common/crash_collector.mojom",
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 ] 254 ]
270 255
271 deps = [ 256 deps = [
272 ":arc_standalone", 257 ":arc_standalone",
273 ":arc_standalone_service", 258 ":arc_standalone_service",
274 "//base", 259 "//base",
275 "//ipc:ipc", 260 "//ipc:ipc",
276 "//mojo/edk/system", 261 "//mojo/edk/system",
277 ] 262 ]
278 } 263 }
OLDNEW
« no previous file with comments | « no previous file | components/arc/bitmap/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698