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

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

Issue 2376013002: [Mojo Video Capture] Move conversions between mojom and media types to a separate file (Closed)
Patch Set: mcasas' comments Created 4 years, 2 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
« no previous file with comments | « no previous file | services/video_capture/mojo_media_conversions.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | services/video_capture/mojo_media_conversions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698