| 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 25 matching lines...) Expand all Loading... |
| 36 "buffer_tracker_factory_impl.cc", | 36 "buffer_tracker_factory_impl.cc", |
| 37 "buffer_tracker_factory_impl.h", | 37 "buffer_tracker_factory_impl.h", |
| 38 "device_client_media_to_mojo_adapter.cc", | 38 "device_client_media_to_mojo_adapter.cc", |
| 39 "device_client_media_to_mojo_adapter.h", | 39 "device_client_media_to_mojo_adapter.h", |
| 40 "device_factory_media_to_mojo_adapter.cc", | 40 "device_factory_media_to_mojo_adapter.cc", |
| 41 "device_factory_media_to_mojo_adapter.h", | 41 "device_factory_media_to_mojo_adapter.h", |
| 42 "device_mock_to_media_adapter.cc", | 42 "device_mock_to_media_adapter.cc", |
| 43 "device_mock_to_media_adapter.h", | 43 "device_mock_to_media_adapter.h", |
| 44 "mock_device_factory.cc", | 44 "mock_device_factory.cc", |
| 45 "mock_device_factory.h", | 45 "mock_device_factory.h", |
| 46 "mojo_media_conversions.cc", | |
| 47 "mojo_media_conversions.h", | |
| 48 "mojo_shared_memory_buffer_handle.cc", | 46 "mojo_shared_memory_buffer_handle.cc", |
| 49 "mojo_shared_memory_buffer_handle.h", | 47 "mojo_shared_memory_buffer_handle.h", |
| 50 "mojo_shared_memory_buffer_tracker.cc", | 48 "mojo_shared_memory_buffer_tracker.cc", |
| 51 "mojo_shared_memory_buffer_tracker.h", | 49 "mojo_shared_memory_buffer_tracker.h", |
| 52 "receiver_mojo_to_media_adapter.cc", | 50 "receiver_mojo_to_media_adapter.cc", |
| 53 "receiver_mojo_to_media_adapter.h", | 51 "receiver_mojo_to_media_adapter.h", |
| 54 "video_capture_device_proxy_impl.cc", | 52 "video_capture_device_proxy_impl.cc", |
| 55 "video_capture_device_proxy_impl.h", | 53 "video_capture_device_proxy_impl.h", |
| 56 ] | 54 ] |
| 57 | 55 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 88 "mock_video_frame_receiver.h", | 86 "mock_video_frame_receiver.h", |
| 89 "video_capture_service_test.cc", | 87 "video_capture_service_test.cc", |
| 90 "video_capture_service_test.h", | 88 "video_capture_service_test.h", |
| 91 "video_capture_service_unittest.cc", | 89 "video_capture_service_unittest.cc", |
| 92 ] | 90 ] |
| 93 | 91 |
| 94 deps = [ | 92 deps = [ |
| 95 ":video_capture", | 93 ":video_capture", |
| 96 "//base", | 94 "//base", |
| 97 "//base/test:test_support", | 95 "//base/test:test_support", |
| 96 "//media/capture:capture", |
| 98 "//media/mojo/common:common", | 97 "//media/mojo/common:common", |
| 99 "//services/shell/public/cpp", | 98 "//services/shell/public/cpp", |
| 100 "//services/shell/public/cpp:service_test_support", | 99 "//services/shell/public/cpp:service_test_support", |
| 101 "//services/shell/public/cpp/test:run_all_shelltests", | 100 "//services/shell/public/cpp/test:run_all_shelltests", |
| 102 "//services/video_capture/public/interfaces", | 101 "//services/video_capture/public/interfaces", |
| 103 "//testing/gmock", | 102 "//testing/gmock", |
| 104 "//testing/gtest", | 103 "//testing/gtest", |
| 105 "//ui/gfx:test_support", | 104 "//ui/gfx:test_support", |
| 106 ] | 105 ] |
| 107 | 106 |
| 108 data_deps = [ | 107 data_deps = [ |
| 109 ":unittest_manifest", | 108 ":unittest_manifest", |
| 110 ] | 109 ] |
| 111 } | 110 } |
| 112 | 111 |
| 113 service_manifest("unittest_manifest") { | 112 service_manifest("unittest_manifest") { |
| 114 name = "video_capture_unittests" | 113 name = "video_capture_unittests" |
| 115 source = "service_unittest_manifest.json" | 114 source = "service_unittest_manifest.json" |
| 116 } | 115 } |
| OLD | NEW |