| 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 655 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 666 "//net", | 666 "//net", |
| 667 "//net:test_support", | 667 "//net:test_support", |
| 668 "//sql", | 668 "//sql", |
| 669 "//sql:test_support", | 669 "//sql:test_support", |
| 670 "//sync", | 670 "//sync", |
| 671 "//sync/protocol", | 671 "//sync/protocol", |
| 672 "//testing/gmock", | 672 "//testing/gmock", |
| 673 "//testing/gtest", | 673 "//testing/gtest", |
| 674 "//third_party/leveldatabase", | 674 "//third_party/leveldatabase", |
| 675 "//third_party/protobuf:protobuf_lite", | 675 "//third_party/protobuf:protobuf_lite", |
| 676 "//third_party/zlib", |
| 676 ] | 677 ] |
| 677 | 678 |
| 678 if (is_android) { | 679 if (is_android) { |
| 679 isolate_file = "sync_unit_tests.isolate" | 680 isolate_file = "sync_unit_tests.isolate" |
| 680 } | 681 } |
| 681 | 682 |
| 682 if (is_chromeos) { | 683 if (is_chromeos) { |
| 683 # Required by get_session_name_unittest.cc on Chrome OS. | 684 # Required by get_session_name_unittest.cc on Chrome OS. |
| 684 deps += [ "//chromeos" ] | 685 deps += [ "//chromeos" ] |
| 685 } | 686 } |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 809 ":fake_server_jni", | 810 ":fake_server_jni", |
| 810 ":sync_core", | 811 ":sync_core", |
| 811 ":test_support_sync_fake_server", | 812 ":test_support_sync_fake_server", |
| 812 "//base", | 813 "//base", |
| 813 "//sync/protocol:protocol", | 814 "//sync/protocol:protocol", |
| 814 "//testing/gtest", | 815 "//testing/gtest", |
| 815 "//url:url", | 816 "//url:url", |
| 816 ] | 817 ] |
| 817 } | 818 } |
| 818 } | 819 } |
| OLD | NEW |