| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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 source_set("cpp") { | 5 source_set("cpp") { |
| 6 sources = [ | 6 sources = [ |
| 7 "constants.cc", | |
| 8 "constants.h", | |
| 9 "device_to_feedback_observer_adapter.cc", | 7 "device_to_feedback_observer_adapter.cc", |
| 10 "device_to_feedback_observer_adapter.h", | 8 "device_to_feedback_observer_adapter.h", |
| 11 "receiver_media_to_mojo_adapter.cc", | 9 "receiver_media_to_mojo_adapter.cc", |
| 12 "receiver_media_to_mojo_adapter.h", | 10 "receiver_media_to_mojo_adapter.h", |
| 13 ] | 11 ] |
| 14 | 12 |
| 15 public_deps = [ | 13 public_deps = [ |
| 16 "//base", | 14 "//base", |
| 17 "//media", | 15 "//media", |
| 18 "//media/capture:capture", | 16 "//media/capture:capture", |
| 19 "//services/service_manager/public/cpp", | 17 "//services/service_manager/public/cpp", |
| 20 "//services/video_capture/public/interfaces", | 18 "//services/video_capture/public/interfaces", |
| 21 ] | 19 ] |
| 22 | 20 |
| 23 deps = [ | 21 deps = [ |
| 24 "//mojo/public/cpp/bindings:bindings", | 22 "//mojo/public/cpp/bindings:bindings", |
| 25 ] | 23 ] |
| 26 } | 24 } |
| OLD | NEW |