| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//components/sync/protocol/protocol_sources.gni") | 7 import("//components/sync/protocol/protocol_sources.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 static_library("sync") { | 10 static_library("sync") { |
| (...skipping 1072 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1083 executable("run_sync_testserver") { | 1083 executable("run_sync_testserver") { |
| 1084 testonly = true | 1084 testonly = true |
| 1085 sources = [ | 1085 sources = [ |
| 1086 "tools/testserver/run_sync_testserver.cc", | 1086 "tools/testserver/run_sync_testserver.cc", |
| 1087 ] | 1087 ] |
| 1088 | 1088 |
| 1089 deps = [ | 1089 deps = [ |
| 1090 ":test_support_testserver", | 1090 ":test_support_testserver", |
| 1091 "//base", | 1091 "//base", |
| 1092 "//base/test:test_support", | 1092 "//base/test:test_support", |
| 1093 "//build/config/sanitizers:deps", | 1093 "//build/config:exe_and_shlib_deps", |
| 1094 "//build/win:default_exe_manifest", | 1094 "//build/win:default_exe_manifest", |
| 1095 "//net:test_support", | 1095 "//net:test_support", |
| 1096 "//testing/gtest", | 1096 "//testing/gtest", |
| 1097 ] | 1097 ] |
| 1098 } | 1098 } |
| 1099 } | 1099 } |
| 1100 | 1100 |
| 1101 if (is_android) { | 1101 if (is_android) { |
| 1102 import("//build/config/android/rules.gni") | 1102 import("//build/config/android/rules.gni") |
| 1103 | 1103 |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1150 deps = [ | 1150 deps = [ |
| 1151 ":fake_server_jni", | 1151 ":fake_server_jni", |
| 1152 ":sync", | 1152 ":sync", |
| 1153 ":test_support_fake_server", | 1153 ":test_support_fake_server", |
| 1154 "//base", | 1154 "//base", |
| 1155 "//testing/gtest", | 1155 "//testing/gtest", |
| 1156 "//url:url", | 1156 "//url:url", |
| 1157 ] | 1157 ] |
| 1158 } | 1158 } |
| 1159 } | 1159 } |
| OLD | NEW |