Chromium Code Reviews| 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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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 { | 204 { |
| 205 'target_name': 'image_decode_bench', | 205 'target_name': 'image_decode_bench', |
| 206 'type': 'executable', | 206 'type': 'executable', |
| 207 'dependencies': [ | 207 'dependencies': [ |
| 208 '../config.gyp:config', | 208 '../config.gyp:config', |
|
Noel Gordon
2016/04/26 14:09:59
To compile on Mac OSX with a component build, I ha
scroggo_chromium
2016/04/29 13:44:30
Per comment over email, left this out.
| |
| 209 '../core/core.gyp:webcore', | 209 '../core/core.gyp:webcore', |
| 210 '../platform/blink_platform.gyp:blink_common', | 210 '../platform/blink_platform.gyp:blink_common', |
| 211 '../wtf/wtf.gyp:wtf', | 211 '../wtf/wtf.gyp:wtf', |
| 212 'blink_web', | 212 'blink_web', |
| 213 'blink_web_test_support', | 213 'blink_web_test_support', |
| 214 ], | 214 ], |
| 215 'defines': [ | 215 'defines': [ |
| 216 'BLINK_IMPLEMENTATION=1', | 216 'BLINK_IMPLEMENTATION=1', |
| 217 ], | 217 ], |
| 218 'sources': [ | 218 'sources': [ |
| 219 'ImageDecodeBench.cpp', | 219 'ImageDecodeBench.cpp', |
| 220 '../platform/testing/TestingPlatformSupport.cpp', | |
| 221 '../platform/testing/TestingPlatformSupport.h', | |
|
Noel Gordon
2016/04/26 14:09:59
As mentioned in review of ImageDecodeBench.cpp, we
scroggo_chromium
2016/04/29 13:44:30
Done.
| |
| 220 ], | 222 ], |
| 221 }, | 223 }, |
| 222 ], # targets | 224 ], # targets |
| 223 'conditions': [ | 225 'conditions': [ |
| 224 ['OS=="mac"', { | 226 ['OS=="mac"', { |
| 225 'targets': [ | 227 'targets': [ |
| 226 { | 228 { |
| 227 'target_name': 'copy_mesa', | 229 'target_name': 'copy_mesa', |
| 228 'type': 'none', | 230 'type': 'none', |
| 229 'dependencies': ['<(DEPTH)/third_party/mesa/mesa.gyp:osmesa' ], | 231 'dependencies': ['<(DEPTH)/third_party/mesa/mesa.gyp:osmesa' ], |
| 230 'copies': [{ | 232 'copies': [{ |
| 231 'destination': '<(PRODUCT_DIR)/DumpRenderTree.app/Conten ts/MacOS/', | 233 'destination': '<(PRODUCT_DIR)/DumpRenderTree.app/Conten ts/MacOS/', |
| 232 'files': ['<(PRODUCT_DIR)/osmesa.so'], | 234 'files': ['<(PRODUCT_DIR)/osmesa.so'], |
| 233 }], | 235 }], |
| 234 }, | 236 }, |
| 235 ], | 237 ], |
| 236 }], | 238 }], |
| 237 ], # conditions | 239 ], # conditions |
| 238 } | 240 } |
| OLD | NEW |