| 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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 # The optimize: 'max' scattered throughout are particularly | 176 # The optimize: 'max' scattered throughout are particularly |
| 177 # important when compiled by MSVC 2013, which seems | 177 # important when compiled by MSVC 2013, which seems |
| 178 # to mis-link-time-compile code that's built with | 178 # to mis-link-time-compile code that's built with |
| 179 # different optimization levels. http://crbug.com/543583 | 179 # different optimization levels. http://crbug.com/543583 |
| 180 'variables': { | 180 'variables': { |
| 181 'optimize': 'max', | 181 'optimize': 'max', |
| 182 }, | 182 }, |
| 183 'dependencies': [ | 183 'dependencies': [ |
| 184 'skia', | 184 'skia', |
| 185 '../base/base.gyp:base', | 185 '../base/base.gyp:base', |
| 186 ], | 186 '../third_party/WebKit/public/blink.gyp:mojo_bindings', |
| 187 'includes': [ | |
| 188 '../mojo/mojom_bindings_generator.gypi', | |
| 189 ], | 187 ], |
| 190 'sources': [ | 188 'sources': [ |
| 191 # Note: file list duplicated in GN build. | 189 # Note: file list duplicated in GN build. |
| 192 'public/interfaces/bitmap.mojom', | |
| 193 'public/type_converters.cc', | 190 'public/type_converters.cc', |
| 194 ], | 191 ], |
| 195 }, | 192 }, |
| 196 ], | 193 ], |
| 197 } | 194 } |
| OLD | NEW |