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 'variables': { | 6 'variables': { |
7 'iphone_sim_path': '$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Deve
loper/Library/PrivateFrameworks', | 7 'iphone_sim_path': '$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Deve
loper/Library/PrivateFrameworks', |
8 'other_frameworks_path': '$(DEVELOPER_DIR)/../OtherFrameworks' | 8 'other_frameworks_path': '$(DEVELOPER_DIR)/../OtherFrameworks' |
9 }, | 9 }, |
10 'targets': [ | 10 'targets': [ |
(...skipping 30 matching lines...) Expand all Loading... |
41 '<(iphone_sim_path)/iPhoneSimulatorRemoteClient.framework/Versions/C
urrent/iPhoneSimulatorRemoteClient', | 41 '<(iphone_sim_path)/iPhoneSimulatorRemoteClient.framework/Versions/C
urrent/iPhoneSimulatorRemoteClient', |
42 '$(BUILD_DIR)/$(CONFIGURATION)/class-dump', | 42 '$(BUILD_DIR)/$(CONFIGURATION)/class-dump', |
43 ], | 43 ], |
44 'outputs': [ | 44 'outputs': [ |
45 '<(INTERMEDIATE_DIR)/iossim/iPhoneSimulatorRemoteClient.h' | 45 '<(INTERMEDIATE_DIR)/iossim/iPhoneSimulatorRemoteClient.h' |
46 ], | 46 ], |
47 'action': [ | 47 'action': [ |
48 # Actions don't provide a way to redirect stdout, so a custom | 48 # Actions don't provide a way to redirect stdout, so a custom |
49 # script is invoked that will execute the first argument and write | 49 # script is invoked that will execute the first argument and write |
50 # the output to the file specified as the second argument. | 50 # the output to the file specified as the second argument. |
51 '<(DEPTH)/testing/iossim/RedirectStdout.sh', | 51 '<(DEPTH)/testing/iossim/redirect-stdout.sh', |
52 '$(BUILD_DIR)/$(CONFIGURATION)/class-dump -CiPhoneSimulator <(iphone
_sim_path)/iPhoneSimulatorRemoteClient.framework', | 52 '$(BUILD_DIR)/$(CONFIGURATION)/class-dump -CiPhoneSimulator <(iphone
_sim_path)/iPhoneSimulatorRemoteClient.framework', |
53 '<(INTERMEDIATE_DIR)/iossim/iPhoneSimulatorRemoteClient.h', | 53 '<(INTERMEDIATE_DIR)/iossim/iPhoneSimulatorRemoteClient.h', |
54 ], | 54 ], |
55 'message': 'Generating header', | 55 'message': 'Generating header', |
56 }, | 56 }, |
57 ], | 57 ], |
58 }, | 58 }, |
59 ], | 59 ], |
60 } | 60 } |
OLD | NEW |