OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//services/shell/public/cpp/service.gni") | 5 import("//services/shell/public/cpp/service.gni") |
6 import("//services/shell/public/service_manifest.gni") | 6 import("//services/shell/public/service_manifest.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 | 8 |
9 service("video_capture") { | 9 service("video_capture") { |
10 sources = [ | 10 sources = [ |
(...skipping 21 matching lines...) Expand all Loading... |
32 } | 32 } |
33 | 33 |
34 source_set("lib") { | 34 source_set("lib") { |
35 sources = [ | 35 sources = [ |
36 "device_client_media_to_mojo_adapter.cc", | 36 "device_client_media_to_mojo_adapter.cc", |
37 "device_client_media_to_mojo_adapter.h", | 37 "device_client_media_to_mojo_adapter.h", |
38 "device_client_mojo_to_media_adapter.cc", | 38 "device_client_mojo_to_media_adapter.cc", |
39 "device_client_mojo_to_media_adapter.h", | 39 "device_client_mojo_to_media_adapter.h", |
40 "device_mock_to_media_adapter.cc", | 40 "device_mock_to_media_adapter.cc", |
41 "device_mock_to_media_adapter.h", | 41 "device_mock_to_media_adapter.h", |
42 "mojo_media_conversions.cc", | |
43 "mojo_media_conversions.h", | |
44 "video_capture_device_factory_impl.cc", | 42 "video_capture_device_factory_impl.cc", |
45 "video_capture_device_factory_impl.h", | 43 "video_capture_device_factory_impl.h", |
46 "video_capture_device_proxy_impl.cc", | 44 "video_capture_device_proxy_impl.cc", |
47 "video_capture_device_proxy_impl.h", | 45 "video_capture_device_proxy_impl.h", |
48 ] | 46 ] |
49 | 47 |
50 deps = [ | 48 deps = [ |
51 "//base", | 49 "//base", |
52 "//media/capture:capture", | 50 "//media/capture:capture", |
53 "//media/mojo/common:common", | 51 "//media/mojo/common:common", |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 | 94 |
97 data_deps = [ | 95 data_deps = [ |
98 ":unittest_manifest", | 96 ":unittest_manifest", |
99 ] | 97 ] |
100 } | 98 } |
101 | 99 |
102 service_manifest("unittest_manifest") { | 100 service_manifest("unittest_manifest") { |
103 name = "video_capture_unittests" | 101 name = "video_capture_unittests" |
104 source = "service_unittest_manifest.json" | 102 source = "service_unittest_manifest.json" |
105 } | 103 } |
OLD | NEW |