| 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("//sync/protocol/protocol_sources.gni") | 6 import("//sync/protocol/protocol_sources.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 component("sync") { | 9 component("sync") { |
| 10 public_deps = [ | 10 public_deps = [ |
| (...skipping 707 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 718 "//net", | 718 "//net", |
| 719 "//net:test_support", | 719 "//net:test_support", |
| 720 "//sql", | 720 "//sql", |
| 721 "//sql:test_support", | 721 "//sql:test_support", |
| 722 "//sync", | 722 "//sync", |
| 723 "//sync/protocol", | 723 "//sync/protocol", |
| 724 "//testing/gmock", | 724 "//testing/gmock", |
| 725 "//testing/gtest", | 725 "//testing/gtest", |
| 726 "//third_party/leveldatabase", | 726 "//third_party/leveldatabase", |
| 727 "//third_party/protobuf:protobuf_lite", | 727 "//third_party/protobuf:protobuf_lite", |
| 728 "//third_party/zlib", | |
| 729 ] | 728 ] |
| 730 | 729 |
| 731 if (is_chromeos) { | 730 if (is_chromeos) { |
| 732 # Required by get_session_name_unittest.cc on Chrome OS. | 731 # Required by get_session_name_unittest.cc on Chrome OS. |
| 733 deps += [ "//chromeos" ] | 732 deps += [ "//chromeos" ] |
| 734 } | 733 } |
| 735 | 734 |
| 736 if (is_ios) { | 735 if (is_ios) { |
| 737 sources -= [ "internal_api/http_bridge_unittest.cc" ] | 736 sources -= [ "internal_api/http_bridge_unittest.cc" ] |
| 738 } | 737 } |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 891 ":fake_server_jni", | 890 ":fake_server_jni", |
| 892 ":sync_core", | 891 ":sync_core", |
| 893 ":test_support_sync_fake_server", | 892 ":test_support_sync_fake_server", |
| 894 "//base", | 893 "//base", |
| 895 "//sync/protocol:protocol", | 894 "//sync/protocol:protocol", |
| 896 "//testing/gtest", | 895 "//testing/gtest", |
| 897 "//url:url", | 896 "//url:url", |
| 898 ] | 897 ] |
| 899 } | 898 } |
| 900 } | 899 } |
| OLD | NEW |