Chromium Code Reviews| Index: testing/iossim/iossim.gyp |
| diff --git a/testing/iossim/iossim.gyp b/testing/iossim/iossim.gyp |
| index a78f024ab1e927f9cefc36769df12e9715b6b188..f135859220a67800bb3aff0b5b71bd31f32eddf8 100644 |
| --- a/testing/iossim/iossim.gyp |
| +++ b/testing/iossim/iossim.gyp |
| @@ -30,21 +30,22 @@ |
| ], |
| 'actions': [ |
| { |
| - 'action_name': 'generate_iphone_sim_header', |
| + 'action_name': 'generate_dvt_iphone_sim_header', |
| 'inputs': [ |
| - '<(iphone_sim_path)/iPhoneSimulatorRemoteClient.framework/Versions/Current/iPhoneSimulatorRemoteClient', |
| + '<(iphone_sim_path)/DVTiPhoneSimulatorRemoteClient.framework/Versions/Current/DVTiPhoneSimulatorRemoteClient', |
| '<(PRODUCT_DIR)/class-dump', |
| ], |
| 'outputs': [ |
| - '<(INTERMEDIATE_DIR)/iossim/iPhoneSimulatorRemoteClient.h' |
| + '<(INTERMEDIATE_DIR)/iossim/DVTiPhoneSimulatorRemoteClient.h' |
| ], |
| 'action': [ |
| # Actions don't provide a way to redirect stdout, so a custom |
| - # script is invoked that will execute the first argument and write |
| - # the output to the file specified as the second argument. |
| + # script is invoked that will execute the first argument and |
| + # write the output to the file specified as the second argument. |
| + # -I sorts classes, categories, and protocols by inheritance. |
|
TVL
2013/12/16 18:50:28
add the -C ?
justincohen
2013/12/16 18:59:52
Done.
|
| './redirect-stdout.sh', |
| - '<(PRODUCT_DIR)/class-dump -CiPhoneSimulator <(iphone_sim_path)/iPhoneSimulatorRemoteClient.framework', |
| - '<(INTERMEDIATE_DIR)/iossim/iPhoneSimulatorRemoteClient.h', |
| + '<(PRODUCT_DIR)/class-dump -I -CiPhoneSimulator <(iphone_sim_path)/DVTiPhoneSimulatorRemoteClient.framework', |
| + '<(INTERMEDIATE_DIR)/iossim/DVTiPhoneSimulatorRemoteClient.h', |
| ], |
| 'message': 'Generating header', |
| }, |