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 public_deps = [ | 8 public_deps = [ |
9 ":sync_core", | 9 ":sync_core", |
10 "//sync/protocol", | 10 "//sync/protocol", |
11 "//sync/internal_api/attachments/proto", | |
maniscalco
2014/10/21 21:41:03
sort order?
pavely
2014/10/24 20:42:55
Done.
| |
11 ] | 12 ] |
12 } | 13 } |
13 | 14 |
14 # GYP version: sync/sync.gyp:sync_core | 15 # GYP version: sync/sync.gyp:sync_core |
15 source_set("sync_core") { | 16 source_set("sync_core") { |
16 sources = [ | 17 sources = [ |
17 "api/attachments/attachment.cc", | 18 "api/attachments/attachment.cc", |
18 "api/attachments/attachment.h", | 19 "api/attachments/attachment.h", |
19 "api/attachments/attachment_id.cc", | 20 "api/attachments/attachment_id.cc", |
20 "api/attachments/attachment_id.h", | 21 "api/attachments/attachment_id.h", |
(...skipping 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
625 | 626 |
626 deps = [ | 627 deps = [ |
627 "//base", | 628 "//base", |
628 "//base/allocator", | 629 "//base/allocator", |
629 "//base/test:run_all_unittests", | 630 "//base/test:run_all_unittests", |
630 "//google_apis", | 631 "//google_apis", |
631 "//google_apis:test_support", | 632 "//google_apis:test_support", |
632 "//net", | 633 "//net", |
633 "//net:test_support", | 634 "//net:test_support", |
634 "//sql", | 635 "//sql", |
636 "//sync", | |
635 "//testing/gmock", | 637 "//testing/gmock", |
636 "//testing/gtest", | 638 "//testing/gtest", |
639 "//third_party/leveldatabase", | |
637 "//third_party/protobuf:protobuf_lite", | 640 "//third_party/protobuf:protobuf_lite", |
638 "//sync", | |
639 ":test_support_sync_core", | 641 ":test_support_sync_core", |
640 ":test_support_sync_internal_api", | 642 ":test_support_sync_internal_api", |
641 ] | 643 ] |
642 | 644 |
643 # TODO(GYP) | 645 # TODO(GYP) |
644 # ['OS == "android"', { | 646 # ['OS == "android"', { |
645 # 'dependencies': [ | 647 # 'dependencies': [ |
646 # '../testing/android/native_test.gyp:native_test_native_code', | 648 # '../testing/android/native_test.gyp:native_test_native_code', |
647 # ], | 649 # ], |
648 # }], | 650 # }], |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
810 } | 812 } |
811 | 813 |
812 # GYP: //sync/sync_tests.gypi:sync_unit_tests_apk | 814 # GYP: //sync/sync_tests.gypi:sync_unit_tests_apk |
813 unittest_apk("sync_unit_tests_apk") { | 815 unittest_apk("sync_unit_tests_apk") { |
814 unittests_dep = ":sync_unit_tests" | 816 unittests_dep = ":sync_unit_tests" |
815 deps = [ | 817 deps = [ |
816 ":sync_unit_tests", | 818 ":sync_unit_tests", |
817 ] | 819 ] |
818 } | 820 } |
819 } | 821 } |
OLD | NEW |