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

Unified Diff: media/capture/capture.gyp

Issue 2027023002: ImageCapture: move mojom from WebKit/public to media/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 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 side-by-side diff with in-line comments
Download patch
Index: media/capture/capture.gyp
diff --git a/media/capture/capture.gyp b/media/capture/capture.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..bcd56e3bc0acc527ebf3c25ff8c4223bf3933fd9
--- /dev/null
+++ b/media/capture/capture.gyp
@@ -0,0 +1,36 @@
+# 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.
+
+{
+ 'variables': {
+ 'chromium_code': 1,
+ },
+ 'targets': [
+ {
+ # GN version: //media/capture:mojo_bindings
+ 'target_name': 'media_capture_mojo_bindings',
+ 'type': 'static_library',
+ 'includes': [
+ '../../mojo/mojom_bindings_generator.gypi',
+ ],
+ 'sources': [
+ 'imagecapture/image_capture.mojom',
+ ],
+ },
+ {
+ # GN version: //media/capture:mojo_bindings
+ 'target_name': 'media_capture_mojo_bindings_for_blink',
+ 'type': 'static_library',
+ 'variables': {
+ 'for_blink': 'true',
+ },
+ 'includes': [
+ '../../mojo/mojom_bindings_generator.gypi',
+ ],
+ 'sources': [
+ 'imagecapture/image_capture.mojom',
+ ],
+ },
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698