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

Unified Diff: ui/gfx/image/mojo/BUILD.gn

Issue 2770693002: ash: HiDPI user avatar for SessionController (Closed)
Patch Set: nits, and 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/gfx/BUILD.gn ('k') | ui/gfx/image/mojo/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/image/mojo/BUILD.gn
diff --git a/ui/gfx/image/mojo/BUILD.gn b/ui/gfx/image/mojo/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..d7d0fe1591a7503a9c6287707d221133a4e7b960
--- /dev/null
+++ b/ui/gfx/image/mojo/BUILD.gn
@@ -0,0 +1,53 @@
+# Copyright 2017 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//mojo/public/tools/bindings/mojom.gni")
+
+mojom("interfaces") {
+ sources = [
+ "image.mojom",
+ ]
+}
+
+source_set("struct_traits") {
+ sources = [
+ "image_skia_struct_traits.cc",
+ "image_skia_struct_traits.h",
+ ]
+
+ public_deps = [
+ ":interfaces_shared_cpp_sources",
+ "//skia/public/interfaces",
+ "//ui/gfx",
+ ]
+}
+
+# Using a test service because the traits need to pass handles around. Revisit
+# this after Deserialize(Serialize()) API works with handles.
+mojom("test_interfaces") {
+ sources = [
+ "image_traits_test_service.mojom",
+ ]
+
+ public_deps = [
+ ":interfaces",
+ ]
+}
+
+source_set("unit_test") {
+ testonly = true
+
+ sources = [
+ "image_traits_unittest.cc",
+ ]
+
+ deps = [
+ ":struct_traits",
+ ":test_interfaces",
+ "//base",
+ "//mojo/public/cpp/bindings",
+ "//testing/gtest",
+ "//ui/gfx:test_support",
+ ]
+}
« no previous file with comments | « ui/gfx/BUILD.gn ('k') | ui/gfx/image/mojo/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698