| 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/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 component("sync") { | 8 component("sync") { |
| 9 public_deps = [ | 9 public_deps = [ |
| 10 ":sync_core", | 10 ":sync_core", |
| 11 "//sync/protocol", | 11 "//sync/protocol", |
| 12 ] | 12 ] |
| 13 } | 13 } |
| 14 | 14 |
| 15 # GYP version: sync/sync.gyp:sync_core | 15 # GYP version: sync/sync.gyp:sync_core |
| 16 source_set("sync_core") { | 16 source_set("sync_core") { |
| 17 sources = [ | 17 sources = [ |
| 18 "api/attachments/attachment.cc", | 18 "api/attachments/attachment.cc", |
| 19 "api/attachments/attachment.h", | 19 "api/attachments/attachment.h", |
| 20 "api/attachments/attachment_id.cc", | 20 "api/attachments/attachment_id.cc", |
| 21 "api/attachments/attachment_id.h", | 21 "api/attachments/attachment_id.h", |
| 22 "api/attachments/attachment_metadata.cc", | 22 "api/attachments/attachment_metadata.cc", |
| 23 "api/attachments/attachment_metadata.h", | 23 "api/attachments/attachment_metadata.h", |
| 24 "api/attachments/attachment_store.cc", | 24 "api/attachments/attachment_store.cc", |
| 25 "api/attachments/attachment_store.h", | 25 "api/attachments/attachment_store.h", |
| 26 "api/attachments/attachment_store_backend.cc", | 26 "api/attachments/attachment_store_backend.cc", |
| 27 "api/attachments/attachment_store_backend.h", | 27 "api/attachments/attachment_store_backend.h", |
| 28 "api/data_batch.h", | 28 "api/data_batch.h", |
| 29 "api/entity_change.cc", |
| 30 "api/entity_change.h", |
| 29 "api/entity_data.cc", | 31 "api/entity_data.cc", |
| 30 "api/entity_data.h", | 32 "api/entity_data.h", |
| 31 "api/metadata_batch.h", | 33 "api/metadata_batch.h", |
| 32 "api/metadata_changes.h", | 34 "api/metadata_changes.h", |
| 33 "api/model_type_change_processor.cc", | 35 "api/model_type_change_processor.cc", |
| 34 "api/model_type_change_processor.h", | 36 "api/model_type_change_processor.h", |
| 35 "api/model_type_service.cc", | 37 "api/model_type_service.cc", |
| 36 "api/model_type_service.h", | 38 "api/model_type_service.h", |
| 37 "api/model_type_store.cc", | 39 "api/model_type_store.cc", |
| 38 "api/model_type_store.h", | 40 "api/model_type_store.h", |
| (...skipping 823 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 862 ":fake_server_jni", | 864 ":fake_server_jni", |
| 863 ":sync_core", | 865 ":sync_core", |
| 864 ":test_support_sync_fake_server", | 866 ":test_support_sync_fake_server", |
| 865 "//base", | 867 "//base", |
| 866 "//sync/protocol:protocol", | 868 "//sync/protocol:protocol", |
| 867 "//testing/gtest", | 869 "//testing/gtest", |
| 868 "//url:url", | 870 "//url:url", |
| 869 ] | 871 ] |
| 870 } | 872 } |
| 871 } | 873 } |
| OLD | NEW |