Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2016 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 source_set("input") { | |
| 6 visibility = [ "//blimp/client/*" ] | |
| 7 | |
| 8 sources = [ | |
| 9 "blimp_input_handler_wrapper.cc", | |
| 10 "blimp_input_handler_wrapper.h", | |
| 11 "blimp_input_manager.cc", | |
| 12 "blimp_input_manager.h", | |
| 13 ] | |
| 14 | |
| 15 deps = [ | |
| 16 "//blimp/client/public:public_headers", | |
|
Khushal
2016/08/31 04:30:47
Do we need the public_headers?
David Trainor- moved to gerrit
2016/08/31 05:21:27
Done.
| |
| 17 "//blimp/net", | |
| 18 "//gpu/command_buffer/client", | |
|
Khushal
2016/08/31 04:30:47
And this?
David Trainor- moved to gerrit
2016/08/31 05:21:27
Done.
| |
| 19 "//third_party/libwebp", | |
|
Khushal
2016/08/31 04:30:47
And this?
David Trainor- moved to gerrit
2016/08/31 05:21:27
Done.
| |
| 20 "//ui/events:gesture_detection", | |
| 21 "//ui/events/blink", | |
| 22 "//ui/events/gestures/blink", | |
| 23 ] | |
| 24 | |
| 25 public_deps = [ | |
| 26 "//base", | |
| 27 "//third_party/WebKit/public:blink_headers", | |
| 28 "//ui/events", | |
| 29 ] | |
| 30 } | |
| OLD | NEW |