| 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 946 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 957 "//google_apis", | 957 "//google_apis", |
| 958 "//google_apis:test_support", | 958 "//google_apis:test_support", |
| 959 "//net", | 959 "//net", |
| 960 "//net:test_support", | 960 "//net:test_support", |
| 961 "//sql", | 961 "//sql", |
| 962 "//sql:test_support", | 962 "//sql:test_support", |
| 963 "//testing/gmock", | 963 "//testing/gmock", |
| 964 "//testing/gtest", | 964 "//testing/gtest", |
| 965 "//third_party/leveldatabase", | 965 "//third_party/leveldatabase", |
| 966 "//third_party/protobuf:protobuf_lite", | 966 "//third_party/protobuf:protobuf_lite", |
| 967 "//third_party/zlib:compression_utils", |
| 967 "//url", | 968 "//url", |
| 968 ] | 969 ] |
| 969 | 970 |
| 970 if (is_chromeos) { | 971 if (is_chromeos) { |
| 971 # Required by get_session_name_unittest.cc on Chrome OS. | 972 # Required by get_session_name_unittest.cc on Chrome OS. |
| 972 deps += [ "//chromeos" ] | 973 deps += [ "//chromeos" ] |
| 973 } | 974 } |
| 974 | 975 |
| 975 if (is_ios) { | 976 if (is_ios) { |
| 976 sources -= [ "engine/net/http_bridge_unittest.cc" ] | 977 sources -= [ "engine/net/http_bridge_unittest.cc" ] |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1127 deps = [ | 1128 deps = [ |
| 1128 ":fake_server_jni", | 1129 ":fake_server_jni", |
| 1129 ":sync", | 1130 ":sync", |
| 1130 ":test_support_fake_server", | 1131 ":test_support_fake_server", |
| 1131 "//base", | 1132 "//base", |
| 1132 "//testing/gtest", | 1133 "//testing/gtest", |
| 1133 "//url:url", | 1134 "//url:url", |
| 1134 ] | 1135 ] |
| 1135 } | 1136 } |
| 1136 } | 1137 } |
| OLD | NEW |