| 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 assert(is_chromeos) | 5 assert(is_chromeos) |
| 6 | 6 |
| 7 source_set("webcam_private") { | 7 source_set("webcam_private") { |
| 8 sources = [ | 8 sources = [ |
| 9 "v4l2_webcam.cc", | 9 "v4l2_webcam.cc", |
| 10 "v4l2_webcam.h", | 10 "v4l2_webcam.h", |
| 11 "visca_webcam.cc", | 11 "visca_webcam.cc", |
| 12 "visca_webcam.h", | 12 "visca_webcam.h", |
| 13 "webcam.cc", | 13 "webcam.cc", |
| 14 "webcam.h", | 14 "webcam.h", |
| 15 "webcam_private_api.h", | 15 "webcam_private_api.h", |
| 16 "webcam_private_api_chromeos.cc", | 16 "webcam_private_api_chromeos.cc", |
| 17 ] | 17 ] |
| 18 | 18 |
| 19 deps = [ | 19 public_deps = [ |
| 20 "//extensions/common/api", | 20 "//extensions/common/api", |
| 21 ] | 21 ] |
| 22 } | 22 } |
| OLD | NEW |