# Copyright 2014 The Chromium Authors
# 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",
    "shill_error.cc",
    "shill_error.h",
    "user_activity_power_manager_notifier.cc",
    "user_activity_power_manager_notifier.h",
  ]
  defines = [ "UI_CHROMEOS_IMPLEMENTATION" ]
  deps = [
    "//ash/constants",
    "//base",
    "//build:chromeos_buildflags",
    "//chromeos/ash/components/network",
    "//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",
  ]
}

test("ui_chromeos_unittests") {
  use_xvfb = use_xvfb_in_this_config

  sources = [ "run_all_unittests.cc" ]
  deps = [
    ":chromeos",
    "//base/test:test_support",
    "//build: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" ]
}
