Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Side by Side Diff: blimp/client/core/input/BUILD.gn

Issue 2292723003: Move remaining Blimp feature code to core. (Closed)
Patch Set: Fixed gn check failure Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698