Dan Willemsen | 6799144 | 2018-11-19 16:04:14 -0800 | [diff] [blame] | 1 | cc_binary { |
2 | name: "stressapptest", | ||||
3 | |||||
4 | srcs: [ | ||||
5 | "src/main.cc", | ||||
6 | "src/adler32memcpy.cc", | ||||
7 | "src/disk_blocks.cc", | ||||
8 | "src/error_diag.cc", | ||||
9 | "src/finelock_queue.cc", | ||||
10 | "src/logger.cc", | ||||
11 | "src/os.cc", | ||||
12 | "src/os_factory.cc", | ||||
13 | "src/pattern.cc", | ||||
14 | "src/queue.cc", | ||||
15 | "src/sat.cc", | ||||
16 | "src/sat_factory.cc", | ||||
17 | "src/worker.cc", | ||||
18 | ], | ||||
19 | |||||
20 | arch: { | ||||
21 | mips: { | ||||
22 | enabled: false, | ||||
23 | }, | ||||
24 | x86: { | ||||
25 | enabled: false, | ||||
26 | }, | ||||
27 | x86_64: { | ||||
28 | enabled: false, | ||||
29 | }, | ||||
30 | }, | ||||
31 | |||||
32 | cflags: [ | ||||
33 | "-DHAVE_CONFIG_H", | ||||
34 | "-DANDROID", | ||||
35 | "-DNDEBUG", | ||||
36 | "-UDEBUG", | ||||
37 | "-DCHECKOPTS", | ||||
38 | |||||
39 | "-Wall", | ||||
40 | "-Werror", | ||||
41 | "-Wno-unused-parameter", | ||||
42 | "-Wno-#warnings", | ||||
43 | "-Wno-implicit-fallthrough", | ||||
44 | ], | ||||
45 | } |