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 744 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
755 "test/fake_server/tombstone_entity.cc", | 755 "test/fake_server/tombstone_entity.cc", |
756 "test/fake_server/tombstone_entity.h", | 756 "test/fake_server/tombstone_entity.h", |
757 "test/fake_server/unique_client_entity.cc", | 757 "test/fake_server/unique_client_entity.cc", |
758 "test/fake_server/unique_client_entity.h", | 758 "test/fake_server/unique_client_entity.h", |
759 ] | 759 ] |
760 | 760 |
761 deps = [ | 761 deps = [ |
762 "//base", | 762 "//base", |
763 "//net", | 763 "//net", |
764 "//testing/gtest", | 764 "//testing/gtest", |
765 "//third_party/protobuf:protobuf_lite", | 765 "//third_party/protobuf:protobuf_lite", |
brettw
2015/09/22 18:20:20
We should remove this line now.
tfarina
2015/09/22 19:32:35
Done.
| |
766 "//sync", | 766 "//sync", |
767 "//url", | 767 "//url", |
768 ] | 768 ] |
769 | 769 |
770 forward_dependent_configs_from = [ "//third_party/protobuf:protobuf_lite" ] | 770 public_deps = [ |
771 "//third_party/protobuf:protobuf_lite", | |
772 ] | |
771 | 773 |
772 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 774 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
773 } | 775 } |
774 | 776 |
775 # GYP version: sync/sync_tests.gypi:test_support_sync_testserver | 777 # GYP version: sync/sync_tests.gypi:test_support_sync_testserver |
776 static_library("test_support_sync_testserver") { | 778 static_library("test_support_sync_testserver") { |
777 testonly = true | 779 testonly = true |
778 sources = [ | 780 sources = [ |
779 "test/local_sync_test_server.cc", | 781 "test/local_sync_test_server.cc", |
780 "test/local_sync_test_server.h", | 782 "test/local_sync_test_server.h", |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
847 ":fake_server_jni", | 849 ":fake_server_jni", |
848 ":sync_core", | 850 ":sync_core", |
849 ":test_support_sync_fake_server", | 851 ":test_support_sync_fake_server", |
850 "//base", | 852 "//base", |
851 "//sync/protocol:protocol", | 853 "//sync/protocol:protocol", |
852 "//testing/gtest", | 854 "//testing/gtest", |
853 "//url:url", | 855 "//url:url", |
854 ] | 856 ] |
855 } | 857 } |
856 } | 858 } |
OLD | NEW |