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 677 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
688 "//net", | 688 "//net", |
689 "//net:test_support", | 689 "//net:test_support", |
690 "//sql", | 690 "//sql", |
691 "//sql:test_support", | 691 "//sql:test_support", |
692 "//sync", | 692 "//sync", |
693 "//sync/protocol", | 693 "//sync/protocol", |
694 "//testing/gmock", | 694 "//testing/gmock", |
695 "//testing/gtest", | 695 "//testing/gtest", |
696 "//third_party/leveldatabase", | 696 "//third_party/leveldatabase", |
697 "//third_party/protobuf:protobuf_lite", | 697 "//third_party/protobuf:protobuf_lite", |
| 698 "//third_party/zlib", |
698 ] | 699 ] |
699 | 700 |
700 if (is_android) { | 701 if (is_android) { |
701 isolate_file = "sync_unit_tests.isolate" | 702 isolate_file = "sync_unit_tests.isolate" |
702 } | 703 } |
703 | 704 |
704 if (is_chromeos) { | 705 if (is_chromeos) { |
705 # Required by get_session_name_unittest.cc on Chrome OS. | 706 # Required by get_session_name_unittest.cc on Chrome OS. |
706 deps += [ "//chromeos" ] | 707 deps += [ "//chromeos" ] |
707 } | 708 } |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
831 ":fake_server_jni", | 832 ":fake_server_jni", |
832 ":sync_core", | 833 ":sync_core", |
833 ":test_support_sync_fake_server", | 834 ":test_support_sync_fake_server", |
834 "//base", | 835 "//base", |
835 "//sync/protocol:protocol", | 836 "//sync/protocol:protocol", |
836 "//testing/gtest", | 837 "//testing/gtest", |
837 "//url:url", | 838 "//url:url", |
838 ] | 839 ] |
839 } | 840 } |
840 } | 841 } |
OLD | NEW |