Vitaly Buka | 4615e0d | 2015-10-14 15:35:12 -0700 | [diff] [blame] | 1 | # 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 Buka | bb14cc4 | 2015-08-18 18:43:06 -0700 | [diff] [blame] | 4 | { |
| 5 | 'variables': { |
| 6 | 'weave_sources': [ |
Vitaly Buka | bb14cc4 | 2015-08-18 18:43:06 -0700 | [diff] [blame] | 7 | 'src/backoff_entry.cc', |
| 8 | 'src/base_api_handler.cc', |
| 9 | 'src/commands/cloud_command_proxy.cc', |
| 10 | 'src/commands/command_definition.cc', |
| 11 | 'src/commands/command_dictionary.cc', |
| 12 | 'src/commands/command_instance.cc', |
| 13 | 'src/commands/command_manager.cc', |
| 14 | 'src/commands/command_queue.cc', |
| 15 | 'src/commands/object_schema.cc', |
| 16 | 'src/commands/prop_constraints.cc', |
| 17 | 'src/commands/prop_types.cc', |
| 18 | 'src/commands/prop_values.cc', |
| 19 | 'src/commands/schema_constants.cc', |
| 20 | 'src/commands/schema_utils.cc', |
Vitaly Buka | bb14cc4 | 2015-08-18 18:43:06 -0700 | [diff] [blame] | 21 | 'src/config.cc', |
| 22 | 'src/data_encoding.cc', |
| 23 | 'src/device_manager.cc', |
| 24 | 'src/device_registration_info.cc', |
| 25 | 'src/error.cc', |
| 26 | 'src/http_constants.cc', |
| 27 | 'src/json_error_codes.cc', |
| 28 | 'src/notification/notification_parser.cc', |
| 29 | 'src/notification/pull_channel.cc', |
| 30 | 'src/notification/xml_node.cc', |
| 31 | 'src/notification/xmpp_channel.cc', |
| 32 | 'src/notification/xmpp_iq_stanza_handler.cc', |
| 33 | 'src/notification/xmpp_stream_parser.cc', |
| 34 | 'src/privet/cloud_delegate.cc', |
| 35 | 'src/privet/constants.cc', |
| 36 | 'src/privet/device_delegate.cc', |
Vitaly Buka | 87eb788 | 2015-10-27 22:23:49 -0700 | [diff] [blame] | 37 | 'src/privet/device_ui_kind.cc', |
Vitaly Buka | bb14cc4 | 2015-08-18 18:43:06 -0700 | [diff] [blame] | 38 | 'src/privet/openssl_utils.cc', |
| 39 | 'src/privet/privet_handler.cc', |
| 40 | 'src/privet/privet_manager.cc', |
| 41 | 'src/privet/privet_types.cc', |
| 42 | 'src/privet/publisher.cc', |
| 43 | 'src/privet/security_manager.cc', |
| 44 | 'src/privet/wifi_bootstrap_manager.cc', |
| 45 | 'src/privet/wifi_ssid_generator.cc', |
| 46 | 'src/registration_status.cc', |
| 47 | 'src/states/error_codes.cc', |
| 48 | 'src/states/state_change_queue.cc', |
| 49 | 'src/states/state_manager.cc', |
| 50 | 'src/states/state_package.cc', |
Vitaly Buka | ff32458 | 2015-10-08 13:37:53 -0700 | [diff] [blame] | 51 | 'src/streams.cc', |
Vitaly Buka | bb14cc4 | 2015-08-18 18:43:06 -0700 | [diff] [blame] | 52 | 'src/string_utils.cc', |
| 53 | 'src/utils.cc', |
Vitaly Buka | 9e5b683 | 2015-10-14 15:57:14 -0700 | [diff] [blame] | 54 | 'third_party/chromium/crypto/p224.cc', |
| 55 | 'third_party/chromium/crypto/p224_spake.cc', |
| 56 | 'third_party/chromium/crypto/sha2.cc', |
Vitaly Buka | bb14cc4 | 2015-08-18 18:43:06 -0700 | [diff] [blame] | 57 | 'third_party/modp_b64/modp_b64.cc', |
| 58 | ], |
| 59 | 'weave_test_sources': [ |
Alex Vakulenko | 5a7a7da | 2015-09-25 16:10:23 -0700 | [diff] [blame] | 60 | 'src/test/fake_stream.cc', |
Vitaly Buka | 727f3e6 | 2015-09-25 17:33:43 -0700 | [diff] [blame] | 61 | 'src/test/fake_task_runner.cc', |
Vitaly Buka | 0f6b2ec | 2015-08-20 15:35:19 -0700 | [diff] [blame] | 62 | 'src/test/mock_command.cc', |
Vitaly Buka | 0f6b2ec | 2015-08-20 15:35:19 -0700 | [diff] [blame] | 63 | 'src/test/unittest_utils.cc', |
Vitaly Buka | bb14cc4 | 2015-08-18 18:43:06 -0700 | [diff] [blame] | 64 | ], |
| 65 | 'weave_unittest_sources': [ |
Vitaly Buka | bb14cc4 | 2015-08-18 18:43:06 -0700 | [diff] [blame] | 66 | 'src/backoff_entry_unittest.cc', |
| 67 | 'src/base_api_handler_unittest.cc', |
| 68 | 'src/commands/cloud_command_proxy_unittest.cc', |
| 69 | 'src/commands/command_definition_unittest.cc', |
| 70 | 'src/commands/command_dictionary_unittest.cc', |
| 71 | 'src/commands/command_instance_unittest.cc', |
| 72 | 'src/commands/command_manager_unittest.cc', |
| 73 | 'src/commands/command_queue_unittest.cc', |
| 74 | 'src/commands/object_schema_unittest.cc', |
| 75 | 'src/commands/schema_utils_unittest.cc', |
| 76 | 'src/config_unittest.cc', |
| 77 | 'src/data_encoding_unittest.cc', |
| 78 | 'src/device_registration_info_unittest.cc', |
| 79 | 'src/error_unittest.cc', |
| 80 | 'src/notification/notification_parser_unittest.cc', |
| 81 | 'src/notification/xml_node_unittest.cc', |
| 82 | 'src/notification/xmpp_channel_unittest.cc', |
| 83 | 'src/notification/xmpp_iq_stanza_handler_unittest.cc', |
| 84 | 'src/notification/xmpp_stream_parser_unittest.cc', |
| 85 | 'src/privet/privet_handler_unittest.cc', |
| 86 | 'src/privet/security_manager_unittest.cc', |
| 87 | 'src/privet/wifi_ssid_generator_unittest.cc', |
| 88 | 'src/states/state_change_queue_unittest.cc', |
| 89 | 'src/states/state_manager_unittest.cc', |
| 90 | 'src/states/state_package_unittest.cc', |
Vitaly Buka | ff32458 | 2015-10-08 13:37:53 -0700 | [diff] [blame] | 91 | 'src/streams_unittest.cc', |
Vitaly Buka | bb14cc4 | 2015-08-18 18:43:06 -0700 | [diff] [blame] | 92 | 'src/string_utils_unittest.cc', |
Vitaly Buka | 0f6b2ec | 2015-08-20 15:35:19 -0700 | [diff] [blame] | 93 | 'src/test/weave_testrunner.cc', |
Vitaly Buka | 9e5b683 | 2015-10-14 15:57:14 -0700 | [diff] [blame] | 94 | 'third_party/chromium/crypto/p224_spake_unittest.cc', |
| 95 | 'third_party/chromium/crypto/p224_unittest.cc', |
| 96 | 'third_party/chromium/crypto/sha2_unittest.cc', |
Vitaly Buka | bb14cc4 | 2015-08-18 18:43:06 -0700 | [diff] [blame] | 97 | ], |
Vitaly Buka | 11b2f23 | 2015-08-20 13:55:41 -0700 | [diff] [blame] | 98 | 'weave_exports_unittest_sources': [ |
Vitaly Buka | 0f6b2ec | 2015-08-20 15:35:19 -0700 | [diff] [blame] | 99 | 'src/test/weave_testrunner.cc', |
Vitaly Buka | 11b2f23 | 2015-08-20 13:55:41 -0700 | [diff] [blame] | 100 | 'src/weave_unittest.cc', |
Vitaly Buka | 11b2f23 | 2015-08-20 13:55:41 -0700 | [diff] [blame] | 101 | ], |
Vitaly Buka | bb14cc4 | 2015-08-18 18:43:06 -0700 | [diff] [blame] | 102 | 'base_sources': [ |
Vitaly Buka | 9e5b683 | 2015-10-14 15:57:14 -0700 | [diff] [blame] | 103 | 'third_party/chromium/base/bind_helpers.cc', |
| 104 | 'third_party/chromium/base/callback_internal.cc', |
| 105 | 'third_party/chromium/base/guid_posix.cc', |
| 106 | 'third_party/chromium/base/json/json_parser.cc', |
| 107 | 'third_party/chromium/base/json/json_reader.cc', |
| 108 | 'third_party/chromium/base/json/json_writer.cc', |
| 109 | 'third_party/chromium/base/json/string_escape.cc', |
| 110 | 'third_party/chromium/base/memory/ref_counted.cc', |
| 111 | 'third_party/chromium/base/logging.cc', |
| 112 | 'third_party/chromium/base/location.cc', |
| 113 | 'third_party/chromium/base/memory/weak_ptr.cc', |
| 114 | 'third_party/chromium/base/memory/weak_ptr.cc', |
| 115 | 'third_party/chromium/base/rand_util.cc', |
| 116 | 'third_party/chromium/base/rand_util_posix.cc', |
| 117 | 'third_party/chromium/base/strings/string_number_conversions.cc', |
| 118 | 'third_party/chromium/base/strings/string_piece.cc', |
| 119 | 'third_party/chromium/base/strings/stringprintf.cc', |
| 120 | 'third_party/chromium/base/strings/string_util.cc', |
| 121 | 'third_party/chromium/base/strings/string_util_constants.cc', |
| 122 | 'third_party/chromium/base/strings/utf_string_conversion_utils.cc', |
| 123 | 'third_party/chromium/base/third_party/dmg_fp/g_fmt.cc', |
| 124 | 'third_party/chromium/base/third_party/dmg_fp/dtoa.cc', |
| 125 | 'third_party/chromium/base/third_party/icu/icu_utf.cc', |
| 126 | 'third_party/chromium/base/time/clock.cc', |
| 127 | 'third_party/chromium/base/time/time.cc', |
| 128 | 'third_party/chromium/base/time/time_posix.cc', |
| 129 | 'third_party/chromium/base/values.cc', |
Vitaly Buka | bb14cc4 | 2015-08-18 18:43:06 -0700 | [diff] [blame] | 130 | ], |
| 131 | 'base_unittests': [ |
Vitaly Buka | 9e5b683 | 2015-10-14 15:57:14 -0700 | [diff] [blame] | 132 | 'third_party/chromium/base/bind_unittest.cc', |
| 133 | 'third_party/chromium/base/callback_list_unittest.cc', |
| 134 | 'third_party/chromium/base/callback_unittest.cc', |
| 135 | 'third_party/chromium/base/guid_unittest.cc', |
| 136 | 'third_party/chromium/base/json/json_parser_unittest.cc', |
| 137 | 'third_party/chromium/base/json/json_reader_unittest.cc', |
| 138 | 'third_party/chromium/base/json/json_writer_unittest.cc', |
| 139 | 'third_party/chromium/base/json/string_escape_unittest.cc', |
| 140 | 'third_party/chromium/base/logging_unittest.cc', |
| 141 | 'third_party/chromium/base/memory/ref_counted_unittest.cc', |
| 142 | 'third_party/chromium/base/memory/scoped_ptr_unittest.cc', |
| 143 | 'third_party/chromium/base/memory/weak_ptr_unittest.cc', |
| 144 | 'third_party/chromium/base/move_unittest.cc', |
| 145 | 'third_party/chromium/base/numerics/safe_numerics_unittest.cc', |
| 146 | 'third_party/chromium/base/observer_list_unittest.cc', |
| 147 | 'third_party/chromium/base/rand_util_unittest.cc', |
| 148 | 'third_party/chromium/base/scoped_clear_errno_unittest.cc', |
| 149 | 'third_party/chromium/base/strings/string_number_conversions_unittest.cc', |
| 150 | 'third_party/chromium/base/strings/string_piece_unittest.cc', |
| 151 | 'third_party/chromium/base/strings/string_util_unittest.cc', |
| 152 | 'third_party/chromium/base/strings/stringprintf_unittest.cc', |
| 153 | 'third_party/chromium/base/template_util_unittest.cc', |
| 154 | 'third_party/chromium/base/time/time_unittest.cc', |
| 155 | 'third_party/chromium/base/tuple_unittest.cc', |
| 156 | 'third_party/chromium/base/values_unittest.cc', |
Vitaly Buka | bb14cc4 | 2015-08-18 18:43:06 -0700 | [diff] [blame] | 157 | ], |
| 158 | }, |
| 159 | } |