forked from electronicarts/EASTL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUCK
84 lines (81 loc) · 1.57 KB
/
BUCK
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
cxx_library(
name = 'eastl',
header_namespace = 'EASTL',
exported_headers = subdir_glob([
('include/EASTL', '**/*.h'),
]),
srcs = glob([
'source/**/*.cpp',
]),
compiler_flags = [
'-DEASTL_OPENSOURCE=1',
'-DEASTL_THREAD_SUPPORT_AVAILABLE=0',
],
licenses = [
'LICENSE',
],
visibility = [
'PUBLIC',
],
deps = [
'//test/packages/EABase:eabase',
],
)
cxx_library(
name = 'test',
header_namespace = '',
exported_headers = subdir_glob([
('test/source', '**/*.h'),
]),
srcs = glob([
'test/source/**/*.cpp',
], excludes = [
'test/source/main.cpp',
]),
compiler_flags = [
'-DEASTL_OPENSOURCE=1',
'-DEASTL_THREAD_SUPPORT_AVAILABLE=0',
],
deps = [
'//:eastl',
'//test/packages/EAAssert:eaassert',
'//test/packages/EABase:eabase',
'//test/packages/EAMain:eamain',
'//test/packages/EAStdC:eastdc',
'//test/packages/EATest:eatest',
'//test/packages/EAThread:eathread',
],
)
cxx_binary(
name = 'test-runner',
srcs = glob([
'test/source/main.cpp',
]),
compiler_flags = [
'-DEASTL_OPENSOURCE=1',
'-DEASTL_THREAD_SUPPORT_AVAILABLE=0',
],
deps = [
'//:test',
],
)
cxx_binary(
name = 'benchmark',
header_namespace = '',
headers = subdir_glob([
('benchmark/source', '**/*.h'),
]),
srcs = glob([
'benchmark/source/**/*.cpp',
]),
compiler_flags = [
'-DEASTL_OPENSOURCE=1',
'-DEASTL_THREAD_SUPPORT_AVAILABLE=0',
],
deps = [
'//:eastl',
'//:test',
'//test/packages/EAStdC:eastdc',
'//test/packages/EATest:eatest',
],
)