| 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 669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 680 | 680 |
| 681 data = [ | 681 data = [ |
| 682 "//chrome/test/data/sync/", | 682 "//chrome/test/data/sync/", |
| 683 "//net/tools/testserver/", | 683 "//net/tools/testserver/", |
| 684 "//third_party/pyftpdlib/", | 684 "//third_party/pyftpdlib/", |
| 685 "//third_party/pywebsocket/", | 685 "//third_party/pywebsocket/", |
| 686 "//third_party/tlslite/", | 686 "//third_party/tlslite/", |
| 687 "$root_out_dir/pyproto/google/", | 687 "$root_out_dir/pyproto/google/", |
| 688 ] | 688 ] |
| 689 | 689 |
| 690 if (is_android) { | |
| 691 data += [ "$root_out_dir/locales/en-US.pak" ] | |
| 692 } | |
| 693 | |
| 694 deps = [ | 690 deps = [ |
| 695 ":test_support_sync_core", | 691 ":test_support_sync_core", |
| 696 ":test_support_sync_internal_api", | 692 ":test_support_sync_internal_api", |
| 697 "//base", | 693 "//base", |
| 698 "//base/allocator", | 694 "//base/allocator", |
| 699 "//base/test:run_all_unittests", | 695 "//base/test:run_all_unittests", |
| 700 "//google_apis", | 696 "//google_apis", |
| 701 "//google_apis:test_support", | 697 "//google_apis:test_support", |
| 702 "//net", | 698 "//net", |
| 703 "//net:test_support", | 699 "//net:test_support", |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 848 ":fake_server_jni", | 844 ":fake_server_jni", |
| 849 ":sync_core", | 845 ":sync_core", |
| 850 ":test_support_sync_fake_server", | 846 ":test_support_sync_fake_server", |
| 851 "//base", | 847 "//base", |
| 852 "//sync/protocol:protocol", | 848 "//sync/protocol:protocol", |
| 853 "//testing/gtest", | 849 "//testing/gtest", |
| 854 "//url:url", | 850 "//url:url", |
| 855 ] | 851 ] |
| 856 } | 852 } |
| 857 } | 853 } |
| OLD | NEW |