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 | 6 |
7 component("sync") { | 7 component("sync") { |
8 deps = [ | 8 public_deps = [ |
9 ":sync_core", | 9 ":sync_core", |
10 "//sync/protocol", | 10 "//sync/protocol", |
11 ] | 11 ] |
12 forward_dependent_configs_from = [ "//sync/protocol" ] | |
13 } | 12 } |
14 | 13 |
15 # GYP version: sync/sync.gyp:sync_core | 14 # GYP version: sync/sync.gyp:sync_core |
16 source_set("sync_core") { | 15 source_set("sync_core") { |
17 sources = [ | 16 sources = [ |
18 "api/attachments/attachment.cc", | 17 "api/attachments/attachment.cc", |
19 "api/attachments/attachment.h", | 18 "api/attachments/attachment.h", |
20 "api/attachments/attachment_id.cc", | 19 "api/attachments/attachment_id.cc", |
21 "api/attachments/attachment_id.h", | 20 "api/attachments/attachment_id.h", |
22 "api/attachments/attachment_store.cc", | 21 "api/attachments/attachment_store.cc", |
(...skipping 749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
772 "//base", | 771 "//base", |
773 "//base/test:test_support", | 772 "//base/test:test_support", |
774 "//net:test_support", | 773 "//net:test_support", |
775 "//testing/gtest", | 774 "//testing/gtest", |
776 ":test_support_sync_testserver", | 775 ":test_support_sync_testserver", |
777 ] | 776 ] |
778 } | 777 } |
779 } | 778 } |
780 | 779 |
781 #TODO(GYP): Need to port sync_android.gypi and Android test targets. | 780 #TODO(GYP): Need to port sync_android.gypi and Android test targets. |
OLD | NEW |