Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(293)

Side by Side Diff: extensions/browser/api/webcam_private/BUILD.gn

Issue 2852273002: Make extensions/browser/api/* sources to publicly depend on //ipc (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698