| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 "//media/capture:capture", | 46 "//media/capture:capture", |
| 47 "//media/mojo/common:common", | 47 "//media/mojo/common:common", |
| 48 "//mojo/common:common_base", | 48 "//mojo/common:common_base", |
| 49 "//services/shell/public/cpp", | 49 "//services/shell/public/cpp", |
| 50 "//services/video_capture/public/interfaces", | 50 "//services/video_capture/public/interfaces", |
| 51 ] | 51 ] |
| 52 } | 52 } |
| 53 | 53 |
| 54 test("video_capture_unittests") { | 54 test("video_capture_unittests") { |
| 55 sources = [ | 55 sources = [ |
| 56 "fake_device_video_capture_service_test.cc", | 56 "fake_device_descriptor_test.cc", |
| 57 "fake_device_video_capture_service_test.h", | 57 "fake_device_descriptor_test.h", |
| 58 "fake_device_video_capture_service_unittest.cc", | 58 "fake_device_descriptor_unittest.cc", |
| 59 "fake_device_test.cc", |
| 60 "fake_device_test.h", |
| 61 "fake_device_unittest.cc", |
| 59 "mock_device_descriptor_receiver.cc", | 62 "mock_device_descriptor_receiver.cc", |
| 60 "mock_device_descriptor_receiver.h", | 63 "mock_device_descriptor_receiver.h", |
| 61 "mock_video_capture_device_client.cc", | 64 "mock_video_capture_device_client.cc", |
| 62 "mock_video_capture_device_client.h", | 65 "mock_video_capture_device_client.h", |
| 63 "video_capture_service_test.cc", | 66 "video_capture_service_test.cc", |
| 64 "video_capture_service_test.h", | 67 "video_capture_service_test.h", |
| 65 "video_capture_service_unittest.cc", | 68 "video_capture_service_unittest.cc", |
| 66 ] | 69 ] |
| 67 | 70 |
| 68 deps = [ | 71 deps = [ |
| (...skipping 10 matching lines...) Expand all Loading... |
| 79 | 82 |
| 80 data_deps = [ | 83 data_deps = [ |
| 81 ":unittest_manifest", | 84 ":unittest_manifest", |
| 82 ] | 85 ] |
| 83 } | 86 } |
| 84 | 87 |
| 85 service_manifest("unittest_manifest") { | 88 service_manifest("unittest_manifest") { |
| 86 name = "video_capture_unittests" | 89 name = "video_capture_unittests" |
| 87 source = "service_unittest_manifest.json" | 90 source = "service_unittest_manifest.json" |
| 88 } | 91 } |
| OLD | NEW |