Jacob Marble | 7e72437 | 2016-01-07 16:16:47 -0800 | [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. |
| 4 | |
| 5 | WEAVE_SRC_FILES := \ |
| 6 | src/backoff_entry.cc \ |
| 7 | src/base_api_handler.cc \ |
| 8 | src/commands/cloud_command_proxy.cc \ |
| 9 | src/commands/command_instance.cc \ |
| 10 | src/commands/command_queue.cc \ |
| 11 | src/commands/schema_constants.cc \ |
| 12 | src/component_manager_impl.cc \ |
| 13 | src/config.cc \ |
| 14 | src/data_encoding.cc \ |
| 15 | src/device_manager.cc \ |
| 16 | src/device_registration_info.cc \ |
| 17 | src/error.cc \ |
| 18 | src/http_constants.cc \ |
| 19 | src/json_error_codes.cc \ |
| 20 | src/notification/notification_parser.cc \ |
| 21 | src/notification/pull_channel.cc \ |
| 22 | src/notification/xml_node.cc \ |
| 23 | src/notification/xmpp_channel.cc \ |
| 24 | src/notification/xmpp_iq_stanza_handler.cc \ |
| 25 | src/notification/xmpp_stream_parser.cc \ |
| 26 | src/privet/auth_manager.cc \ |
| 27 | src/privet/cloud_delegate.cc \ |
| 28 | src/privet/constants.cc \ |
| 29 | src/privet/device_delegate.cc \ |
| 30 | src/privet/device_ui_kind.cc \ |
| 31 | src/privet/openssl_utils.cc \ |
| 32 | src/privet/privet_handler.cc \ |
| 33 | src/privet/privet_manager.cc \ |
| 34 | src/privet/privet_types.cc \ |
| 35 | src/privet/publisher.cc \ |
| 36 | src/privet/security_manager.cc \ |
| 37 | src/privet/wifi_bootstrap_manager.cc \ |
| 38 | src/privet/wifi_ssid_generator.cc \ |
| 39 | src/registration_status.cc \ |
| 40 | src/states/state_change_queue.cc \ |
| 41 | src/streams.cc \ |
| 42 | src/string_utils.cc \ |
| 43 | src/utils.cc |
| 44 | |
| 45 | WEAVE_TEST_SRC_FILES := \ |
| 46 | src/test/fake_stream.cc \ |
| 47 | src/test/fake_task_runner.cc \ |
| 48 | src/test/unittest_utils.cc |
| 49 | |
| 50 | WEAVE_UNITTEST_SRC_FILES := \ |
| 51 | src/backoff_entry_unittest.cc \ |
| 52 | src/base_api_handler_unittest.cc \ |
| 53 | src/commands/cloud_command_proxy_unittest.cc \ |
| 54 | src/commands/command_instance_unittest.cc \ |
| 55 | src/commands/command_queue_unittest.cc \ |
| 56 | src/component_manager_unittest.cc \ |
| 57 | src/config_unittest.cc \ |
| 58 | src/data_encoding_unittest.cc \ |
| 59 | src/device_registration_info_unittest.cc \ |
| 60 | src/error_unittest.cc \ |
| 61 | src/notification/notification_parser_unittest.cc \ |
| 62 | src/notification/xml_node_unittest.cc \ |
| 63 | src/notification/xmpp_channel_unittest.cc \ |
| 64 | src/notification/xmpp_iq_stanza_handler_unittest.cc \ |
| 65 | src/notification/xmpp_stream_parser_unittest.cc \ |
| 66 | src/privet/auth_manager_unittest.cc \ |
| 67 | src/privet/privet_handler_unittest.cc \ |
| 68 | src/privet/security_manager_unittest.cc \ |
| 69 | src/privet/wifi_ssid_generator_unittest.cc \ |
| 70 | src/states/state_change_queue_unittest.cc \ |
| 71 | src/streams_unittest.cc \ |
| 72 | src/string_utils_unittest.cc \ |
| 73 | src/test/weave_testrunner.cc |
| 74 | |
| 75 | WEAVE_EXPORTS_UNITTEST_SRC_FILES := \ |
| 76 | src/weave_unittest.cc |
| 77 | |
| 78 | EXAMPLES_PROVIDER_SRC_FILES := \ |
| 79 | examples/provider/avahi_client.cc \ |
| 80 | examples/provider/bluez_client.cc \ |
| 81 | examples/provider/curl_http_client.cc \ |
| 82 | examples/provider/event_http_client.cc \ |
| 83 | examples/provider/event_http_server.cc \ |
| 84 | examples/provider/event_network.cc \ |
| 85 | examples/provider/event_task_runner.cc \ |
| 86 | examples/provider/file_config_store.cc \ |
| 87 | examples/provider/ssl_stream.cc \ |
| 88 | examples/provider/wifi_manager.cc |
| 89 | |
| 90 | THIRD_PARTY_CHROMIUM_BASE_SRC_FILES := \ |
| 91 | third_party/chromium/base/bind_helpers.cc \ |
| 92 | third_party/chromium/base/callback_internal.cc \ |
| 93 | third_party/chromium/base/guid_posix.cc \ |
| 94 | third_party/chromium/base/json/json_parser.cc \ |
| 95 | third_party/chromium/base/json/json_reader.cc \ |
| 96 | third_party/chromium/base/json/json_writer.cc \ |
| 97 | third_party/chromium/base/json/string_escape.cc \ |
| 98 | third_party/chromium/base/location.cc \ |
| 99 | third_party/chromium/base/logging.cc \ |
| 100 | third_party/chromium/base/memory/ref_counted.cc \ |
| 101 | third_party/chromium/base/memory/weak_ptr.cc \ |
| 102 | third_party/chromium/base/rand_util.cc \ |
| 103 | third_party/chromium/base/rand_util_posix.cc \ |
| 104 | third_party/chromium/base/strings/string_number_conversions.cc \ |
| 105 | third_party/chromium/base/strings/string_piece.cc \ |
| 106 | third_party/chromium/base/strings/stringprintf.cc \ |
| 107 | third_party/chromium/base/strings/string_util.cc \ |
| 108 | third_party/chromium/base/strings/string_util_constants.cc \ |
| 109 | third_party/chromium/base/strings/utf_string_conversion_utils.cc \ |
| 110 | third_party/chromium/base/third_party/dmg_fp/dtoa.cc \ |
| 111 | third_party/chromium/base/third_party/dmg_fp/g_fmt.cc \ |
| 112 | third_party/chromium/base/third_party/icu/icu_utf.cc \ |
| 113 | third_party/chromium/base/time/clock.cc \ |
| 114 | third_party/chromium/base/time/default_clock.cc \ |
| 115 | third_party/chromium/base/time/time.cc \ |
| 116 | third_party/chromium/base/time/time_posix.cc \ |
| 117 | third_party/chromium/base/values.cc |
| 118 | |
| 119 | THIRD_PARTY_CHROMIUM_BASE_UNITTEST_SRC_FILES := \ |
| 120 | third_party/chromium/base/bind_unittest.cc \ |
| 121 | third_party/chromium/base/callback_list_unittest.cc \ |
| 122 | third_party/chromium/base/callback_unittest.cc \ |
| 123 | third_party/chromium/base/guid_unittest.cc \ |
| 124 | third_party/chromium/base/json/json_parser_unittest.cc \ |
| 125 | third_party/chromium/base/json/json_reader_unittest.cc \ |
| 126 | third_party/chromium/base/json/json_writer_unittest.cc \ |
| 127 | third_party/chromium/base/json/string_escape_unittest.cc \ |
| 128 | third_party/chromium/base/logging_unittest.cc \ |
| 129 | third_party/chromium/base/memory/ref_counted_unittest.cc \ |
| 130 | third_party/chromium/base/memory/scoped_ptr_unittest.cc \ |
| 131 | third_party/chromium/base/memory/weak_ptr_unittest.cc \ |
| 132 | third_party/chromium/base/move_unittest.cc \ |
| 133 | third_party/chromium/base/numerics/safe_numerics_unittest.cc \ |
| 134 | third_party/chromium/base/observer_list_unittest.cc \ |
| 135 | third_party/chromium/base/rand_util_unittest.cc \ |
| 136 | third_party/chromium/base/scoped_clear_errno_unittest.cc \ |
| 137 | third_party/chromium/base/strings/string_number_conversions_unittest.cc \ |
| 138 | third_party/chromium/base/strings/string_piece_unittest.cc \ |
| 139 | third_party/chromium/base/strings/string_util_unittest.cc \ |
| 140 | third_party/chromium/base/strings/stringprintf_unittest.cc \ |
| 141 | third_party/chromium/base/template_util_unittest.cc \ |
| 142 | third_party/chromium/base/time/time_unittest.cc \ |
| 143 | third_party/chromium/base/tuple_unittest.cc \ |
| 144 | third_party/chromium/base/values_unittest.cc |
| 145 | |
| 146 | THIRD_PARTY_CHROMIUM_CRYPTO_SRC_FILES := \ |
| 147 | third_party/chromium/crypto/p224.cc \ |
| 148 | third_party/chromium/crypto/p224_spake.cc \ |
| 149 | third_party/chromium/crypto/sha2.cc |
| 150 | |
| 151 | THIRD_PARTY_CHROMIUM_CRYPTO_UNITTEST_SRC_FILES := \ |
| 152 | third_party/chromium/crypto/p224_spake_unittest.cc \ |
| 153 | third_party/chromium/crypto/p224_unittest.cc \ |
| 154 | third_party/chromium/crypto/sha2_unittest.cc |
| 155 | |
| 156 | THIRD_PARTY_MODP_B64_SRC_FILES := \ |
| 157 | third_party/modp_b64/modp_b64.cc |
| 158 | |
| 159 | THIRD_PARTY_LIBUWEAVE_SRC_FILES := \ |
| 160 | third_party/libuweave/src/crypto_hmac.c \ |
| 161 | third_party/libuweave/src/crypto_utils.c \ |
| 162 | third_party/libuweave/src/macaroon.c \ |
| 163 | third_party/libuweave/src/macaroon_caveat.c \ |
| 164 | third_party/libuweave/src/macaroon_context.c \ |
| 165 | third_party/libuweave/src/macaroon_encoding.c |
| 166 | |