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

Unified Diff: services/camera/BUILD.gn

Issue 1375733004: -Add a mojo service to get video frames from the camera through an android service (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: merge. Created 5 years, 2 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 | « services/BUILD.gn ('k') | services/camera/src/org/chromium/services/camera/CameraApp.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/camera/BUILD.gn
diff --git a/services/camera/BUILD.gn b/services/camera/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..6a07fcfa564b9d77c6786bca4b578f7e44802a68
--- /dev/null
+++ b/services/camera/BUILD.gn
@@ -0,0 +1,36 @@
+# Copyright 2015 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("//mojo/public/tools/bindings/mojom.gni")
+import("//mojo/android/rules.gni")
+
+mojo_android_java_application("camera") {
+ sources = [
+ "src/org/chromium/services/camera/CameraApp.java",
+ "src/org/chromium/services/camera/CameraServiceImpl.java",
+ ]
+
+ mojo_main = "org.chromium.services.camera.CameraApp"
+
+ deps = [
+ "//base:base_java",
+ "//mojo/public/interfaces/application:application_java",
+ "//mojo/public/java:application",
+ "//mojo/services/camera/public/interfaces:interfaces_java",
+ ]
+}
+
+mojo_android_java_application("camera_roll") {
+ sources = [
+ "src/org/chromium/services/camera/CameraRollApp.java",
+ ]
+
+ mojo_main = "org.chromium.services.camera.CameraRollApp"
+
+ deps = [
+ "//mojo/public/interfaces/application:application_java",
+ "//mojo/public/java:application",
+ "//mojo/services/camera/public/interfaces:interfaces_java",
+ ]
+}
« no previous file with comments | « services/BUILD.gn ('k') | services/camera/src/org/chromium/services/camera/CameraApp.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698