| OLD | NEW |
| 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 = [ |
| 7 "//blimp/client/app:session", # TODO(nyquist): Remove this. See crbug/65196
4. |
| 8 "//blimp/client/core/*", |
| 9 ] |
| 7 | 10 |
| 8 sources = [ | 11 sources = [ |
| 9 "render_widget_feature.cc", | 12 "render_widget_feature.cc", |
| 10 "render_widget_feature.h", | 13 "render_widget_feature.h", |
| 11 ] | 14 ] |
| 12 | 15 |
| 13 deps = [ | 16 deps = [ |
| 14 "//blimp/common", | 17 "//blimp/common", |
| 15 "//cc/proto", | 18 "//cc/proto", |
| 16 "//net", | 19 "//net", |
| 17 ] | 20 ] |
| 18 | 21 |
| 19 public_deps = [ | 22 public_deps = [ |
| 20 "//base", | 23 "//base", |
| 21 "//blimp/net", | 24 "//blimp/net", |
| 22 ] | 25 ] |
| 23 } | 26 } |
| 24 | 27 |
| 25 source_set("test_support") { | 28 source_set("test_support") { |
| 29 visibility = [ |
| 30 "//blimp/client/core/render_widget:unit_tests", |
| 31 "//blimp/client/core/compositor:unit_tests", |
| 32 "//blimp/engine:browser_tests", |
| 33 ] |
| 34 |
| 26 testonly = true | 35 testonly = true |
| 27 | 36 |
| 28 sources = [ | 37 sources = [ |
| 29 "mock_render_widget_feature_delegate.cc", | 38 "mock_render_widget_feature_delegate.cc", |
| 30 "mock_render_widget_feature_delegate.h", | 39 "mock_render_widget_feature_delegate.h", |
| 31 ] | 40 ] |
| 32 | 41 |
| 33 public_deps = [ | 42 public_deps = [ |
| 34 ":render_widget", | 43 ":render_widget", |
| 35 "//testing/gmock", | 44 "//testing/gmock", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 50 ":test_support", | 59 ":test_support", |
| 51 "//base", | 60 "//base", |
| 52 "//blimp/common", | 61 "//blimp/common", |
| 53 "//blimp/net:test_support", | 62 "//blimp/net:test_support", |
| 54 "//cc/proto", | 63 "//cc/proto", |
| 55 "//net", | 64 "//net", |
| 56 "//net:test_support", | 65 "//net:test_support", |
| 57 "//testing/gtest", | 66 "//testing/gtest", |
| 58 ] | 67 ] |
| 59 } | 68 } |
| OLD | NEW |