| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 '../base/base.gyp:base', | 126 '../base/base.gyp:base', |
| 127 'skia', | 127 'skia', |
| 128 ], | 128 ], |
| 129 'include_dirs': [ | 129 'include_dirs': [ |
| 130 '..', | 130 '..', |
| 131 ], | 131 ], |
| 132 'sources': [ | 132 'sources': [ |
| 133 'ext/image_operations_bench.cc', | 133 'ext/image_operations_bench.cc', |
| 134 ], | 134 ], |
| 135 }, | 135 }, |
| 136 { |
| 137 'target_name': 'filter_fuzz_stub', |
| 138 'type': 'executable', |
| 139 'dependencies': [ |
| 140 '../base/base.gyp:base', |
| 141 'skia.gyp:skia', |
| 142 ], |
| 143 'sources': [ |
| 144 'tools/filter_fuzz_stub/filter_fuzz_stub.cc', |
| 145 ], |
| 146 }, |
| 136 ], | 147 ], |
| 137 } | 148 } |
| OLD | NEW |