| 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 16 matching lines...) Expand all Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |