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

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

Issue 2400923002: Move BlimpInputManager to BlimpDocument from BlimpCompositor. (Closed)
Patch Set: Removed unused mock class. Created 4 years, 2 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
1 # Copyright 2016 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 source_set("render_widget") { 5 source_set("render_widget") {
6 visibility = [ "//blimp/client/*" ] 6 visibility = [ "//blimp/client/*" ]
7 7
8 sources = [ 8 sources = [
9 "blimp_document.cc", 9 "blimp_document.cc",
10 "blimp_document.h", 10 "blimp_document.h",
11 "blimp_document_manager.cc", 11 "blimp_document_manager.cc",
12 "blimp_document_manager.h", 12 "blimp_document_manager.h",
13 "render_widget_feature.cc", 13 "render_widget_feature.cc",
14 "render_widget_feature.h", 14 "render_widget_feature.h",
15 ] 15 ]
16 16
17 deps = [ 17 deps = [
18 "//blimp/common", 18 "//blimp/common",
19 "//cc/proto", 19 "//cc/proto",
20 "//net", 20 "//net",
21 ] 21 ]
22 22
23 public_deps = [ 23 public_deps = [
24 "//base", 24 "//base",
25 "//blimp/client/core/compositor", 25 "//blimp/client/core/compositor",
26 "//blimp/client/core/input",
26 "//blimp/net", 27 "//blimp/net",
27 ] 28 ]
28 } 29 }
29 30
30 source_set("test_support") { 31 source_set("test_support") {
31 testonly = true 32 testonly = true
32 33
33 sources = [ 34 sources = [
34 "mock_render_widget_feature.cc", 35 "mock_render_widget_feature.cc",
35 "mock_render_widget_feature.h", 36 "mock_render_widget_feature.h",
(...skipping 29 matching lines...) Expand all
65 "//blimp/client/test/compositor", 66 "//blimp/client/test/compositor",
66 "//blimp/common", 67 "//blimp/common",
67 "//blimp/net:test_support", 68 "//blimp/net:test_support",
68 "//cc/proto", 69 "//cc/proto",
69 "//cc/surfaces", 70 "//cc/surfaces",
70 "//net", 71 "//net",
71 "//net:test_support", 72 "//net:test_support",
72 "//testing/gtest", 73 "//testing/gtest",
73 ] 74 ]
74 } 75 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698