| 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("compositor") { | 5 source_set("compositor") { |
| 6 visibility = [ | 6 visibility = [ |
| 7 "//blimp/client/app:*", # TODO(nyquist): Remove this. See crbug/651964. | 7 "//blimp/client/app:*", # TODO(nyquist): Remove this. See crbug/651964. |
| 8 "//blimp/client/core/*", | 8 "//blimp/client/core/*", |
| 9 ] | 9 ] |
| 10 | 10 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 "//blimp/net", | 34 "//blimp/net", |
| 35 "//cc/proto", | 35 "//cc/proto", |
| 36 "//cc/surfaces", | 36 "//cc/surfaces", |
| 37 "//gpu/command_buffer/client", | 37 "//gpu/command_buffer/client", |
| 38 "//third_party/libwebp", | 38 "//third_party/libwebp", |
| 39 "//ui/gl:gl", | 39 "//ui/gl:gl", |
| 40 ] | 40 ] |
| 41 | 41 |
| 42 public_deps = [ | 42 public_deps = [ |
| 43 "//base", | 43 "//base", |
| 44 "//blimp/client/core/input", | |
| 45 "//blimp/common", | 44 "//blimp/common", |
| 46 "//blimp/common/proto", | 45 "//blimp/common/proto", |
| 47 "//cc", | 46 "//cc", |
| 48 "//skia", | 47 "//skia", |
| 49 ] | 48 ] |
| 50 } | 49 } |
| 51 | 50 |
| 52 source_set("unit_tests") { | 51 source_set("unit_tests") { |
| 53 visibility = [ "//blimp/client/core:unit_tests" ] | 52 visibility = [ "//blimp/client/core:unit_tests" ] |
| 54 | 53 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 69 "//blimp/test:support", | 68 "//blimp/test:support", |
| 70 "//cc", | 69 "//cc", |
| 71 "//cc:test_support", | 70 "//cc:test_support", |
| 72 "//cc/proto", | 71 "//cc/proto", |
| 73 "//cc/surfaces", | 72 "//cc/surfaces", |
| 74 "//skia", | 73 "//skia", |
| 75 "//testing/gtest", | 74 "//testing/gtest", |
| 76 "//ui/events:gesture_detection", | 75 "//ui/events:gesture_detection", |
| 77 ] | 76 ] |
| 78 } | 77 } |
| OLD | NEW |