| 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_sync_bridge.cc", |
| 576 "user_events/user_event_sync_bridge.h", |
| 575 ] | 577 ] |
| 576 | 578 |
| 577 configs += [ "//build/config:precompiled_headers" ] | 579 configs += [ "//build/config:precompiled_headers" ] |
| 578 | 580 |
| 579 public_deps = [ | 581 public_deps = [ |
| 580 "//components/sync/protocol", | 582 "//components/sync/protocol", |
| 581 ] | 583 ] |
| 582 deps = [ | 584 deps = [ |
| 583 "//base", | 585 "//base", |
| 584 "//base:i18n", | 586 "//base:i18n", |
| (...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 933 "syncable/directory_unittest.cc", | 935 "syncable/directory_unittest.cc", |
| 934 "syncable/directory_unittest.h", | 936 "syncable/directory_unittest.h", |
| 935 "syncable/entry_kernel_unittest.cc", | 937 "syncable/entry_kernel_unittest.cc", |
| 936 "syncable/model_type_unittest.cc", | 938 "syncable/model_type_unittest.cc", |
| 937 "syncable/nigori_util_unittest.cc", | 939 "syncable/nigori_util_unittest.cc", |
| 938 "syncable/parent_child_index_unittest.cc", | 940 "syncable/parent_child_index_unittest.cc", |
| 939 "syncable/syncable_delete_journal_unittest.cc", | 941 "syncable/syncable_delete_journal_unittest.cc", |
| 940 "syncable/syncable_enum_conversions_unittest.cc", | 942 "syncable/syncable_enum_conversions_unittest.cc", |
| 941 "syncable/syncable_id_unittest.cc", | 943 "syncable/syncable_id_unittest.cc", |
| 942 "syncable/syncable_unittest.cc", | 944 "syncable/syncable_unittest.cc", |
| 945 "user_events/user_event_sync_bridge_unittest.cc", |
| 943 ] | 946 ] |
| 944 | 947 |
| 945 configs += [ "//build/config:precompiled_headers" ] | 948 configs += [ "//build/config:precompiled_headers" ] |
| 946 | 949 |
| 947 data = [ | 950 data = [ |
| 948 "//chrome/test/data/sync/", | 951 "//chrome/test/data/sync/", |
| 949 "//net/tools/testserver/", | 952 "//net/tools/testserver/", |
| 950 "//third_party/pyftpdlib/", | 953 "//third_party/pyftpdlib/", |
| 951 "//third_party/pywebsocket/", | 954 "//third_party/pywebsocket/", |
| 952 "//third_party/tlslite/", | 955 "//third_party/tlslite/", |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1143 deps = [ | 1146 deps = [ |
| 1144 ":fake_server_jni", | 1147 ":fake_server_jni", |
| 1145 ":sync", | 1148 ":sync", |
| 1146 ":test_support_fake_server", | 1149 ":test_support_fake_server", |
| 1147 "//base", | 1150 "//base", |
| 1148 "//testing/gtest", | 1151 "//testing/gtest", |
| 1149 "//url:url", | 1152 "//url:url", |
| 1150 ] | 1153 ] |
| 1151 } | 1154 } |
| 1152 } | 1155 } |
| OLD | NEW |