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 646 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
657 "//sql", | 657 "//sql", |
658 "//sql:test_support", | 658 "//sql:test_support", |
659 "//sync", | 659 "//sync", |
660 "//sync/protocol", | 660 "//sync/protocol", |
661 "//testing/gmock", | 661 "//testing/gmock", |
662 "//testing/gtest", | 662 "//testing/gtest", |
663 "//third_party/leveldatabase", | 663 "//third_party/leveldatabase", |
664 "//third_party/protobuf:protobuf_lite", | 664 "//third_party/protobuf:protobuf_lite", |
665 ] | 665 ] |
666 | 666 |
| 667 if (is_android) { |
| 668 isolate_file = "sync_unit_tests.isolate" |
| 669 } |
| 670 |
667 if (is_chromeos) { | 671 if (is_chromeos) { |
668 # Required by get_session_name_unittest.cc on Chrome OS. | 672 # Required by get_session_name_unittest.cc on Chrome OS. |
669 deps += [ "//chromeos" ] | 673 deps += [ "//chromeos" ] |
670 } | 674 } |
671 | 675 |
672 if (is_ios) { | 676 if (is_ios) { |
673 sources -= [ "internal_api/http_bridge_unittest.cc" ] | 677 sources -= [ "internal_api/http_bridge_unittest.cc" ] |
674 } | 678 } |
675 | 679 |
676 defines = [ "SYNC_TEST" ] | 680 defines = [ "SYNC_TEST" ] |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
796 ":fake_server_jni", | 800 ":fake_server_jni", |
797 ":sync_core", | 801 ":sync_core", |
798 ":test_support_sync_fake_server", | 802 ":test_support_sync_fake_server", |
799 "//base", | 803 "//base", |
800 "//sync/protocol:protocol", | 804 "//sync/protocol:protocol", |
801 "//testing/gtest", | 805 "//testing/gtest", |
802 "//url:url", | 806 "//url:url", |
803 ] | 807 ] |
804 } | 808 } |
805 } | 809 } |
OLD | NEW |