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 component("helium") { | 5 component("helium") { |
6 output_name = "helium" | 6 output_name = "helium" |
7 sources = [ | 7 sources = [ |
8 "coded_value_serializer.cc", | 8 "coded_value_serializer.cc", |
9 "coded_value_serializer.h", | 9 "coded_value_serializer.h", |
| 10 "compound_syncable.cc", |
| 11 "compound_syncable.h", |
10 "errors.h", | 12 "errors.h", |
11 "lww_register.h", | 13 "lww_register.h", |
12 "result.cc", | 14 "result.cc", |
13 "result.h", | 15 "result.h", |
14 "revision_generator.cc", | 16 "revision_generator.cc", |
15 "revision_generator.h", | 17 "revision_generator.h", |
16 "stream.h", | 18 "stream.h", |
17 "sync_manager.cc", | 19 "sync_manager.cc", |
18 "sync_manager.h", | 20 "sync_manager.h", |
19 "syncable.h", | 21 "syncable.h", |
(...skipping 21 matching lines...) Expand all Loading... |
41 sources = [ | 43 sources = [ |
42 "blimp_helium_export.h", | 44 "blimp_helium_export.h", |
43 ] | 45 ] |
44 } | 46 } |
45 | 47 |
46 source_set("unit_tests") { | 48 source_set("unit_tests") { |
47 testonly = true | 49 testonly = true |
48 | 50 |
49 sources = [ | 51 sources = [ |
50 "coded_value_serializer_unittest.cc", | 52 "coded_value_serializer_unittest.cc", |
| 53 "compound_syncable_unittest.cc", |
51 "helium_test.h", | 54 "helium_test.h", |
52 "lww_register_unittest.cc", | 55 "lww_register_unittest.cc", |
53 "result_unittest.cc", | 56 "result_unittest.cc", |
54 "revision_generator_unittest.cc", | 57 "revision_generator_unittest.cc", |
55 "syncable_unittest.cc", | |
56 "version_vector_unittest.cc", | 58 "version_vector_unittest.cc", |
57 ] | 59 ] |
58 | 60 |
59 deps = [ | 61 deps = [ |
60 ":helium", | 62 ":helium", |
61 "//base", | 63 "//base", |
62 "//blimp/common", | 64 "//blimp/common", |
63 "//testing/gmock", | 65 "//testing/gmock", |
64 "//testing/gtest", | 66 "//testing/gtest", |
65 ] | 67 ] |
66 } | 68 } |
OLD | NEW |