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

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

Issue 2382733007: Add BlimpDocument, pull out functions in BlimpCompositor. (Closed)
Patch Set: Fix linux client. 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 = [
29 "mock_render_widget_feature_delegate.cc", 34 "mock_render_widget_feature_delegate.cc",
30 "mock_render_widget_feature_delegate.h", 35 "mock_render_widget_feature_delegate.h",
31 ] 36 ]
32 37
33 public_deps = [ 38 public_deps = [
34 ":render_widget", 39 ":render_widget",
35 "//testing/gmock", 40 "//testing/gmock",
36 ] 41 ]
37 } 42 }
38 43
39 source_set("unit_tests") { 44 source_set("unit_tests") {
40 visibility = [ "//blimp/client/core:unit_tests" ] 45 visibility = [ "//blimp/client/core:unit_tests" ]
41 46
42 testonly = true 47 testonly = true
43 48
44 sources = [ 49 sources = [
50 "blimp_document_manager_unittest.cc",
51 "blimp_document_unittest.cc",
45 "render_widget_feature_unittest.cc", 52 "render_widget_feature_unittest.cc",
46 ] 53 ]
47 54
48 deps = [ 55 deps = [
49 ":render_widget", 56 ":render_widget",
50 ":test_support", 57 ":test_support",
51 "//base", 58 "//base",
59 "//blimp/client/test/compositor",
60 "//blimp/client/test/render_widget",
52 "//blimp/common", 61 "//blimp/common",
53 "//blimp/net:test_support", 62 "//blimp/net:test_support",
54 "//cc/proto", 63 "//cc/proto",
64 "//cc/surfaces",
55 "//net", 65 "//net",
56 "//net:test_support", 66 "//net:test_support",
67 "//skia",
57 "//testing/gtest", 68 "//testing/gtest",
58 ] 69 ]
59 } 70 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698