naiveproxy/services/ui/common/BUILD.gn
2018-08-11 05:35:24 +00:00

46 lines
883 B
Plaintext

# Copyright 2015 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")
# TODO(sky): move everything but switches to services/ui/public/cpp
source_set("mus_common") {
sources = [
"accelerator_util.cc",
"accelerator_util.h",
"image_cursors_set.cc",
"image_cursors_set.h",
"switches.cc",
"switches.h",
"types.h",
"util.h",
]
deps = [
"//ui/events",
"//ui/gfx/ipc/geometry",
]
public_deps = [
"//services/ui/public/interfaces",
"//ui/base",
]
}
source_set("task_runner_test_base") {
testonly = true
sources = [
"task_runner_test_base.cc",
"task_runner_test_base.h",
]
deps = [
"//base",
"//base/test:test_support",
"//testing/gtest",
]
}