| 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", |
| 9 "coded_value_serializer.h", |
| 8 "errors.h", | 10 "errors.h", |
| 11 "lww_register.h", |
| 9 "result.cc", | 12 "result.cc", |
| 10 "result.h", | 13 "result.h", |
| 11 "stream.h", | 14 "stream.h", |
| 12 "sync_manager.cc", | 15 "sync_manager.cc", |
| 13 "sync_manager.h", | 16 "sync_manager.h", |
| 14 "syncable.h", | 17 "syncable.h", |
| 18 "syncable_common.h", |
| 15 "transport.h", | 19 "transport.h", |
| 16 "version_vector.cc", | 20 "version_vector.cc", |
| 17 "version_vector.h", | 21 "version_vector.h", |
| 18 "version_vector_generator.h", | 22 "version_vector_generator.h", |
| 19 ] | 23 ] |
| 20 | 24 |
| 21 defines = [ "HELIUM_IMPLEMENTATION=1" ] | 25 defines = [ "HELIUM_IMPLEMENTATION=1" ] |
| 22 | 26 |
| 23 deps = [ | 27 deps = [ |
| 24 ":helium_export", | 28 ":helium_export", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 35 source_set("helium_export") { | 39 source_set("helium_export") { |
| 36 sources = [ | 40 sources = [ |
| 37 "blimp_helium_export.h", | 41 "blimp_helium_export.h", |
| 38 ] | 42 ] |
| 39 } | 43 } |
| 40 | 44 |
| 41 source_set("unit_tests") { | 45 source_set("unit_tests") { |
| 42 testonly = true | 46 testonly = true |
| 43 | 47 |
| 44 sources = [ | 48 sources = [ |
| 49 "coded_value_serializer_unittest.cc", |
| 50 "lww_register_unittest.cc", |
| 45 "result_unittest.cc", | 51 "result_unittest.cc", |
| 46 "syncable_unittest.cc", | 52 "syncable_unittest.cc", |
| 47 "version_vector_generator_unittest.cc", | 53 "version_vector_generator_unittest.cc", |
| 48 "version_vector_unittest.cc", | 54 "version_vector_unittest.cc", |
| 49 ] | 55 ] |
| 50 | 56 |
| 51 deps = [ | 57 deps = [ |
| 52 ":helium", | 58 ":helium", |
| 53 "//base", | 59 "//base", |
| 54 "//blimp/common", | 60 "//blimp/common", |
| 55 "//testing/gmock", | 61 "//testing/gmock", |
| 56 "//testing/gtest", | 62 "//testing/gtest", |
| 57 ] | 63 ] |
| 58 } | 64 } |
| OLD | NEW |