blob: f74a9bf5800a0e38ecde314f961f8be27a9daf13 [file] [log] [blame]
Vitaly Buka4615e0d2015-10-14 15:35:12 -07001# Copyright 2015 The Weave Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
Vitaly Bukabb14cc42015-08-18 18:43:06 -07004{
5 'variables': {
6 'weave_sources': [
Vitaly Bukabb14cc42015-08-18 18:43:06 -07007 'src/backoff_entry.cc',
8 'src/base_api_handler.cc',
9 'src/commands/cloud_command_proxy.cc',
Vitaly Bukabb14cc42015-08-18 18:43:06 -070010 'src/commands/command_dictionary.cc',
11 'src/commands/command_instance.cc',
12 'src/commands/command_manager.cc',
13 'src/commands/command_queue.cc',
Vitaly Bukabb14cc42015-08-18 18:43:06 -070014 'src/commands/schema_constants.cc',
Alex Vakulenko44c1dbe2015-12-03 15:35:09 -080015 'src/component_manager.cc',
Vitaly Bukabb14cc42015-08-18 18:43:06 -070016 'src/config.cc',
17 'src/data_encoding.cc',
18 'src/device_manager.cc',
19 'src/device_registration_info.cc',
20 'src/error.cc',
21 'src/http_constants.cc',
22 'src/json_error_codes.cc',
23 'src/notification/notification_parser.cc',
24 'src/notification/pull_channel.cc',
25 'src/notification/xml_node.cc',
26 'src/notification/xmpp_channel.cc',
27 'src/notification/xmpp_iq_stanza_handler.cc',
28 'src/notification/xmpp_stream_parser.cc',
Vitaly Bukaf08caeb2015-12-02 13:47:48 -080029 'src/privet/auth_manager.cc',
Vitaly Bukabb14cc42015-08-18 18:43:06 -070030 'src/privet/cloud_delegate.cc',
31 'src/privet/constants.cc',
32 'src/privet/device_delegate.cc',
Vitaly Buka87eb7882015-10-27 22:23:49 -070033 'src/privet/device_ui_kind.cc',
Vitaly Bukabb14cc42015-08-18 18:43:06 -070034 'src/privet/openssl_utils.cc',
35 'src/privet/privet_handler.cc',
36 'src/privet/privet_manager.cc',
37 'src/privet/privet_types.cc',
38 'src/privet/publisher.cc',
39 'src/privet/security_manager.cc',
40 'src/privet/wifi_bootstrap_manager.cc',
41 'src/privet/wifi_ssid_generator.cc',
42 'src/registration_status.cc',
43 'src/states/error_codes.cc',
44 'src/states/state_change_queue.cc',
45 'src/states/state_manager.cc',
46 'src/states/state_package.cc',
Vitaly Bukaff324582015-10-08 13:37:53 -070047 'src/streams.cc',
Vitaly Bukabb14cc42015-08-18 18:43:06 -070048 'src/string_utils.cc',
49 'src/utils.cc',
Vitaly Buka9e5b6832015-10-14 15:57:14 -070050 'third_party/chromium/crypto/p224.cc',
51 'third_party/chromium/crypto/p224_spake.cc',
52 'third_party/chromium/crypto/sha2.cc',
Vitaly Bukabb14cc42015-08-18 18:43:06 -070053 'third_party/modp_b64/modp_b64.cc',
54 ],
55 'weave_test_sources': [
Alex Vakulenko5a7a7da2015-09-25 16:10:23 -070056 'src/test/fake_stream.cc',
Vitaly Buka727f3e62015-09-25 17:33:43 -070057 'src/test/fake_task_runner.cc',
Vitaly Buka0f6b2ec2015-08-20 15:35:19 -070058 'src/test/unittest_utils.cc',
Vitaly Bukabb14cc42015-08-18 18:43:06 -070059 ],
60 'weave_unittest_sources': [
Vitaly Bukabb14cc42015-08-18 18:43:06 -070061 'src/backoff_entry_unittest.cc',
62 'src/base_api_handler_unittest.cc',
63 'src/commands/cloud_command_proxy_unittest.cc',
Vitaly Bukabb14cc42015-08-18 18:43:06 -070064 'src/commands/command_dictionary_unittest.cc',
65 'src/commands/command_instance_unittest.cc',
66 'src/commands/command_manager_unittest.cc',
67 'src/commands/command_queue_unittest.cc',
Alex Vakulenko44c1dbe2015-12-03 15:35:09 -080068 'src/component_manager_unittest.cc',
Vitaly Bukabb14cc42015-08-18 18:43:06 -070069 'src/config_unittest.cc',
70 'src/data_encoding_unittest.cc',
71 'src/device_registration_info_unittest.cc',
72 'src/error_unittest.cc',
73 'src/notification/notification_parser_unittest.cc',
74 'src/notification/xml_node_unittest.cc',
75 'src/notification/xmpp_channel_unittest.cc',
76 'src/notification/xmpp_iq_stanza_handler_unittest.cc',
77 'src/notification/xmpp_stream_parser_unittest.cc',
Vitaly Bukaf08caeb2015-12-02 13:47:48 -080078 'src/privet/auth_manager_unittest.cc',
Vitaly Bukabb14cc42015-08-18 18:43:06 -070079 'src/privet/privet_handler_unittest.cc',
80 'src/privet/security_manager_unittest.cc',
81 'src/privet/wifi_ssid_generator_unittest.cc',
82 'src/states/state_change_queue_unittest.cc',
83 'src/states/state_manager_unittest.cc',
84 'src/states/state_package_unittest.cc',
Vitaly Bukaff324582015-10-08 13:37:53 -070085 'src/streams_unittest.cc',
Vitaly Bukabb14cc42015-08-18 18:43:06 -070086 'src/string_utils_unittest.cc',
Vitaly Buka0f6b2ec2015-08-20 15:35:19 -070087 'src/test/weave_testrunner.cc',
Vitaly Buka9e5b6832015-10-14 15:57:14 -070088 'third_party/chromium/crypto/p224_spake_unittest.cc',
89 'third_party/chromium/crypto/p224_unittest.cc',
90 'third_party/chromium/crypto/sha2_unittest.cc',
Vitaly Bukabb14cc42015-08-18 18:43:06 -070091 ],
Vitaly Buka11b2f232015-08-20 13:55:41 -070092 'weave_exports_unittest_sources': [
Vitaly Buka0f6b2ec2015-08-20 15:35:19 -070093 'src/test/weave_testrunner.cc',
Vitaly Buka11b2f232015-08-20 13:55:41 -070094 'src/weave_unittest.cc',
Vitaly Buka11b2f232015-08-20 13:55:41 -070095 ],
Vitaly Bukabb14cc42015-08-18 18:43:06 -070096 'base_sources': [
Vitaly Buka9e5b6832015-10-14 15:57:14 -070097 'third_party/chromium/base/bind_helpers.cc',
98 'third_party/chromium/base/callback_internal.cc',
99 'third_party/chromium/base/guid_posix.cc',
100 'third_party/chromium/base/json/json_parser.cc',
101 'third_party/chromium/base/json/json_reader.cc',
102 'third_party/chromium/base/json/json_writer.cc',
103 'third_party/chromium/base/json/string_escape.cc',
104 'third_party/chromium/base/memory/ref_counted.cc',
105 'third_party/chromium/base/logging.cc',
106 'third_party/chromium/base/location.cc',
107 'third_party/chromium/base/memory/weak_ptr.cc',
108 'third_party/chromium/base/memory/weak_ptr.cc',
109 'third_party/chromium/base/rand_util.cc',
110 'third_party/chromium/base/rand_util_posix.cc',
111 'third_party/chromium/base/strings/string_number_conversions.cc',
112 'third_party/chromium/base/strings/string_piece.cc',
113 'third_party/chromium/base/strings/stringprintf.cc',
114 'third_party/chromium/base/strings/string_util.cc',
115 'third_party/chromium/base/strings/string_util_constants.cc',
116 'third_party/chromium/base/strings/utf_string_conversion_utils.cc',
117 'third_party/chromium/base/third_party/dmg_fp/g_fmt.cc',
118 'third_party/chromium/base/third_party/dmg_fp/dtoa.cc',
119 'third_party/chromium/base/third_party/icu/icu_utf.cc',
120 'third_party/chromium/base/time/clock.cc',
121 'third_party/chromium/base/time/time.cc',
122 'third_party/chromium/base/time/time_posix.cc',
123 'third_party/chromium/base/values.cc',
Vitaly Bukabb14cc42015-08-18 18:43:06 -0700124 ],
125 'base_unittests': [
Vitaly Buka9e5b6832015-10-14 15:57:14 -0700126 'third_party/chromium/base/bind_unittest.cc',
127 'third_party/chromium/base/callback_list_unittest.cc',
128 'third_party/chromium/base/callback_unittest.cc',
129 'third_party/chromium/base/guid_unittest.cc',
130 'third_party/chromium/base/json/json_parser_unittest.cc',
131 'third_party/chromium/base/json/json_reader_unittest.cc',
132 'third_party/chromium/base/json/json_writer_unittest.cc',
133 'third_party/chromium/base/json/string_escape_unittest.cc',
134 'third_party/chromium/base/logging_unittest.cc',
135 'third_party/chromium/base/memory/ref_counted_unittest.cc',
136 'third_party/chromium/base/memory/scoped_ptr_unittest.cc',
137 'third_party/chromium/base/memory/weak_ptr_unittest.cc',
138 'third_party/chromium/base/move_unittest.cc',
139 'third_party/chromium/base/numerics/safe_numerics_unittest.cc',
140 'third_party/chromium/base/observer_list_unittest.cc',
141 'third_party/chromium/base/rand_util_unittest.cc',
142 'third_party/chromium/base/scoped_clear_errno_unittest.cc',
143 'third_party/chromium/base/strings/string_number_conversions_unittest.cc',
144 'third_party/chromium/base/strings/string_piece_unittest.cc',
145 'third_party/chromium/base/strings/string_util_unittest.cc',
146 'third_party/chromium/base/strings/stringprintf_unittest.cc',
147 'third_party/chromium/base/template_util_unittest.cc',
148 'third_party/chromium/base/time/time_unittest.cc',
149 'third_party/chromium/base/tuple_unittest.cc',
150 'third_party/chromium/base/values_unittest.cc',
Vitaly Bukabb14cc42015-08-18 18:43:06 -0700151 ],
152 },
153}