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 'mac_deployment_target': '10.9', | 7 'mac_deployment_target': '10.9', |
8 'mac_sdk_min': '10.9', | 8 'mac_sdk_min': '10.9', |
9 'class_dump_bin': '<(PRODUCT_DIR)/class-dump', | 9 'class_dump_bin': '<(PRODUCT_DIR)/class-dump', |
10 'class_dump_py': '<(DEPTH)/third_party/class-dump/class-dump.py', | 10 'class_dump_py': '<(DEPTH)/third_party/class-dump/class-dump.py', |
11 }, | 11 }, |
12 'conditions': [ | 12 'conditions': [ |
13 ['OS!="ios" or "<(GENERATOR)"!="xcode" or "<(GENERATOR_FLAVOR)"=="ninja"', { | 13 ['OS!="ios" or "<(GENERATOR)"!="xcode" or "<(GENERATOR_FLAVOR)"=="ninja"', { |
14 'targets': [ | 14 'targets': [ |
15 { | 15 { |
| 16 # GN version //testing/iossim(//build/toolchain/mac:clang_x64) |
16 'target_name': 'iossim', | 17 'target_name': 'iossim', |
17 'toolsets': ['host'], | 18 'toolsets': ['host'], |
18 'type': 'executable', | 19 'type': 'executable', |
19 'variables': { | 20 'variables': { |
20 'developer_dir': '<!(xcode-select -print-path)', | 21 'developer_dir': '<!(xcode-select -print-path)', |
21 'iphone_sim_path': '<(developer_dir)/../SharedFrameworks', | 22 'iphone_sim_path': '<(developer_dir)/../SharedFrameworks', |
22 }, | 23 }, |
23 'dependencies': [ | 24 'dependencies': [ |
24 '<(DEPTH)/third_party/class-dump/class-dump.gyp:class-dump#host', | 25 '<(DEPTH)/third_party/class-dump/class-dump.gyp:class-dump#host', |
25 ], | 26 ], |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 'iossim', | 133 'iossim', |
133 ], | 134 ], |
134 'message': 'Generating the iossim executable', | 135 'message': 'Generating the iossim executable', |
135 }, | 136 }, |
136 ], | 137 ], |
137 }, | 138 }, |
138 ], | 139 ], |
139 }], | 140 }], |
140 ], | 141 ], |
141 } | 142 } |
OLD | NEW |