| 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 14 matching lines...) Expand all Loading... |
| 25 ] | 25 ] |
| 26 } | 26 } |
| 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_client_impl.cc", | |
| 36 "video_capture_device_client_impl.h", | |
| 37 "video_capture_device_factory_impl.cc", | 35 "video_capture_device_factory_impl.cc", |
| 38 "video_capture_device_factory_impl.h", | 36 "video_capture_device_factory_impl.h", |
| 39 "video_capture_device_impl.cc", | 37 "video_capture_device_impl.cc", |
| 40 "video_capture_device_impl.h", | 38 "video_capture_device_impl.h", |
| 41 ] | 39 ] |
| 42 | 40 |
| 43 deps = [ | 41 deps = [ |
| 44 "//base", | 42 "//base", |
| 45 "//mojo/common:common_base", | 43 "//mojo/common:common_base", |
| 46 "//services/shell/public/cpp", | 44 "//services/shell/public/cpp", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 67 | 65 |
| 68 data_deps = [ | 66 data_deps = [ |
| 69 ":unittest_manifest", | 67 ":unittest_manifest", |
| 70 ] | 68 ] |
| 71 } | 69 } |
| 72 | 70 |
| 73 service_manifest("unittest_manifest") { | 71 service_manifest("unittest_manifest") { |
| 74 name = "video_capture_unittests" | 72 name = "video_capture_unittests" |
| 75 source = "service_unittest_manifest.json" | 73 source = "service_unittest_manifest.json" |
| 76 } | 74 } |
| OLD | NEW |