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 | 6 |
7 component("sync") { | 7 component("sync") { |
8 public_deps = [ | 8 public_deps = [ |
9 ":sync_core", | 9 ":sync_core", |
10 "//sync/protocol", | 10 "//sync/protocol", |
(...skipping 792 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
803 static_library("test_support_sync_fake_server_android") { | 803 static_library("test_support_sync_fake_server_android") { |
804 testonly = true | 804 testonly = true |
805 sources = [ | 805 sources = [ |
806 "test/fake_server/android/fake_server_helper_android.cc", | 806 "test/fake_server/android/fake_server_helper_android.cc", |
807 "test/fake_server/android/fake_server_helper_android.h", | 807 "test/fake_server/android/fake_server_helper_android.h", |
808 ] | 808 ] |
809 deps = [ | 809 deps = [ |
810 ":fake_server_jni", | 810 ":fake_server_jni", |
811 ":test_support_sync_fake_server", | 811 ":test_support_sync_fake_server", |
812 "//base", | 812 "//base", |
| 813 "//testing/gtest", |
813 ] | 814 ] |
814 } | 815 } |
815 | 816 |
816 # GYP: //sync/sync_tests.gypi:sync_unit_tests_apk | 817 # GYP: //sync/sync_tests.gypi:sync_unit_tests_apk |
817 unittest_apk("sync_unit_tests_apk") { | 818 unittest_apk("sync_unit_tests_apk") { |
818 unittests_dep = ":sync_unit_tests" | 819 unittests_dep = ":sync_unit_tests" |
819 deps = [ | 820 deps = [ |
820 ":sync_unit_tests", | 821 ":sync_unit_tests", |
821 ] | 822 ] |
822 } | 823 } |
823 } | 824 } |
OLD | NEW |