OLD | NEW |
(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 } |
OLD | NEW |