summaryrefslogtreecommitdiff
path: root/tests/test_cases/cflags/public/TARGETS
blob: 79aadb3c7eba379aa1568201b7069512d835dd23 (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
49
{ "half":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["half"]
  , "hdrs": ["half.hpp"]
  , "srcs": ["half.cpp"]
  , "cflags": ["-DHALF_PRECISION_DOUBLE"]
  , "stage": ["half"]
  }
, "half3":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["half3"]
  , "hdrs": ["half3.hpp"]
  , "srcs": ["half3.cpp"]
  , "deps": ["half"]
  , "stage": ["half3"]
  }
, "half3f":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["half3f"]
  , "hdrs": ["half3f.hpp"]
  , "srcs": ["half3f.cpp"]
  , "private-deps": ["half3"]
  , "stage": ["half3f"]
  }
, "main_use_half3":
  { "type": ["@", "rules", "CC", "binary"]
  , "name": ["main_use_half3"]
  , "srcs": ["main_use_half3.cpp"]
  , "private-deps": ["half3"]
  }
, "test_use_half3":
  { "type": ["@", "rules", "CC/test", "test"]
  , "name": ["test_use_half3"]
  , "srcs": ["test_use_half3.cpp"]
  , "private-deps": ["half3"]
  }
, "main_use_half3f":
  { "type": ["@", "rules", "CC", "binary"]
  , "name": ["main_use_half3f"]
  , "srcs": ["main_use_half3f.cpp"]
  , "private-deps": ["half3f"]
  }
, "test_use_half3f":
  { "type": ["@", "rules", "CC/test", "test"]
  , "name": ["test_use_half3f"]
  , "srcs": ["test_use_half3f.cpp"]
  , "private-deps": ["half3f"]
  }
}