| OLD | NEW |
| 1 # | 1 # |
| 2 # Copyright (C) 2011 Google Inc. All rights reserved. | 2 # Copyright (C) 2011 Google Inc. All rights reserved. |
| 3 # | 3 # |
| 4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
| 5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
| 6 # met: | 6 # met: |
| 7 # | 7 # |
| 8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
| 9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
| 10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 '../core/core.gyp:webcore', | 194 '../core/core.gyp:webcore', |
| 195 '../core/core.gyp:webcore_generated', | 195 '../core/core.gyp:webcore_generated', |
| 196 ], | 196 ], |
| 197 }, { | 197 }, { |
| 198 'dependencies': [ | 198 'dependencies': [ |
| 199 '../core/core.gyp:webcore_shared', | 199 '../core/core.gyp:webcore_shared', |
| 200 ], | 200 ], |
| 201 }], | 201 }], |
| 202 ], | 202 ], |
| 203 }, | 203 }, |
| 204 { | |
| 205 'target_name': 'image_decode_bench', | |
| 206 'type': 'executable', | |
| 207 'dependencies': [ | |
| 208 '../config.gyp:config', | |
| 209 '../core/core.gyp:webcore', | |
| 210 '../platform/blink_platform.gyp:blink_common', | |
| 211 '../wtf/wtf.gyp:wtf', | |
| 212 'blink_web', | |
| 213 'blink_web_test_support', | |
| 214 ], | |
| 215 'defines': [ | |
| 216 'BLINK_IMPLEMENTATION=1', | |
| 217 ], | |
| 218 'sources': [ | |
| 219 'ImageDecodeBench.cpp', | |
| 220 ], | |
| 221 }, | |
| 222 ], # targets | 204 ], # targets |
| 223 'conditions': [ | 205 'conditions': [ |
| 224 ['OS=="mac"', { | 206 ['OS=="mac"', { |
| 225 'targets': [ | 207 'targets': [ |
| 226 { | 208 { |
| 227 'target_name': 'copy_mesa', | 209 'target_name': 'copy_mesa', |
| 228 'type': 'none', | 210 'type': 'none', |
| 229 'dependencies': ['<(DEPTH)/third_party/mesa/mesa.gyp:osmesa'
], | 211 'dependencies': ['<(DEPTH)/third_party/mesa/mesa.gyp:osmesa'
], |
| 230 'copies': [{ | 212 'copies': [{ |
| 231 'destination': '<(PRODUCT_DIR)/DumpRenderTree.app/Conten
ts/MacOS/', | 213 'destination': '<(PRODUCT_DIR)/DumpRenderTree.app/Conten
ts/MacOS/', |
| 232 'files': ['<(PRODUCT_DIR)/osmesa.so'], | 214 'files': ['<(PRODUCT_DIR)/osmesa.so'], |
| 233 }], | 215 }], |
| 234 }, | 216 }, |
| 235 ], | 217 ], |
| 236 }], | 218 }], |
| 237 ], # conditions | 219 ], # conditions |
| 238 } | 220 } |
| OLD | NEW |