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

Unified Diff: components/image_decoder.gypi

Issue 1028543002: Turn the utility process image decoder into a Mojo service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase and address comments. Created 5 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
« no previous file with comments | « components/enhanced_bookmarks.gypi ('k') | components/image_decoder/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/image_decoder.gypi
diff --git a/components/image_decoder.gypi b/components/image_decoder.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..6063ad0aecee9bb37ca19a141cc546fbb2ad2155
--- /dev/null
+++ b/components/image_decoder.gypi
@@ -0,0 +1,42 @@
+# 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.
+
+{
+ 'targets': [
+ {
+ # GN version: //components/image_decoder/public/interfaces
+ 'target_name': 'image_decoder_mojo_bindings',
+ 'type': 'static_library',
+ 'includes': [
+ '../third_party/mojo/mojom_bindings_generator.gypi',
+ ],
+ 'dependencies': [
+ '../skia/skia.gyp:skia_mojo',
+ ],
+ 'sources': [
+ 'image_decoder/public/interfaces/image_decoder.mojom',
+ ],
+ },
+ {
+ # GN version: //components/image_decoder
+ 'target_name': 'image_decoder',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../content/content.gyp:content_child',
+ '../skia/skia.gyp:skia',
+ '../skia/skia.gyp:skia_mojo',
+ '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
+ 'image_decoder_mojo_bindings',
+ ],
+ 'sources': [
+ 'image_decoder/image_decoder_impl.cc',
+ 'image_decoder/image_decoder_impl.h',
+ ],
+ 'export_dependent_settings': [
+ 'image_decoder_mojo_bindings',
+ ],
+ },
+ ],
+}
« no previous file with comments | « components/enhanced_bookmarks.gypi ('k') | components/image_decoder/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698