mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
43 lines
858 B
Plaintext
43 lines
858 B
Plaintext
# Copyright 2018 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.
|
|
|
|
source_set("fast_ink") {
|
|
sources = [
|
|
"fast_ink_pointer_controller.cc",
|
|
"fast_ink_pointer_controller.h",
|
|
"fast_ink_points.cc",
|
|
"fast_ink_points.h",
|
|
"fast_ink_view.cc",
|
|
"fast_ink_view.h",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//cc",
|
|
"//components/viz/service",
|
|
"//gpu",
|
|
"//gpu/command_buffer/client:gles2_interface",
|
|
"//services/ui/public/interfaces",
|
|
"//skia",
|
|
"//ui/aura",
|
|
"//ui/gfx",
|
|
"//ui/gfx/geometry",
|
|
"//ui/gl",
|
|
"//ui/views:views",
|
|
]
|
|
}
|
|
|
|
source_set("unit_tests") {
|
|
testonly = true
|
|
sources = [
|
|
"fast_ink_points_unittest.cc",
|
|
]
|
|
|
|
deps = [
|
|
":fast_ink",
|
|
"//testing/gtest",
|
|
"//ui/events:test_support",
|
|
]
|
|
}
|