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

Unified Diff: services/ui/public/interfaces/cursor/BUILD.gn

Issue 2786983003: [aura-mus] Add ui::CursorData, with mojo serialization. (Closed)
Patch Set: Enhance the test and comment mojom. 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
Index: services/ui/public/interfaces/cursor/BUILD.gn
diff --git a/services/ui/public/interfaces/cursor/BUILD.gn b/services/ui/public/interfaces/cursor/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..b965392b1d035d75d5170ffdeaf5c2c8c8422f1b
--- /dev/null
+++ b/services/ui/public/interfaces/cursor/BUILD.gn
@@ -0,0 +1,28 @@
+# 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("cursor") {
+ sources = [
+ "cursor.mojom",
+ ]
+
+ public_deps = [
+ "//mojo/common:common_custom_types",
+ "//skia/public/interfaces",
+ "//skia/public/interfaces:mojo",
+ "//ui/gfx/geometry/mojo",
+ ]
+}
+
+mojom("test_interfaces") {
+ sources = [
+ "cursor_struct_traits_test.mojom",
+ ]
+
+ public_deps = [
+ ":cursor",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698