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

Side by Side Diff: ui/gfx/image/mojo/BUILD.gn

Issue 2772113004: Make skia.mojom.Bitmap use shared buffer (Closed)
Patch Set: fix gn check Created 3 years, 9 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
OLDNEW
1 # Copyright 2017 The Chromium Authors. All rights reserved. 1 # Copyright 2017 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 6
7 mojom("interfaces") { 7 mojom("interfaces") {
8 sources = [ 8 sources = [
9 "image.mojom", 9 "image.mojom",
10 ] 10 ]
11
12 public_deps = [
13 "//skia/public/interfaces",
14 ]
11 } 15 }
12 16
13 source_set("struct_traits") { 17 source_set("struct_traits") {
14 sources = [ 18 sources = [
15 "image_skia_struct_traits.cc", 19 "image_skia_struct_traits.cc",
16 "image_skia_struct_traits.h", 20 "image_skia_struct_traits.h",
17 ] 21 ]
18 22
19 public_deps = [ 23 public_deps = [
20 ":interfaces_shared_cpp_sources", 24 ":interfaces_shared_cpp_sources",
(...skipping 23 matching lines...) Expand all
44 48
45 deps = [ 49 deps = [
46 ":struct_traits", 50 ":struct_traits",
47 ":test_interfaces", 51 ":test_interfaces",
48 "//base", 52 "//base",
49 "//mojo/public/cpp/bindings", 53 "//mojo/public/cpp/bindings",
50 "//testing/gtest", 54 "//testing/gtest",
51 "//ui/gfx:test_support", 55 "//ui/gfx:test_support",
52 ] 56 ]
53 } 57 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698