| 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 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 565 "syncable/syncable_write_transaction.h", | 565 "syncable/syncable_write_transaction.h", |
| 566 "syncable/transaction_observer.h", | 566 "syncable/transaction_observer.h", |
| 567 "syncable/user_share.cc", | 567 "syncable/user_share.cc", |
| 568 "syncable/user_share.h", | 568 "syncable/user_share.h", |
| 569 "syncable/write_node.cc", | 569 "syncable/write_node.cc", |
| 570 "syncable/write_node.h", | 570 "syncable/write_node.h", |
| 571 "syncable/write_transaction.cc", | 571 "syncable/write_transaction.cc", |
| 572 "syncable/write_transaction.h", | 572 "syncable/write_transaction.h", |
| 573 "syncable/write_transaction_info.cc", | 573 "syncable/write_transaction_info.cc", |
| 574 "syncable/write_transaction_info.h", | 574 "syncable/write_transaction_info.h", |
| 575 "user_events/user_event_service.cc", |
| 576 "user_events/user_event_service.h", |
| 575 "user_events/user_event_sync_bridge.cc", | 577 "user_events/user_event_sync_bridge.cc", |
| 576 "user_events/user_event_sync_bridge.h", | 578 "user_events/user_event_sync_bridge.h", |
| 577 ] | 579 ] |
| 578 | 580 |
| 579 configs += [ "//build/config:precompiled_headers" ] | 581 configs += [ "//build/config:precompiled_headers" ] |
| 580 | 582 |
| 581 public_deps = [ | 583 public_deps = [ |
| 582 "//components/sync/protocol", | 584 "//components/sync/protocol", |
| 583 ] | 585 ] |
| 584 deps = [ | 586 deps = [ |
| 585 "//base", | 587 "//base", |
| 586 "//base:i18n", | 588 "//base:i18n", |
| 587 "//base/third_party/dynamic_annotations", | 589 "//base/third_party/dynamic_annotations", |
| 588 "//components/data_use_measurement/core", | 590 "//components/data_use_measurement/core", |
| 589 "//components/invalidation/public", | 591 "//components/invalidation/public", |
| 592 "//components/keyed_service/core", |
| 590 "//components/metrics", | 593 "//components/metrics", |
| 591 "//components/os_crypt", | 594 "//components/os_crypt", |
| 592 "//components/pref_registry", | 595 "//components/pref_registry", |
| 593 "//components/prefs", | 596 "//components/prefs", |
| 594 "//components/reading_list/core:reading_list_enable_flags", | 597 "//components/reading_list/core:reading_list_enable_flags", |
| 595 "//components/signin/core/browser", | 598 "//components/signin/core/browser", |
| 596 "//components/sync/engine_impl/attachments/proto", | 599 "//components/sync/engine_impl/attachments/proto", |
| 597 "//components/version_info", | 600 "//components/version_info", |
| 598 "//crypto", | 601 "//crypto", |
| 599 "//google_apis", | 602 "//google_apis", |
| (...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 935 "syncable/directory_unittest.cc", | 938 "syncable/directory_unittest.cc", |
| 936 "syncable/directory_unittest.h", | 939 "syncable/directory_unittest.h", |
| 937 "syncable/entry_kernel_unittest.cc", | 940 "syncable/entry_kernel_unittest.cc", |
| 938 "syncable/model_type_unittest.cc", | 941 "syncable/model_type_unittest.cc", |
| 939 "syncable/nigori_util_unittest.cc", | 942 "syncable/nigori_util_unittest.cc", |
| 940 "syncable/parent_child_index_unittest.cc", | 943 "syncable/parent_child_index_unittest.cc", |
| 941 "syncable/syncable_delete_journal_unittest.cc", | 944 "syncable/syncable_delete_journal_unittest.cc", |
| 942 "syncable/syncable_enum_conversions_unittest.cc", | 945 "syncable/syncable_enum_conversions_unittest.cc", |
| 943 "syncable/syncable_id_unittest.cc", | 946 "syncable/syncable_id_unittest.cc", |
| 944 "syncable/syncable_unittest.cc", | 947 "syncable/syncable_unittest.cc", |
| 948 "user_events/user_event_service_unittest.cc", |
| 945 "user_events/user_event_sync_bridge_unittest.cc", | 949 "user_events/user_event_sync_bridge_unittest.cc", |
| 946 ] | 950 ] |
| 947 | 951 |
| 948 configs += [ "//build/config:precompiled_headers" ] | 952 configs += [ "//build/config:precompiled_headers" ] |
| 949 | 953 |
| 950 data = [ | 954 data = [ |
| 951 "//chrome/test/data/sync/", | 955 "//chrome/test/data/sync/", |
| 952 "//net/tools/testserver/", | 956 "//net/tools/testserver/", |
| 953 "//third_party/pyftpdlib/", | 957 "//third_party/pyftpdlib/", |
| 954 "//third_party/pywebsocket/", | 958 "//third_party/pywebsocket/", |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1146 deps = [ | 1150 deps = [ |
| 1147 ":fake_server_jni", | 1151 ":fake_server_jni", |
| 1148 ":sync", | 1152 ":sync", |
| 1149 ":test_support_fake_server", | 1153 ":test_support_fake_server", |
| 1150 "//base", | 1154 "//base", |
| 1151 "//testing/gtest", | 1155 "//testing/gtest", |
| 1152 "//url:url", | 1156 "//url:url", |
| 1153 ] | 1157 ] |
| 1154 } | 1158 } |
| 1155 } | 1159 } |
| OLD | NEW |