blob: 55c0a24db95e6ddcc949e68f02adcd5c9a7b64cf [file] [log] [blame]
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/config/ui.gni")
import("//testing/test.gni")
assert(is_chromeos)
component("chromeos") {
output_name = "ui_chromeos"
sources = [
"devicetype_utils.cc",
"devicetype_utils.h",
"user_activity_power_manager_notifier.cc",
"user_activity_power_manager_notifier.h",
]
defines = [ "UI_CHROMEOS_IMPLEMENTATION" ]
deps = [
"//base",
"//base/third_party/dynamic_annotations",
"//chromeos/constants",
"//chromeos/dbus/power",
"//chromeos/dbus/power:power_manager_proto",
"//components/device_event_log",
"//mojo/public/cpp/bindings",
"//services/device/public/mojom",
"//services/service_manager/public/cpp",
"//ui/base",
"//ui/chromeos/strings",
"//ui/events",
"//ui/events:gesture_detection",
"//ui/events/devices:devices",
]
}
test("ui_chromeos_unittests") {
use_xvfb = use_xvfb_in_this_config
sources = [ "run_all_unittests.cc" ]
deps = [
":chromeos",
"//base/test:test_support",
"//chromeos:chromeos_buildflags",
"//mojo/core/embedder",
"//skia",
"//testing/gtest",
"//ui/aura:test_support",
"//ui/compositor",
"//ui/events:test_support",
"//ui/gl:test_support",
"//ui/message_center",
"//ui/views",
"//ui/views:test_support",
]
data = [ "$root_out_dir/locales/en-US.pak" ]
data_deps = [ "//ui/resources:ui_test_pak_data" ]
}