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

Unified Diff: mojo/services/gfx/images/cpp/BUILD.gn

Issue 1595773002: Added ImagePipe (Closed) Base URL: https://github.com/domokit/mojo.git@submit-2
Patch Set: rebased Created 4 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 | « mojo/BUILD.gn ('k') | mojo/services/gfx/images/cpp/image_pipe_apptest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/gfx/images/cpp/BUILD.gn
diff --git a/mojo/services/gfx/images/cpp/BUILD.gn b/mojo/services/gfx/images/cpp/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..9025c8bb49b71141caff1135e0196c3465f1d7a6
--- /dev/null
+++ b/mojo/services/gfx/images/cpp/BUILD.gn
@@ -0,0 +1,43 @@
+# Copyright 2016 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("//build/module_args/mojo.gni")
+import("$mojo_sdk_root/mojo/public/mojo_sdk.gni")
+import("$mojo_sdk_root/mojo/public/mojo_application.gni")
+
+mojo_sdk_source_set("lib") {
+ restrict_external_deps = false
+ sources = [
+ "image_pipe_consumer_delegate.h",
+ "image_pipe_consumer_endpoint.cc",
+ "image_pipe_consumer_endpoint.h",
+ "image_pipe_endpoint.cc",
+ "image_pipe_endpoint.h",
+ "image_pipe_producer_endpoint.cc",
+ "image_pipe_producer_endpoint.h",
+ ]
+
+ deps = [
+ "../interfaces",
+ ]
+}
+
+mojo_native_application("image_pipe_apptest") {
+ output_name = "image_pipe_apptests"
+
+ testonly = true
+
+ sources = [
+ "image_pipe_apptest.cc",
+ ]
+
+ deps = [
+ ":lib",
+ "$mojo_sdk_root/mojo/public/cpp/application:standalone",
+ "$mojo_sdk_root/mojo/public/cpp/application:test_support_standalone",
+ "$mojo_sdk_root/mojo/public/cpp/environment",
+ "$mojo_sdk_root/mojo/public/cpp/system",
+ "$mojo_sdk_root/mojo/public/cpp/utility",
+ ]
+}
« no previous file with comments | « mojo/BUILD.gn ('k') | mojo/services/gfx/images/cpp/image_pipe_apptest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698