mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
34 lines
800 B
Plaintext
34 lines
800 B
Plaintext
# Copyright 2016 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import("//extensions/buildflags/buildflags.gni")
|
|
|
|
assert(enable_extensions,
|
|
"Cannot depend on extensions because enable_extensions=false.")
|
|
assert(is_chromeos)
|
|
|
|
source_set("webcam_private") {
|
|
sources = [
|
|
"v4l2_webcam.cc",
|
|
"v4l2_webcam.h",
|
|
"visca_webcam.cc",
|
|
"visca_webcam.h",
|
|
"webcam.cc",
|
|
"webcam.h",
|
|
"webcam_private_api.h",
|
|
"webcam_private_api_chromeos.cc",
|
|
]
|
|
|
|
deps = [
|
|
"//extensions/common/api",
|
|
"//mojo/public/cpp/bindings",
|
|
"//services/device/public/mojom",
|
|
"//services/service_manager/public/cpp",
|
|
]
|
|
|
|
public_deps = [
|
|
"//extensions/browser:browser_sources",
|
|
]
|
|
}
|