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

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

Issue 2255493002: Video Capture Mojo (1.4a.b): Rename interface VideoCaptureDevice to VideoCaptureDeviceProxy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@FillServicePart1_Part1
Patch Set: Merge-in changes from upstream CL Created 4 years, 4 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/public/interfaces/BUILD.gn » ('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 16 matching lines...) Expand all
27 27
28 service_manifest("manifest") { 28 service_manifest("manifest") {
29 name = "video_capture" 29 name = "video_capture"
30 source = "service_manifest.json" 30 source = "service_manifest.json"
31 } 31 }
32 32
33 source_set("lib") { 33 source_set("lib") {
34 sources = [ 34 sources = [
35 "video_capture_device_factory_impl.cc", 35 "video_capture_device_factory_impl.cc",
36 "video_capture_device_factory_impl.h", 36 "video_capture_device_factory_impl.h",
37 "video_capture_device_impl.cc", 37 "video_capture_device_proxy_impl.cc",
38 "video_capture_device_impl.h", 38 "video_capture_device_proxy_impl.h",
39 ] 39 ]
40 40
41 deps = [ 41 deps = [
42 "//base", 42 "//base",
43 "//mojo/common:common_base", 43 "//mojo/common:common_base",
44 "//services/shell/public/cpp", 44 "//services/shell/public/cpp",
45 "//services/video_capture/public/interfaces", 45 "//services/video_capture/public/interfaces",
46 ] 46 ]
47 } 47 }
48 48
(...skipping 16 matching lines...) Expand all
65 65
66 data_deps = [ 66 data_deps = [
67 ":unittest_manifest", 67 ":unittest_manifest",
68 ] 68 ]
69 } 69 }
70 70
71 service_manifest("unittest_manifest") { 71 service_manifest("unittest_manifest") {
72 name = "video_capture_unittests" 72 name = "video_capture_unittests"
73 source = "service_unittest_manifest.json" 73 source = "service_unittest_manifest.json"
74 } 74 }
OLDNEW
« no previous file with comments | « no previous file | services/video_capture/public/interfaces/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698