| 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", |
| 42 "video_capture_device_factory_impl.cc", | 44 "video_capture_device_factory_impl.cc", |
| 43 "video_capture_device_factory_impl.h", | 45 "video_capture_device_factory_impl.h", |
| 44 "video_capture_device_proxy_impl.cc", | 46 "video_capture_device_proxy_impl.cc", |
| 45 "video_capture_device_proxy_impl.h", | 47 "video_capture_device_proxy_impl.h", |
| 46 ] | 48 ] |
| 47 | 49 |
| 48 deps = [ | 50 deps = [ |
| 49 "//base", | 51 "//base", |
| 50 "//media/capture:capture", | 52 "//media/capture:capture", |
| 51 "//media/mojo/common:common", | 53 "//media/mojo/common:common", |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 | 96 |
| 95 data_deps = [ | 97 data_deps = [ |
| 96 ":unittest_manifest", | 98 ":unittest_manifest", |
| 97 ] | 99 ] |
| 98 } | 100 } |
| 99 | 101 |
| 100 service_manifest("unittest_manifest") { | 102 service_manifest("unittest_manifest") { |
| 101 name = "video_capture_unittests" | 103 name = "video_capture_unittests" |
| 102 source = "service_unittest_manifest.json" | 104 source = "service_unittest_manifest.json" |
| 103 } | 105 } |
| OLD | NEW |