Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # 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.
| |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 source_set("cpp") { | |
| 6 sources = [ | |
| 7 "device_to_feedback_observer_adapter.cc", | |
| 8 "device_to_feedback_observer_adapter.h", | |
| 9 "receiver_media_to_mojo_adapter.cc", | |
| 10 "receiver_media_to_mojo_adapter.h", | |
| 11 ] | |
| 12 | |
| 13 public_deps = [ | |
| 14 "//base", | |
| 15 "//components/prefs:prefs", | |
|
mcasas
2017/04/26 22:12:31
Components?
Probably not needed
chfremer
2017/04/26 23:33:35
Done.
| |
| 16 "//media", | |
| 17 "//media/capture:capture", | |
| 18 "//services/service_manager/public/cpp", | |
| 19 "//services/video_capture/public/interfaces", | |
| 20 ] | |
| 21 | |
| 22 deps = [ | |
| 23 "//mojo/public/cpp/bindings:bindings", | |
| 24 ] | |
| 25 } | |
| OLD | NEW |