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

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

Issue 2382733007: Add BlimpDocument, pull out functions in BlimpCompositor. (Closed)
Patch Set: Remove Webkit DEPS modification. 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",
10 "blimp_document.h",
11 "blimp_document_manager.cc",
12 "blimp_document_manager.h",
9 "render_widget_feature.cc", 13 "render_widget_feature.cc",
10 "render_widget_feature.h", 14 "render_widget_feature.h",
11 ] 15 ]
12 16
13 deps = [ 17 deps = [
14 "//blimp/common", 18 "//blimp/common",
15 "//cc/proto", 19 "//cc/proto",
16 "//net", 20 "//net",
17 ] 21 ]
18 22
19 public_deps = [ 23 public_deps = [
20 "//base", 24 "//base",
25 "//blimp/client/core/compositor",
21 "//blimp/net", 26 "//blimp/net",
22 ] 27 ]
23 } 28 }
24 29
25 source_set("test_support") { 30 source_set("test_support") {
26 testonly = true 31 testonly = true
27 32
28 sources = [ 33 sources = [
34 "mock_render_widget_feature.cc",
35 "mock_render_widget_feature.h",
29 "mock_render_widget_feature_delegate.cc", 36 "mock_render_widget_feature_delegate.cc",
30 "mock_render_widget_feature_delegate.h", 37 "mock_render_widget_feature_delegate.h",
31 ] 38 ]
32 39
33 public_deps = [ 40 public_deps = [
34 ":render_widget", 41 ":render_widget",
35 "//testing/gmock", 42 "//testing/gmock",
36 ] 43 ]
44
45 deps = [
46 "//cc/proto",
47 ]
37 } 48 }
38 49
39 source_set("unit_tests") { 50 source_set("unit_tests") {
40 visibility = [ "//blimp/client/core:unit_tests" ] 51 visibility = [ "//blimp/client/core:unit_tests" ]
41 52
42 testonly = true 53 testonly = true
43 54
44 sources = [ 55 sources = [
56 "blimp_document_manager_unittest.cc",
57 "blimp_document_unittest.cc",
45 "render_widget_feature_unittest.cc", 58 "render_widget_feature_unittest.cc",
46 ] 59 ]
47 60
48 deps = [ 61 deps = [
49 ":render_widget", 62 ":render_widget",
50 ":test_support", 63 ":test_support",
51 "//base", 64 "//base",
65 "//blimp/client/test/compositor",
52 "//blimp/common", 66 "//blimp/common",
53 "//blimp/net:test_support", 67 "//blimp/net:test_support",
54 "//cc/proto", 68 "//cc/proto",
69 "//cc/surfaces",
55 "//net", 70 "//net",
56 "//net:test_support", 71 "//net:test_support",
57 "//testing/gtest", 72 "//testing/gtest",
58 ] 73 ]
59 } 74 }
OLDNEW
« no previous file with comments | « blimp/client/core/feedback/blimp_feedback_data.cc ('k') | blimp/client/core/render_widget/blimp_document.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698