 Chromium Code Reviews
 Chromium Code Reviews Issue 2824883005:
  [Mojo Video Capture] Stop service when last client disconnects.  (Closed)
    
  
    Issue 2824883005:
  [Mojo Video Capture] Stop service when last client disconnects.  (Closed) 
  | Index: services/video_capture/public/cpp/BUILD.gn | 
| diff --git a/services/video_capture/public/cpp/BUILD.gn b/services/video_capture/public/cpp/BUILD.gn | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..000dee0814c3774ade3ec90feb37a21e5f173e38 | 
| --- /dev/null | 
| +++ b/services/video_capture/public/cpp/BUILD.gn | 
| @@ -0,0 +1,25 @@ | 
| +# Copyright 2016 The Chromium Authors. All rights reserved. | 
| 
mcasas
2017/04/26 22:12:31
s/2016/2017/
 
chfremer
2017/04/26 23:33:35
Done.
 | 
| +# Use of this source code is governed by a BSD-style license that can be | 
| +# found in the LICENSE file. | 
| + | 
| +source_set("cpp") { | 
| + sources = [ | 
| + "device_to_feedback_observer_adapter.cc", | 
| + "device_to_feedback_observer_adapter.h", | 
| + "receiver_media_to_mojo_adapter.cc", | 
| + "receiver_media_to_mojo_adapter.h", | 
| + ] | 
| + | 
| + public_deps = [ | 
| + "//base", | 
| + "//components/prefs:prefs", | 
| 
mcasas
2017/04/26 22:12:31
Components? 
Probably not needed
 
chfremer
2017/04/26 23:33:35
Done.
 | 
| + "//media", | 
| + "//media/capture:capture", | 
| + "//services/service_manager/public/cpp", | 
| + "//services/video_capture/public/interfaces", | 
| + ] | 
| + | 
| + deps = [ | 
| + "//mojo/public/cpp/bindings:bindings", | 
| + ] | 
| +} |