OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 component("blimp_common") { | 7 component("blimp_common") { |
8 sources = [ | 8 sources = [ |
9 "blimp_common_export.h", | 9 "blimp_common_export.h", |
| 10 "blob_cache/blob_cache.h", |
| 11 "blob_cache/infinite_blob_cache.cc", |
| 12 "blob_cache/infinite_blob_cache.h", |
10 "compositor/blimp_image_serialization_processor.cc", | 13 "compositor/blimp_image_serialization_processor.cc", |
11 "compositor/blimp_image_serialization_processor.h", | 14 "compositor/blimp_image_serialization_processor.h", |
12 "compositor/blimp_task_graph_runner.cc", | 15 "compositor/blimp_task_graph_runner.cc", |
13 "compositor/blimp_task_graph_runner.h", | 16 "compositor/blimp_task_graph_runner.h", |
14 "compositor/webp_decoder.cc", | 17 "compositor/webp_decoder.cc", |
15 "compositor/webp_decoder.h", | 18 "compositor/webp_decoder.h", |
16 "create_blimp_message.cc", | 19 "create_blimp_message.cc", |
17 "create_blimp_message.h", | 20 "create_blimp_message.h", |
18 "logging.cc", | 21 "logging.cc", |
19 "logging.h", | 22 "logging.h", |
(...skipping 10 matching lines...) Expand all Loading... |
30 "//third_party/libwebp", | 33 "//third_party/libwebp", |
31 "//ui/gfx/geometry", | 34 "//ui/gfx/geometry", |
32 "//ui/gl", | 35 "//ui/gl", |
33 ] | 36 ] |
34 } | 37 } |
35 | 38 |
36 source_set("unit_tests") { | 39 source_set("unit_tests") { |
37 testonly = true | 40 testonly = true |
38 | 41 |
39 sources = [ | 42 sources = [ |
| 43 "blob_cache/infinite_blob_cache_unittest.cc", |
40 "create_blimp_message_unittest.cc", | 44 "create_blimp_message_unittest.cc", |
41 "logging_unittest.cc", | 45 "logging_unittest.cc", |
42 ] | 46 ] |
43 | 47 |
44 deps = [ | 48 deps = [ |
45 ":blimp_common", | 49 ":blimp_common", |
46 "//blimp/common/proto", | 50 "//blimp/common/proto", |
47 "//testing/gmock", | 51 "//testing/gmock", |
48 "//testing/gtest", | 52 "//testing/gtest", |
49 ] | 53 ] |
50 } | 54 } |
OLD | NEW |