Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(627)

Side by Side Diff: services/video_capture/BUILD.gn

Issue 2896913002: Reland [Mojo Video Capture] Hook up video capture service behind a feature flag (Closed)
Patch Set: Fixes for test/bot failures. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « media/capture/video/video_capture_system.h ('k') | services/video_capture/device_factory_media_to_mojo_adapter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698