| 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/service_manager/public/cpp/service.gni") | 5 import("//services/service_manager/public/cpp/service.gni") |
| 6 import("//services/service_manager/public/service_manifest.gni") | 6 import("//services/service_manager/public/service_manifest.gni") |
| 7 import("//services/service_manager/public/tools/test/service_test.gni") | 7 import("//services/service_manager/public/tools/test/service_test.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 service("video_capture") { | 10 service("video_capture") { |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 "//media", | 44 "//media", |
| 45 "//media/capture:capture", | 45 "//media/capture:capture", |
| 46 "//media/capture/mojo:image_capture", | 46 "//media/capture/mojo:image_capture", |
| 47 "//media/mojo/common:common", | 47 "//media/mojo/common:common", |
| 48 "//mojo/common:common_base", | 48 "//mojo/common:common_base", |
| 49 "//services/service_manager/public/cpp", | 49 "//services/service_manager/public/cpp", |
| 50 "//services/video_capture/public/cpp", | 50 "//services/video_capture/public/cpp", |
| 51 "//services/video_capture/public/interfaces", | 51 "//services/video_capture/public/interfaces", |
| 52 "//services/video_capture/public/interfaces:constants", | 52 "//services/video_capture/public/interfaces:constants", |
| 53 ] | 53 ] |
| 54 | |
| 55 data_deps = [ | |
| 56 ":manifest", | |
| 57 ] | |
| 58 } | 54 } |
| 59 | 55 |
| 60 source_set("tests") { | 56 source_set("tests") { |
| 61 testonly = true | 57 testonly = true |
| 62 | 58 |
| 63 sources = [ | 59 sources = [ |
| 64 "test/device_factory_provider_test.cc", | 60 "test/device_factory_provider_test.cc", |
| 65 "test/device_factory_provider_test.h", | 61 "test/device_factory_provider_test.h", |
| 66 "test/device_factory_provider_unittest.cc", | 62 "test/device_factory_provider_unittest.cc", |
| 67 "test/fake_device_descriptor_test.cc", | 63 "test/fake_device_descriptor_test.cc", |
| (...skipping 30 matching lines...) Expand all Loading... |
| 98 | 94 |
| 99 service_manifest("unittest_manifest") { | 95 service_manifest("unittest_manifest") { |
| 100 name = "video_capture_unittests" | 96 name = "video_capture_unittests" |
| 101 source = "test/service_unittest_manifest.json" | 97 source = "test/service_unittest_manifest.json" |
| 102 } | 98 } |
| 103 | 99 |
| 104 catalog("tests_catalog") { | 100 catalog("tests_catalog") { |
| 105 embedded_services = [ ":unittest_manifest" ] | 101 embedded_services = [ ":unittest_manifest" ] |
| 106 standalone_services = [ ":manifest" ] | 102 standalone_services = [ ":manifest" ] |
| 107 } | 103 } |
| OLD | NEW |