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

Unified Diff: extensions/browser/api/webcam_private/BUILD.gn

Issue 2336843002: Decompose //extensions/browser/BUILD.gn (Closed)
Patch Set: . Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « extensions/browser/api/web_request/BUILD.gn ('k') | extensions/browser/app_window/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/api/webcam_private/BUILD.gn
diff --git a/extensions/browser/api/webcam_private/BUILD.gn b/extensions/browser/api/webcam_private/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..e46793d31e34dd609cd38ab74f9816fe9630751c
--- /dev/null
+++ b/extensions/browser/api/webcam_private/BUILD.gn
@@ -0,0 +1,22 @@
+# 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.
+
+assert(is_chromeos)
Devlin 2016/09/15 00:08:04 nit: do we have to import anything to use is_chrom
Rahul Chaturvedi 2016/09/15 00:14:57 Nope. It is available without any imports, in fact
+
+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",
+ ]
+}
« no previous file with comments | « extensions/browser/api/web_request/BUILD.gn ('k') | extensions/browser/app_window/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698