| 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 = [ "//blimp/client/*" ] | 6 visibility = [ "//blimp/client/*" ] |
| 7 | 7 |
| 8 sources = [ | 8 sources = [ |
| 9 "blimp_client_picture_cache.cc", | 9 "blimp_client_picture_cache.cc", |
| 10 "blimp_client_picture_cache.h", | 10 "blimp_client_picture_cache.h", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 "//blimp/net", | 31 "//blimp/net", |
| 32 "//cc/proto", | 32 "//cc/proto", |
| 33 "//cc/surfaces", | 33 "//cc/surfaces", |
| 34 "//gpu/command_buffer/client", | 34 "//gpu/command_buffer/client", |
| 35 "//third_party/libwebp", | 35 "//third_party/libwebp", |
| 36 "//ui/gl:gl", | 36 "//ui/gl:gl", |
| 37 ] | 37 ] |
| 38 | 38 |
| 39 public_deps = [ | 39 public_deps = [ |
| 40 "//base", | 40 "//base", |
| 41 "//blimp/client/core/input", | |
| 42 "//blimp/common", | 41 "//blimp/common", |
| 43 "//blimp/common/proto", | 42 "//blimp/common/proto", |
| 44 "//cc", | 43 "//cc", |
| 45 "//skia", | 44 "//skia", |
| 46 ] | 45 ] |
| 47 } | 46 } |
| 48 | 47 |
| 49 source_set("unit_tests") { | 48 source_set("unit_tests") { |
| 50 visibility = [ "//blimp/client/core:unit_tests" ] | 49 visibility = [ "//blimp/client/core:unit_tests" ] |
| 51 | 50 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 66 "//blimp/test:support", | 65 "//blimp/test:support", |
| 67 "//cc", | 66 "//cc", |
| 68 "//cc:test_support", | 67 "//cc:test_support", |
| 69 "//cc/proto", | 68 "//cc/proto", |
| 70 "//cc/surfaces", | 69 "//cc/surfaces", |
| 71 "//skia", | 70 "//skia", |
| 72 "//testing/gtest", | 71 "//testing/gtest", |
| 73 "//ui/events:gesture_detection", | 72 "//ui/events:gesture_detection", |
| 74 ] | 73 ] |
| 75 } | 74 } |
| OLD | NEW |