| 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 = [ |
| 7 "//blimp/client/app:session", # TODO(nyquist): Remove this. See crbug/65196
4. | |
| 8 "//blimp/client/core/*", | 7 "//blimp/client/core/*", |
| 8 "//blimp/engine:browser_tests", |
| 9 ] | 9 ] |
| 10 | 10 |
| 11 sources = [ | 11 sources = [ |
| 12 "blimp_document.cc", | 12 "blimp_document.cc", |
| 13 "blimp_document.h", | 13 "blimp_document.h", |
| 14 "blimp_document_manager.cc", | 14 "blimp_document_manager.cc", |
| 15 "blimp_document_manager.h", | 15 "blimp_document_manager.h", |
| 16 "render_widget_feature.cc", | 16 "render_widget_feature.cc", |
| 17 "render_widget_feature.h", | 17 "render_widget_feature.h", |
| 18 ] | 18 ] |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 "//blimp/client/test/compositor", | 76 "//blimp/client/test/compositor", |
| 77 "//blimp/common", | 77 "//blimp/common", |
| 78 "//blimp/net:test_support", | 78 "//blimp/net:test_support", |
| 79 "//cc/proto", | 79 "//cc/proto", |
| 80 "//cc/surfaces", | 80 "//cc/surfaces", |
| 81 "//net", | 81 "//net", |
| 82 "//net:test_support", | 82 "//net:test_support", |
| 83 "//testing/gtest", | 83 "//testing/gtest", |
| 84 ] | 84 ] |
| 85 } | 85 } |
| OLD | NEW |