| 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 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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", | 575 "user_events/user_event_sync_bridge.cc", |
| 576 "user_events/user_event_sync_bridge.h", | 576 "user_events/user_event_sync_bridge.h", |
| 577 ] | 577 ] |
| 578 | 578 |
| 579 configs += [ "//build/config:precompiled_headers" ] | 579 configs += [ "//build/config:precompiled_headers" ] |
| 580 | 580 |
| 581 public_deps = [ | 581 public_deps = [ |
| 582 "//base", |
| 582 "//components/sync/protocol", | 583 "//components/sync/protocol", |
| 584 "//net", |
| 585 "//url", |
| 583 ] | 586 ] |
| 584 deps = [ | 587 deps = [ |
| 585 "//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", |
| 590 "//components/metrics", | 592 "//components/metrics", |
| 591 "//components/os_crypt", | 593 "//components/os_crypt", |
| 592 "//components/pref_registry", | 594 "//components/pref_registry", |
| 593 "//components/prefs", | 595 "//components/prefs", |
| 594 "//components/reading_list/core:reading_list_enable_flags", | 596 "//components/reading_list/core:reading_list_enable_flags", |
| 595 "//components/signin/core/browser", | 597 "//components/signin/core/browser", |
| 596 "//components/sync/engine_impl/attachments/proto", | 598 "//components/sync/engine_impl/attachments/proto", |
| 597 "//components/version_info", | 599 "//components/version_info", |
| 598 "//crypto", | 600 "//crypto", |
| 599 "//google_apis", | 601 "//google_apis", |
| 600 "//net", | |
| 601 "//sql", | 602 "//sql", |
| 602 "//third_party/cacheinvalidation", | 603 "//third_party/cacheinvalidation", |
| 603 "//third_party/leveldatabase", | 604 "//third_party/leveldatabase", |
| 604 "//third_party/zlib", | 605 "//third_party/zlib", |
| 605 "//third_party/zlib:compression_utils", | 606 "//third_party/zlib:compression_utils", |
| 606 "//url", | |
| 607 ] | 607 ] |
| 608 | 608 |
| 609 if (is_android) { | 609 if (is_android) { |
| 610 deps += [ "//components/sync/android:jni_headers" ] | 610 deps += [ "//components/sync/android:jni_headers" ] |
| 611 sources += [ | 611 sources += [ |
| 612 "android/model_type_helper.cc", | 612 "android/model_type_helper.cc", |
| 613 "android/model_type_helper.h", | 613 "android/model_type_helper.h", |
| 614 "android/sync_jni_registrar.cc", | 614 "android/sync_jni_registrar.cc", |
| 615 "android/sync_jni_registrar.h", | 615 "android/sync_jni_registrar.h", |
| 616 ] | 616 ] |
| (...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1146 deps = [ | 1146 deps = [ |
| 1147 ":fake_server_jni", | 1147 ":fake_server_jni", |
| 1148 ":sync", | 1148 ":sync", |
| 1149 ":test_support_fake_server", | 1149 ":test_support_fake_server", |
| 1150 "//base", | 1150 "//base", |
| 1151 "//testing/gtest", | 1151 "//testing/gtest", |
| 1152 "//url:url", | 1152 "//url:url", |
| 1153 ] | 1153 ] |
| 1154 } | 1154 } |
| 1155 } | 1155 } |
| OLD | NEW |