| 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 testonly = true | 6 testonly = true |
| 7 | 7 |
| 8 sources = [ | 8 sources = [ |
| 9 "blimp_compositor_with_fake_host.cc", |
| 10 "blimp_compositor_with_fake_host.h", |
| 9 "mock_compositor_dependencies.cc", | 11 "mock_compositor_dependencies.cc", |
| 10 "mock_compositor_dependencies.h", | 12 "mock_compositor_dependencies.h", |
| 11 "test_blimp_embedder_compositor.cc", | 13 "test_blimp_embedder_compositor.cc", |
| 12 "test_blimp_embedder_compositor.h", | 14 "test_blimp_embedder_compositor.h", |
| 13 ] | 15 ] |
| 14 | 16 |
| 15 deps = [ | 17 deps = [ |
| 16 "//cc:test_support", | 18 "//cc:test_support", |
| 19 "//cc/proto", |
| 17 ] | 20 ] |
| 18 | 21 |
| 19 public_deps = [ | 22 public_deps = [ |
| 23 "//blimp/client/core/compositor", |
| 20 "//blimp/client/public:public_headers", | 24 "//blimp/client/public:public_headers", |
| 21 "//blimp/client/support/compositor", | 25 "//blimp/client/support/compositor", |
| 22 ] | 26 ] |
| 23 } | 27 } |
| OLD | NEW |