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", |
(...skipping 627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
638 "//base", | 638 "//base", |
639 "//base/allocator", | 639 "//base/allocator", |
640 "//base/test:run_all_unittests", | 640 "//base/test:run_all_unittests", |
641 "//google_apis", | 641 "//google_apis", |
642 "//google_apis:test_support", | 642 "//google_apis:test_support", |
643 "//net", | 643 "//net", |
644 "//net:test_support", | 644 "//net:test_support", |
645 "//sql", | 645 "//sql", |
646 "//sync", | 646 "//sync", |
647 "//sync/internal_api/attachments/proto", | 647 "//sync/internal_api/attachments/proto", |
| 648 "//sync/protocol", |
648 "//testing/gmock", | 649 "//testing/gmock", |
649 "//testing/gtest", | 650 "//testing/gtest", |
650 "//third_party/leveldatabase", | 651 "//third_party/leveldatabase", |
651 "//third_party/protobuf:protobuf_lite", | 652 "//third_party/protobuf:protobuf_lite", |
652 ] | 653 ] |
653 | 654 |
654 if (is_chromeos) { | 655 if (is_chromeos) { |
655 # Required by get_session_name_unittest.cc on Chrome OS. | 656 # Required by get_session_name_unittest.cc on Chrome OS. |
656 deps += [ "//chromeos" ] | 657 deps += [ "//chromeos" ] |
657 } | 658 } |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
811 deps = [ | 812 deps = [ |
812 ":fake_server_jni", | 813 ":fake_server_jni", |
813 ":sync_core", | 814 ":sync_core", |
814 ":test_support_sync_fake_server", | 815 ":test_support_sync_fake_server", |
815 "//base", | 816 "//base", |
816 "//sync/protocol:protocol", | 817 "//sync/protocol:protocol", |
817 "//testing/gtest", | 818 "//testing/gtest", |
818 ] | 819 ] |
819 } | 820 } |
820 } | 821 } |
OLD | NEW |