BUILD.gn 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361
  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. # This BUILD.gn file groups together filter files for particular test suites -
  5. # for example filters applicable to content_browsertests are exposed as
  6. # the //testing/buildbot/filters:content_browsertests target.
  7. # Note that all filter files (for a given test suite) are unconditionally listed
  8. # together, even if some filter files are applicable only to some platforms.
  9. # This should help avoid unpleasant surprises when a bot config is switched in
  10. # testing/buildbot/chromium.fyi.json without corresponding dependency changes
  11. # here - see https://crbug.com/661447.
  12. # To refresh, a command similar to the one below might be run in bash:
  13. # $ for i in $(ls -1 testing/buildbot/filters/*.browser_tests.*filter ); \
  14. # do echo " \"//$i\","; done | sort
  15. source_set("cc_unittests_filters") {
  16. testonly = true
  17. data = [
  18. "//testing/buildbot/filters/android.emulator.cc_unittests.filter",
  19. "//testing/buildbot/filters/android.emulator_11_12.cc_unittests.filter",
  20. "//testing/buildbot/filters/fuchsia.debug.cc_unittests.filter",
  21. "//testing/buildbot/filters/gpu.skiarenderer_dawn_cc_unittests.filter",
  22. ]
  23. }
  24. source_set("base_unittests_filters") {
  25. testonly = true
  26. data = [
  27. "//testing/buildbot/filters/android.emulator.base_unittests.filter",
  28. "//testing/buildbot/filters/fuchsia.lsan.base_unittests.filter",
  29. ]
  30. }
  31. source_set("blink_platform_unittests") {
  32. testonly = true
  33. data = [ "//testing/buildbot/filters/android.emulator_n.blink_platform_unittests.filter" ]
  34. }
  35. source_set("blink_unittests_filters") {
  36. testonly = true
  37. data =
  38. [ "//testing/buildbot/filters/android.emulator.blink_unittests.filter" ]
  39. }
  40. source_set("blink_web_tests_filter") {
  41. testonly = true
  42. data = [
  43. "//testing/buildbot/filters/gpu.skiarenderer_vulkan_blink_web_tests.filter",
  44. ]
  45. }
  46. source_set("browser_tests_filters") {
  47. testonly = true
  48. data = [
  49. "//testing/buildbot/filters/chromeos.msan.browser_tests.oobe_negative.filter",
  50. "//testing/buildbot/filters/chromeos.msan.browser_tests.oobe_positive.filter",
  51. "//testing/buildbot/filters/code_coverage.browser_tests.filter",
  52. "//testing/buildbot/filters/fuchsia.browser_tests.filter",
  53. "//testing/buildbot/filters/linux-chromeos.browser_tests.require_lacros.filter",
  54. "//testing/buildbot/filters/linux-lacros.browser_tests.filter",
  55. "//testing/buildbot/filters/mac.mac11-arm64-rel.browser_tests.filter",
  56. "//testing/buildbot/filters/mac.mac12-arm64-rel.browser_tests.filter",
  57. "//testing/buildbot/filters/mac.mac-rel.browser_tests.filter",
  58. "//testing/buildbot/filters/ozone-linux.wayland_browser_tests.filter",
  59. "//testing/buildbot/filters/pixel_tests.filter",
  60. "//testing/buildbot/filters/webrtc_functional.browser_tests.filter",
  61. "//testing/buildbot/filters/win_backuprefptr_fyi.browser_tests.filter",
  62. ]
  63. }
  64. source_set("chrome_junit_tests_filters") {
  65. testonly = true
  66. data = []
  67. }
  68. source_set("chrome_public_test_apk_filters") {
  69. testonly = true
  70. data = [
  71. "//testing/buildbot/filters/android.pie_arm64_rel.chrome_public_test_apk.filter",
  72. "//testing/buildbot/filters/android.emulator_11.chrome_public_test_apk.filter",
  73. "//testing/buildbot/filters/android.emulator_12.chrome_public_test_apk.filter",
  74. "//testing/buildbot/filters/android.emulator_m.chrome_public_test_apk.filter",
  75. "//testing/buildbot/filters/android.emulator_n.chrome_public_test_apk.filter",
  76. "//testing/buildbot/filters/android.emulator_p.chrome_public_test_apk.filter",
  77. ]
  78. }
  79. source_set("chrome_public_unit_test_apk_filters") {
  80. testonly = true
  81. data = [ "//testing/buildbot/filters/android.emulator_12.chrome_public_unit_test_apk.filter" ]
  82. }
  83. source_set("chromeos_filters") {
  84. data = [
  85. "//testing/buildbot/filters/chromeos.base_unittests.filter",
  86. "//testing/buildbot/filters/chromeos.browser_tests.filter",
  87. "//testing/buildbot/filters/chromeos.amd64-generic.gl_tests_validating.filter",
  88. "//testing/buildbot/filters/chromeos.kevin.gl_tests_validating.filter",
  89. "//testing/buildbot/filters/chromeos.gl_unittests.filter",
  90. "//testing/buildbot/filters/chromeos.media_unittests.filter",
  91. "//testing/buildbot/filters/chromeos.services_unittests.filter",
  92. "//testing/buildbot/filters/chromeos.unit_tests.filter",
  93. ]
  94. }
  95. source_set("components_unittests_filters") {
  96. testonly = true
  97. data =
  98. [ "//testing/buildbot/filters/linux-lacros.components_unittests.filter" ]
  99. }
  100. source_set("content_browsertests_filters") {
  101. testonly = true
  102. data = [
  103. "//testing/buildbot/filters/android.asan.content_browsertests.filter",
  104. "//testing/buildbot/filters/android.emulator_12.content_browsertests.filter",
  105. "//testing/buildbot/filters/android.emulator_12.oop_network_service_content_browsertests.filter",
  106. "//testing/buildbot/filters/android.emulator_m.content_browsertests.filter",
  107. "//testing/buildbot/filters/android.emulator_n.content_browsertests.filter",
  108. "//testing/buildbot/filters/android.emulator_p.content_browsertests.filter",
  109. "//testing/buildbot/filters/android.marshmallow_tablet_tester.content_browsertests.filter",
  110. "//testing/buildbot/filters/cast-linux.content_browsertests.filter",
  111. "//testing/buildbot/filters/chromium.webrtc.fyi.android.tests.dbg.content_browsertests.filter",
  112. "//testing/buildbot/filters/linux-lacros.content_browsertests.filter",
  113. "//testing/buildbot/filters/site_isolation_android.content_browsertests.filter",
  114. "//testing/buildbot/filters/vulkan.content_browsertests.filter",
  115. ]
  116. }
  117. source_set("content_junit_tests_filters") {
  118. testonly = true
  119. data = []
  120. }
  121. source_set("content_shell_test_apk_filters") {
  122. testonly = true
  123. data = [
  124. "//testing/buildbot/filters/android.emulator_11.content_shell_test_apk.filter",
  125. "//testing/buildbot/filters/android.emulator_12.content_shell_test_apk.filter",
  126. "//testing/buildbot/filters/android.emulator_m.content_shell_test_apk.filter",
  127. "//testing/buildbot/filters/android.emulator_n.content_shell_test_apk.filter",
  128. ]
  129. }
  130. source_set("content_unittests_filters") {
  131. testonly = true
  132. data = [
  133. "//testing/buildbot/filters/fuchsia.lsan.content_unittests.filter",
  134. "//testing/buildbot/filters/webrtc.content_unittests.filter",
  135. ]
  136. }
  137. source_set("crashpad_tests_filters") {
  138. testonly = true
  139. data = [
  140. "//testing/buildbot/filters/android.emulator_11.crashpad_tests.filter",
  141. "//testing/buildbot/filters/android.emulator_12.crashpad_tests.filter",
  142. ]
  143. }
  144. source_set("device_unittests_filters") {
  145. testonly = true
  146. data = [
  147. "//testing/buildbot/filters/android.emulator_12.device_unittests.filter",
  148. ]
  149. }
  150. source_set("sync_integration_tests_filters") {
  151. testonly = true
  152. data = [
  153. "//testing/buildbot/filters/e2e.sync_integration_tests.filter",
  154. "//testing/buildbot/filters/linux-lacros.sync_integration_tests.filter",
  155. ]
  156. }
  157. source_set("compositor_unittests_filters") {
  158. testonly = true
  159. data =
  160. [ "//testing/buildbot/filters/fuchsia.debug.compositor_unittests.filter" ]
  161. }
  162. source_set("snapshot_unittests_filters") {
  163. testonly = true
  164. data =
  165. [ "//testing/buildbot/filters/fuchsia.debug.snapshot_unittests.filter" ]
  166. }
  167. source_set("views_unittests_filters") {
  168. testonly = true
  169. data = [
  170. "//testing/buildbot/filters/fuchsia.debug.views_unittests.filter",
  171. "//testing/buildbot/filters/fuchsia.views_unittests.filter",
  172. ]
  173. }
  174. source_set("services_unittests_filters") {
  175. testonly = true
  176. data = [ "//testing/buildbot/filters/fuchsia.services_unittests.filter" ]
  177. }
  178. source_set("ui_base_unittests_filters") {
  179. testonly = true
  180. data = [ "//testing/buildbot/filters/fuchsia.ui_base_unittests.filter" ]
  181. }
  182. source_set("views_examples_unittests_filters") {
  183. testonly = true
  184. data =
  185. [ "//testing/buildbot/filters/fuchsia.views_examples_unittests.filter" ]
  186. }
  187. source_set("extensions_unittests_filters") {
  188. testonly = true
  189. data =
  190. [ "//testing/buildbot/filters/fuchsia.lsan.extensions_unittests.filter" ]
  191. }
  192. source_set("gin_unittests_filters") {
  193. testonly = true
  194. data = [ "//testing/buildbot/filters/fuchsia.lsan.gin_unittests.filter" ]
  195. }
  196. source_set("skia_unittests_filters") {
  197. testonly = true
  198. data = []
  199. }
  200. source_set("gl_tests_filters") {
  201. testonly = true
  202. data = [
  203. "//testing/buildbot/filters/android.emulator.gl_tests.filter",
  204. "//testing/buildbot/filters/android.emulator_11.gl_tests.filter",
  205. "//testing/buildbot/filters/android.emulator_12.gl_tests.filter",
  206. "//testing/buildbot/filters/android.emulator_n.gl_tests.filter",
  207. "//testing/buildbot/filters/android.pie_arm64_rel.gl_tests.filter",
  208. ]
  209. }
  210. source_set("gl_unittests_filters") {
  211. testonly = true
  212. data =
  213. [ "//testing/buildbot/filters/android.emulator_12.gl_unittests.filter" ]
  214. }
  215. source_set("interactive_ui_tests_filters") {
  216. testonly = true
  217. data = [
  218. "//testing/buildbot/filters/linux-lacros.interactive_ui_tests.filter",
  219. "//testing/buildbot/filters/linux-lacros.interactive_ui_tests.skew.filter",
  220. "//testing/buildbot/filters/ozone-linux.interactive_ui_tests_wayland.filter",
  221. "//testing/buildbot/filters/pixel_tests.filter",
  222. ]
  223. }
  224. source_set("lacros_chrome_browsertests_filters") {
  225. data = [
  226. "//testing/buildbot/filters/linux-lacros.lacros_chrome_browsertests.skew.filter",
  227. "//testing/buildbot/filters/linux-lacros.lacros_chrome_browsertests.filter",
  228. ]
  229. }
  230. source_set("linux_ozone_views_unittests_filters") {
  231. data = [
  232. "//testing/buildbot/filters/ozone-linux.wayland_views_unittests.filter",
  233. ]
  234. }
  235. source_set("linux_trusty_rel_browser_tests_filters") {
  236. data = [ "//testing/buildbot/filters/linux_trusty_rel.browser_tests.filter" ]
  237. }
  238. source_set("media_unittests_filters") {
  239. data = [
  240. "//testing/buildbot/filters/android.emulator_11_12.media_unittests.filter",
  241. "//testing/buildbot/filters/android.emulator_m.media_unittests.filter",
  242. "//testing/buildbot/filters/fuchsia.debug.media_unittests.filter",
  243. ]
  244. }
  245. source_set("net_unittests_filters") {
  246. data = [
  247. "//testing/buildbot/filters/android.emulator.net_unittests.filter",
  248. "//testing/buildbot/filters/android.emulator_10.net_unittests.filter",
  249. "//testing/buildbot/filters/android.emulator_11.net_unittests.filter",
  250. "//testing/buildbot/filters/android.emulator_l.net_unittests.filter",
  251. "//testing/buildbot/filters/android.emulator_k.net_unittests.filter",
  252. "//testing/buildbot/filters/fuchsia.net_unittests.filter",
  253. ]
  254. }
  255. source_set("ozone_unittests_filters") {
  256. data = [
  257. "//testing/buildbot/filters/chromeos.ozone_unittests.filter",
  258. "//testing/buildbot/filters/lacros-arm.ozone_unittests.filter",
  259. ]
  260. }
  261. source_set("sandbox_linux_unittests_filters") {
  262. data = [
  263. "//testing/buildbot/filters/android.emulator.sandbox_linux_unittests.filter",
  264. "//testing/buildbot/filters/android.emulator_12.sandbox_linux_unittests.filter",
  265. ]
  266. }
  267. source_set("unit_tests_filters") {
  268. testonly = true
  269. data = [
  270. "//testing/buildbot/filters/android.asan.unit_tests.filter",
  271. "//testing/buildbot/filters/bfcache.unit_tests.filter",
  272. "//testing/buildbot/filters/linux-lacros.unit_tests.filter",
  273. "//testing/buildbot/filters/ozone-linux.unit_tests_wayland.filter",
  274. ]
  275. }
  276. source_set("viz_unittests_filters") {
  277. testonly = true
  278. data = [
  279. "//testing/buildbot/filters/fuchsia.debug.viz_unittests.filter",
  280. "//testing/buildbot/filters/fuchsia.viz_unittests.filter",
  281. "//testing/buildbot/filters/lacros-arm.viz_unittests.filter",
  282. ]
  283. }
  284. source_set("webview_instrumentation_test_apk_filters") {
  285. testonly = true
  286. data = [ "//testing/buildbot/filters/android.emulator.webview_instrumentation_test_apk.filter" ]
  287. }