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 ['OS!="ios" or "<(GENERATOR)"!="xcode" or "<(GENERATOR_FLAVOR)"=="ninja"', { | 7 ['OS!="ios" or "<(GENERATOR)"!="xcode" or "<(GENERATOR_FLAVOR)"=="ninja"', { |
8 'targets': [ | 8 'targets': [ |
9 { | 9 { |
10 'target_name': 'iossim', | 10 'target_name': 'iossim', |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
76 'message': 'Generating CoreSimulator.h', | 76 'message': 'Generating CoreSimulator.h', |
77 }, | 77 }, |
78 ], # actions | 78 ], # actions |
79 }, { # else: xcode_version<"6.0" | 79 }, { # else: xcode_version<"6.0" |
80 'variables': { | 80 'variables': { |
81 'iphone_sim_path': '<(developer_dir)/Platforms/iPhoneSimulator.p latform/Developer/Library/PrivateFrameworks', | 81 'iphone_sim_path': '<(developer_dir)/Platforms/iPhoneSimulator.p latform/Developer/Library/PrivateFrameworks', |
82 }, | 82 }, |
83 }], # xcode_version | 83 }], # xcode_version |
84 ], # conditions | 84 ], # conditions |
85 'dependencies': [ | 85 'dependencies': [ |
86 'third_party/class-dump/class-dump.gyp:class-dump#host', | 86 'class-dump.gyp:class-dump#host', |
rohitrao (ping after 24h)
2015/04/27 14:11:14
Should we also delete the old file?
rohitrao (ping after 24h)
2015/04/27 14:11:51
Oh nevermind, just realized this was in the DEPS r
| |
87 ], | 87 ], |
88 'include_dirs': [ | 88 'include_dirs': [ |
89 '<(INTERMEDIATE_DIR)/iossim', | 89 '<(INTERMEDIATE_DIR)/iossim', |
90 ], | 90 ], |
91 'sources': [ | 91 'sources': [ |
92 'iossim.mm', | 92 'iossim.mm', |
93 '<(INTERMEDIATE_DIR)/iossim/iPhoneSimulatorRemoteClient.h', | 93 '<(INTERMEDIATE_DIR)/iossim/iPhoneSimulatorRemoteClient.h', |
94 ], | 94 ], |
95 'libraries': [ | 95 'libraries': [ |
96 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 96 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
154 'iossim', | 154 'iossim', |
155 ], | 155 ], |
156 'message': 'Generating the iossim executable', | 156 'message': 'Generating the iossim executable', |
157 }, | 157 }, |
158 ], | 158 ], |
159 }, | 159 }, |
160 ], | 160 ], |
161 }], | 161 }], |
162 ], | 162 ], |
163 } | 163 } |
OLD | NEW |