blob: bc01c58093b49dcdb21a5cababba3a281f941548 [file] [log] [blame]
Allen Bauer66dc0e142023-09-12 01:08:291# Copyright 2023 The Chromium Authors
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import("//build/buildflag_header.gni")
6import("//testing/test.gni")
7
8test("ui_unittests") {
9 sources = [ "run_all_unittests.cc" ]
10
11 deps = [
12 "//base/test:test_support",
13 "//testing/gtest",
Joseph Parkf1147f742024-10-18 17:39:1714 "//ui/base",
Zoraiz Naeembadbeda2025-03-03 22:15:0315 "//ui/color:unit_tests",
Joseph Parkf1147f742024-10-18 17:39:1716 "//ui/menus:unit_tests",
Allen Bauer66dc0e142023-09-12 01:08:2917 ]
18
19 if (!is_ios && !is_android && !is_castos) {
20 deps += [ "//ui/actions:unit_tests" ]
21 }
Sam Fortiner8f5c4692023-11-30 23:07:3922
Joseph Parkf1147f742024-10-18 17:39:1723 if (is_mac) {
24 deps += [ "//ui/base:ui_unittests_framework" ]
25 }
Allen Bauer66dc0e142023-09-12 01:08:2926}