| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 "api/sync_error.h", | 46 "api/sync_error.h", |
| 47 "api/sync_error_factory.cc", | 47 "api/sync_error_factory.cc", |
| 48 "api/sync_error_factory.h", | 48 "api/sync_error_factory.h", |
| 49 "api/sync_merge_result.cc", | 49 "api/sync_merge_result.cc", |
| 50 "api/sync_merge_result.h", | 50 "api/sync_merge_result.h", |
| 51 "api/syncable_service.cc", | 51 "api/syncable_service.cc", |
| 52 "api/syncable_service.h", | 52 "api/syncable_service.h", |
| 53 "api/time.h", | 53 "api/time.h", |
| 54 "base/attachment_id_proto.cc", | 54 "base/attachment_id_proto.cc", |
| 55 "base/attachment_id_proto.h", | 55 "base/attachment_id_proto.h", |
| 56 "base/bind_to_task_runner.h", |
| 56 "base/cancelation_observer.cc", | 57 "base/cancelation_observer.cc", |
| 57 "base/cancelation_observer.h", | 58 "base/cancelation_observer.h", |
| 58 "base/cancelation_signal.cc", | 59 "base/cancelation_signal.cc", |
| 59 "base/cancelation_signal.h", | 60 "base/cancelation_signal.h", |
| 60 "base/cryptographer.cc", | 61 "base/cryptographer.cc", |
| 61 "base/cryptographer.h", | 62 "base/cryptographer.h", |
| 62 "base/data_type_histogram.cc", | 63 "base/data_type_histogram.cc", |
| 63 "base/data_type_histogram.h", | 64 "base/data_type_histogram.h", |
| 64 "base/encryptor.h", | 65 "base/encryptor.h", |
| 65 "base/enum_set.h", | 66 "base/enum_set.h", |
| (...skipping 719 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 785 "api/attachments/attachment_id_unittest.cc", | 786 "api/attachments/attachment_id_unittest.cc", |
| 786 "api/attachments/attachment_metadata_unittest.cc", | 787 "api/attachments/attachment_metadata_unittest.cc", |
| 787 "api/attachments/attachment_unittest.cc", | 788 "api/attachments/attachment_unittest.cc", |
| 788 "api/entity_data_unittest.cc", | 789 "api/entity_data_unittest.cc", |
| 789 "api/model_type_service_unittest.cc", | 790 "api/model_type_service_unittest.cc", |
| 790 "api/sync_change_unittest.cc", | 791 "api/sync_change_unittest.cc", |
| 791 "api/sync_data_unittest.cc", | 792 "api/sync_data_unittest.cc", |
| 792 "api/sync_error_unittest.cc", | 793 "api/sync_error_unittest.cc", |
| 793 "api/sync_merge_result_unittest.cc", | 794 "api/sync_merge_result_unittest.cc", |
| 794 "base/attachment_id_proto_unittest.cc", | 795 "base/attachment_id_proto_unittest.cc", |
| 796 "base/bind_to_task_runner_unittest.cc", |
| 795 "base/cancelation_signal_unittest.cc", | 797 "base/cancelation_signal_unittest.cc", |
| 796 "base/cryptographer_unittest.cc", | 798 "base/cryptographer_unittest.cc", |
| 797 "base/data_type_histogram_unittest.cc", | 799 "base/data_type_histogram_unittest.cc", |
| 798 "base/enum_set_unittest.cc", | 800 "base/enum_set_unittest.cc", |
| 799 "base/get_session_name_unittest.cc", | 801 "base/get_session_name_unittest.cc", |
| 800 "base/immutable_unittest.cc", | 802 "base/immutable_unittest.cc", |
| 801 "base/nigori_unittest.cc", | 803 "base/nigori_unittest.cc", |
| 802 "base/node_ordinal_unittest.cc", | 804 "base/node_ordinal_unittest.cc", |
| 803 "base/ordinal_unittest.cc", | 805 "base/ordinal_unittest.cc", |
| 804 "base/proto_value_ptr_unittest.cc", | 806 "base/proto_value_ptr_unittest.cc", |
| (...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1103 deps = [ | 1105 deps = [ |
| 1104 ":fake_server_jni", | 1106 ":fake_server_jni", |
| 1105 ":sync", | 1107 ":sync", |
| 1106 ":test_support_sync_fake_server", | 1108 ":test_support_sync_fake_server", |
| 1107 "//base", | 1109 "//base", |
| 1108 "//testing/gtest", | 1110 "//testing/gtest", |
| 1109 "//url:url", | 1111 "//url:url", |
| 1110 ] | 1112 ] |
| 1111 } | 1113 } |
| 1112 } | 1114 } |
| OLD | NEW |