Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(271)

Side by Side Diff: testing/iossim/BUILD.gn

Issue 1797253002: Add testing/iossim/BUILD.gn to build iossim as host for iOS build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@class-dump
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | testing/iossim/iossim.gyp » ('j') | testing/iossim/iossim.mm » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « no previous file | testing/iossim/iossim.gyp » ('j') | testing/iossim/iossim.mm » ('J')

Powered by Google App Engine
This is Rietveld 408576698