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

Side by Side 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: Expose InterfacePtr::encountered_error() through ImagePipeProducerEndpoint so the GL on ImagePipe i… Created 4 years, 10 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
(Empty)
1 # Copyright 2015 The Chromium Authors. All rights reserved.
jamesr 2016/02/18 20:40:58 2016 (and elsewhere)
Forrest Reiling 2016/02/25 00:35:13 Ok I think I got them all
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//build/module_args/mojo.gni")
6 import("$mojo_sdk_root/mojo/public/mojo_sdk.gni")
7 import("$mojo_sdk_root/mojo/public/mojo_application.gni")
8
9 mojo_sdk_source_set("lib") {
10 restrict_external_deps = false
11 sources = [
12 "image_pipe_consumer_delegate.h",
13 "image_pipe_consumer_endpoint.cc",
14 "image_pipe_consumer_endpoint.h",
15 "image_pipe_endpoint.cc",
16 "image_pipe_endpoint.h",
17 "image_pipe_producer_endpoint.cc",
18 "image_pipe_producer_endpoint.h",
19 ]
20
21 deps = [
22 "../interfaces",
23 ]
24 }
25
26 mojo_native_application("image_pipe_apptest") {
27 output_name = "image_pipe_apptests"
28
29 testonly = true
30
31 sources = [
32 "image_pipe_apptest.cc",
33 ]
34
35 deps = [
36 ":lib",
37 "$mojo_sdk_root/mojo/public/cpp/application:standalone",
38 "$mojo_sdk_root/mojo/public/cpp/application:test_support_standalone",
39 "$mojo_sdk_root/mojo/public/cpp/environment",
40 "$mojo_sdk_root/mojo/public/cpp/system",
41 "$mojo_sdk_root/mojo/public/cpp/utility:utility",
jamesr 2016/02/18 20:40:58 just ".../cpp/utility"
Forrest Reiling 2016/02/25 00:35:13 Done.
42 ]
43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698