Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(464)

Side by Side Diff: blimp/helium/BUILD.gn

Issue 2402153002: Add CompoundSyncable class for synchronizing containers of Syncables. (Closed)
Patch Set: make literal unsigned Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | blimp/helium/compound_syncable.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | blimp/helium/compound_syncable.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698