OLD | NEW |
(Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import("//build/config/mac/mac_sdk.gni") |
| 6 import("//third_party/class-dump/class-dump.gni") |
| 7 |
| 8 executable("iossim") { |
| 9 sources = [ |
| 10 "iossim.mm", |
| 11 ] |
| 12 libs = [ "Foundation.framework" ] |
| 13 deps = [ |
| 14 ":generate_dvt_core_simulator", |
| 15 ":generate_dvt_foundation_header", |
| 16 ":generate_dvt_iphone_sim_header", |
| 17 ] |
| 18 include_dirs = [ "$root_gen_dir/iossim" ] |
| 19 configs += [ "//build/config/mac:macosx_version_min_10_9" ] |
| 20 } |
| 21 |
| 22 class_dump("generate_dvt_core_simulator") { |
| 23 framework_name = "CoreSimulator" |
| 24 framework_path = "$mac_sdk_path/../../../../../Library/PrivateFrameworks" |
| 25 class_dump_filter = "Sim" |
| 26 } |
| 27 |
| 28 class_dump("generate_dvt_foundation_header") { |
| 29 framework_name = "DVTFoundation" |
| 30 framework_path = "$mac_sdk_path/../../../../../../SharedFrameworks" |
| 31 class_dump_filter = "DVTStackBacktrace|DVTInvalidation|DVTMixIn" |
| 32 } |
| 33 |
| 34 class_dump("generate_dvt_iphone_sim_header") { |
| 35 topological_sort = true |
| 36 framework_name = "DVTiPhoneSimulatorRemoteClient" |
| 37 framework_path = "$mac_sdk_path/../../../../../../SharedFrameworks" |
| 38 class_dump_filter = "iPhoneSimulator" |
| 39 } |
OLD | NEW |