Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 component("hittest") { | |
| 6 defines = [ "HITTEST_IMPLEMENTATION" ] | |
| 7 | |
| 8 sources = [ | |
| 9 "hittest.cc", | |
| 10 "hittest.h", | |
| 11 ] | |
| 12 | |
| 13 deps = [ | |
| 14 "//base", | |
| 15 "//cc", | |
| 16 "//cc/ipc:interfaces", | |
| 17 "//cc/surfaces", | |
| 18 "//components/viz/display_compositor", | |
| 19 "//components/viz/hittest/public/interfaces", | |
| 20 "//gpu/ipc:command_buffer", | |
| 21 ] | |
| 22 } | |
| OLD | NEW |