| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//components/sync/protocol/protocol_sources.gni") | 7 import("//components/sync/protocol/protocol_sources.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 static_library("sync") { | 10 static_library("sync") { |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 "base/ordinal.h", | 52 "base/ordinal.h", |
| 53 "base/passphrase_type.cc", | 53 "base/passphrase_type.cc", |
| 54 "base/passphrase_type.h", | 54 "base/passphrase_type.h", |
| 55 "base/pref_names.cc", | 55 "base/pref_names.cc", |
| 56 "base/pref_names.h", | 56 "base/pref_names.h", |
| 57 "base/progress_marker_map.cc", | 57 "base/progress_marker_map.cc", |
| 58 "base/progress_marker_map.h", | 58 "base/progress_marker_map.h", |
| 59 "base/proto_value_ptr.h", | 59 "base/proto_value_ptr.h", |
| 60 "base/report_unrecoverable_error.cc", | 60 "base/report_unrecoverable_error.cc", |
| 61 "base/report_unrecoverable_error.h", | 61 "base/report_unrecoverable_error.h", |
| 62 "base/scoped_event_signal.cc", |
| 63 "base/scoped_event_signal.h", |
| 62 "base/stop_source.h", | 64 "base/stop_source.h", |
| 63 "base/sync_features.cc", | 65 "base/sync_features.cc", |
| 64 "base/sync_features.h", | 66 "base/sync_features.h", |
| 65 "base/sync_prefs.cc", | 67 "base/sync_prefs.cc", |
| 66 "base/sync_prefs.h", | 68 "base/sync_prefs.h", |
| 67 "base/syncer_error.cc", | 69 "base/syncer_error.cc", |
| 68 "base/syncer_error.h", | 70 "base/syncer_error.h", |
| 69 "base/system_encryptor.cc", | 71 "base/system_encryptor.cc", |
| 70 "base/system_encryptor.h", | 72 "base/system_encryptor.h", |
| 71 "base/time.cc", | 73 "base/time.cc", |
| (...skipping 750 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 822 "base/cryptographer_unittest.cc", | 824 "base/cryptographer_unittest.cc", |
| 823 "base/data_type_histogram_unittest.cc", | 825 "base/data_type_histogram_unittest.cc", |
| 824 "base/enum_set_unittest.cc", | 826 "base/enum_set_unittest.cc", |
| 825 "base/get_session_name_unittest.cc", | 827 "base/get_session_name_unittest.cc", |
| 826 "base/immutable_unittest.cc", | 828 "base/immutable_unittest.cc", |
| 827 "base/nigori_unittest.cc", | 829 "base/nigori_unittest.cc", |
| 828 "base/node_ordinal_unittest.cc", | 830 "base/node_ordinal_unittest.cc", |
| 829 "base/ordinal_unittest.cc", | 831 "base/ordinal_unittest.cc", |
| 830 "base/proto_value_ptr_unittest.cc", | 832 "base/proto_value_ptr_unittest.cc", |
| 831 "base/protobuf_unittest.cc", | 833 "base/protobuf_unittest.cc", |
| 834 "base/scoped_event_signal_unittest.cc", |
| 832 "base/sync_prefs_unittest.cc", | 835 "base/sync_prefs_unittest.cc", |
| 833 "base/system_encryptor_unittest.cc", | 836 "base/system_encryptor_unittest.cc", |
| 834 "base/unique_position_unittest.cc", | 837 "base/unique_position_unittest.cc", |
| 835 "base/weak_handle_unittest.cc", | 838 "base/weak_handle_unittest.cc", |
| 836 "device_info/device_count_metrics_provider_unittest.cc", | 839 "device_info/device_count_metrics_provider_unittest.cc", |
| 837 "device_info/device_info_data_type_controller_unittest.cc", | 840 "device_info/device_info_data_type_controller_unittest.cc", |
| 838 "device_info/device_info_sync_bridge_unittest.cc", | 841 "device_info/device_info_sync_bridge_unittest.cc", |
| 839 "device_info/device_info_sync_service_unittest.cc", | 842 "device_info/device_info_sync_service_unittest.cc", |
| 840 "device_info/device_info_util_unittest.cc", | 843 "device_info/device_info_util_unittest.cc", |
| 841 "device_info/local_device_info_provider_impl_unittest.cc", | 844 "device_info/local_device_info_provider_impl_unittest.cc", |
| (...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1127 deps = [ | 1130 deps = [ |
| 1128 ":fake_server_jni", | 1131 ":fake_server_jni", |
| 1129 ":sync", | 1132 ":sync", |
| 1130 ":test_support_fake_server", | 1133 ":test_support_fake_server", |
| 1131 "//base", | 1134 "//base", |
| 1132 "//testing/gtest", | 1135 "//testing/gtest", |
| 1133 "//url:url", | 1136 "//url:url", |
| 1134 ] | 1137 ] |
| 1135 } | 1138 } |
| 1136 } | 1139 } |
| OLD | NEW |