| 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 625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 636 ":test_support_sync_core", | 636 ":test_support_sync_core", |
| 637 ":test_support_sync_internal_api", | 637 ":test_support_sync_internal_api", |
| 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 "//sql:test_support", |
| 646 "//sync", | 647 "//sync", |
| 647 "//sync/internal_api/attachments/proto", | 648 "//sync/internal_api/attachments/proto", |
| 648 "//sync/protocol", | 649 "//sync/protocol", |
| 649 "//testing/gmock", | 650 "//testing/gmock", |
| 650 "//testing/gtest", | 651 "//testing/gtest", |
| 651 "//third_party/leveldatabase", | 652 "//third_party/leveldatabase", |
| 652 "//third_party/protobuf:protobuf_lite", | 653 "//third_party/protobuf:protobuf_lite", |
| 653 ] | 654 ] |
| 654 | 655 |
| 655 if (is_chromeos) { | 656 if (is_chromeos) { |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 814 deps = [ | 815 deps = [ |
| 815 ":fake_server_jni", | 816 ":fake_server_jni", |
| 816 ":sync_core", | 817 ":sync_core", |
| 817 ":test_support_sync_fake_server", | 818 ":test_support_sync_fake_server", |
| 818 "//base", | 819 "//base", |
| 819 "//sync/protocol:protocol", | 820 "//sync/protocol:protocol", |
| 820 "//testing/gtest", | 821 "//testing/gtest", |
| 821 ] | 822 ] |
| 822 } | 823 } |
| 823 } | 824 } |
| OLD | NEW |