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

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

Issue 2292723003: Move remaining Blimp feature code to core. (Closed)
Patch Set: Fix build break 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("render_widget") {
6 visibility = [ "//blimp/client/*" ]
7
8 sources = [
9 "render_widget_feature.cc",
10 "render_widget_feature.h",
11 ]
12
13 deps = [
14 "//blimp/common",
15 "//cc/proto",
16 "//net",
17 ]
18
19 public_deps = [
20 "//base",
21 "//blimp/net",
22 ]
23 }
24
25 source_set("test_support") {
26 testonly = true
27
28 sources = [
29 "mock_render_widget_feature_delegate.cc",
30 "mock_render_widget_feature_delegate.h",
31 ]
32
33 public_deps = [
34 ":render_widget",
35 "//testing/gmock",
36 ]
37 }
38
39 source_set("unit_tests") {
40 visibility = [ "//blimp/client/core:unit_tests" ]
41
42 testonly = true
43
44 sources = [
45 "render_widget_feature_unittest.cc",
46 ]
47
48 deps = [
49 ":render_widget",
50 ":test_support",
51 "//base",
52 "//blimp/common",
53 "//blimp/net:test_support",
54 "//cc/proto",
55 "//net",
56 "//net:test_support",
57 "//testing/gtest",
58 ]
59 }
OLDNEW
« no previous file with comments | « blimp/client/core/input/blimp_input_manager.cc ('k') | blimp/client/core/render_widget/mock_render_widget_feature_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698