blob: dd1103bd2840ad308ae804611588bbcd6fa77996 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Copyright 2017 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/config/sysroot.gni")
assert(is_mac)
config("gcapi_config") {
cflags = [
"-isysroot",
sysroot,
"-mmacosx-version-min=10.5",
]
ldflags = [
"-isysroot",
sysroot,
"-mmacosx-version-min=10.5",
]
}
static_library("gcapi_lib") {
complete_static_lib = true
sources = [
"gcapi.h",
"gcapi.mm",
]
libs = [ "Cocoa.framework" ]
# Don't use runtime_library, to be able to pick a custom mmacosx-version-min.
configs -= [ "//build/config/compiler:runtime_library" ]
configs += [ ":gcapi_config" ]
}
executable("gcapi_example") {
sources = [
"gcapi_example_client.mm",
]
deps = [
":gcapi_lib",
]
# Don't use runtime_library, to be able to pick a custom mmacosx-version-min.
configs -= [ "//build/config/compiler:runtime_library" ]
configs += [ ":gcapi_config" ]
}
|