| 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 = [ | 6 visibility = [ "//blimp/client/core/*" ] |
| 7 "//blimp/client/core/*", | |
| 8 "//blimp/engine:browser_tests", | |
| 9 ] | |
| 10 | 7 |
| 11 sources = [ | 8 sources = [ |
| 12 "blimp_document.cc", | 9 "blimp_document.cc", |
| 13 "blimp_document.h", | 10 "blimp_document.h", |
| 14 "blimp_document_manager.cc", | 11 "blimp_document_manager.cc", |
| 15 "blimp_document_manager.h", | 12 "blimp_document_manager.h", |
| 16 "render_widget_feature.cc", | 13 "render_widget_feature.cc", |
| 17 "render_widget_feature.h", | 14 "render_widget_feature.h", |
| 18 ] | 15 ] |
| 19 | 16 |
| 20 deps = [ | 17 deps = [ |
| 21 "//blimp/common", | 18 "//blimp/common", |
| 22 "//cc/proto", | 19 "//cc/proto", |
| 23 "//net", | 20 "//net", |
| 24 ] | 21 ] |
| 25 | 22 |
| 26 public_deps = [ | 23 public_deps = [ |
| 27 "//base", | 24 "//base", |
| 28 "//blimp/client/core/compositor", | 25 "//blimp/client/core/compositor", |
| 29 "//blimp/client/core/input", | 26 "//blimp/client/core/input", |
| 30 "//blimp/client/core/switches", | 27 "//blimp/client/core/switches", |
| 31 "//blimp/net", | 28 "//blimp/net", |
| 32 ] | 29 ] |
| 33 } | 30 } |
| 34 | 31 |
| 35 source_set("test_support") { | 32 source_set("test_support") { |
| 36 visibility = [ | 33 visibility = [ |
| 37 "//blimp/client/core/render_widget:unit_tests", | 34 "//blimp/client/core/render_widget:unit_tests", |
| 38 "//blimp/client/core/compositor:unit_tests", | 35 "//blimp/client/core/compositor:unit_tests", |
| 39 "//blimp/engine:browser_tests", # # TODO(nyquist): Remove this. See crbug/6
53789. | |
| 40 ] | 36 ] |
| 41 | 37 |
| 42 testonly = true | 38 testonly = true |
| 43 | 39 |
| 44 sources = [ | 40 sources = [ |
| 45 "mock_render_widget_feature.cc", | 41 "mock_render_widget_feature.cc", |
| 46 "mock_render_widget_feature.h", | 42 "mock_render_widget_feature.h", |
| 47 "mock_render_widget_feature_delegate.cc", | 43 "mock_render_widget_feature_delegate.cc", |
| 48 "mock_render_widget_feature_delegate.h", | 44 "mock_render_widget_feature_delegate.h", |
| 49 ] | 45 ] |
| (...skipping 26 matching lines...) Expand all Loading... |
| 76 "//blimp/client/test/compositor", | 72 "//blimp/client/test/compositor", |
| 77 "//blimp/common", | 73 "//blimp/common", |
| 78 "//blimp/net:test_support", | 74 "//blimp/net:test_support", |
| 79 "//cc/proto", | 75 "//cc/proto", |
| 80 "//cc/surfaces", | 76 "//cc/surfaces", |
| 81 "//net", | 77 "//net", |
| 82 "//net:test_support", | 78 "//net:test_support", |
| 83 "//testing/gtest", | 79 "//testing/gtest", |
| 84 ] | 80 ] |
| 85 } | 81 } |
| OLD | NEW |