| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'conditions': [ | 6 'conditions': [ |
| 7 # In component mode (shared_lib), we build all of skia as a single DLL. | 7 # In component mode (shared_lib), we build all of skia as a single DLL. |
| 8 # However, in the static mode, we need to build skia as multiple targets | 8 # However, in the static mode, we need to build skia as multiple targets |
| 9 # in order to support the use case where a platform (e.g. Android) may | 9 # in order to support the use case where a platform (e.g. Android) may |
| 10 # already have a copy of skia as a system library. | 10 # already have a copy of skia as a system library. |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 '../base/base.gyp:base', | 139 '../base/base.gyp:base', |
| 140 'skia.gyp:skia', | 140 'skia.gyp:skia', |
| 141 ], | 141 ], |
| 142 'sources': [ | 142 'sources': [ |
| 143 'tools/filter_fuzz_stub/filter_fuzz_stub.cc', | 143 'tools/filter_fuzz_stub/filter_fuzz_stub.cc', |
| 144 ], | 144 ], |
| 145 'includes': [ | 145 'includes': [ |
| 146 '../build/android/increase_size_for_speed.gypi', | 146 '../build/android/increase_size_for_speed.gypi', |
| 147 ], | 147 ], |
| 148 }, | 148 }, |
| 149 { |
| 150 'target_name': 'skia_mojo', |
| 151 'type': 'static_library', |
| 152 'dependencies': [ |
| 153 'skia_library', |
| 154 '../base/base.gyp:base', |
| 155 ], |
| 156 'includes': [ |
| 157 '../third_party/mojo/mojom_bindings_generator.gypi', |
| 158 ], |
| 159 'sources': [ |
| 160 # Note: file list duplicated in GN build. |
| 161 'public/interfaces/bitmap.mojom', |
| 162 'public/type_converters.cc', |
| 163 'public/type_converters.h', |
| 164 ], |
| 165 }, |
| 149 ], | 166 ], |
| 150 } | 167 } |
| OLD | NEW |