Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 } | |
| OLD | NEW |