| OLD | NEW |
| (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 } |
| OLD | NEW |