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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « components/enhanced_bookmarks.gypi ('k') | components/image_decoder/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 # GN version: //components/image_decoder/public/interfaces
9 'target_name': 'image_decoder_mojo_bindings',
10 'type': 'static_library',
11 'includes': [
12 '../third_party/mojo/mojom_bindings_generator.gypi',
13 ],
14 'dependencies': [
15 '../skia/skia.gyp:skia_mojo',
16 ],
17 'sources': [
18 'image_decoder/public/interfaces/image_decoder.mojom',
19 ],
20 },
21 {
22 # GN version: //components/image_decoder
23 'target_name': 'image_decoder',
24 'type': 'static_library',
25 'dependencies': [
26 '../base/base.gyp:base',
27 '../content/content.gyp:content_child',
28 '../skia/skia.gyp:skia',
29 '../skia/skia.gyp:skia_mojo',
30 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
31 'image_decoder_mojo_bindings',
32 ],
33 'sources': [
34 'image_decoder/image_decoder_impl.cc',
35 'image_decoder/image_decoder_impl.h',
36 ],
37 'export_dependent_settings': [
38 'image_decoder_mojo_bindings',
39 ],
40 },
41 ],
42 }
OLDNEW
« 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