| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 "base/passphrase_type.cc", | 53 "base/passphrase_type.cc", |
| 54 "base/passphrase_type.h", | 54 "base/passphrase_type.h", |
| 55 "base/pref_names.cc", | 55 "base/pref_names.cc", |
| 56 "base/pref_names.h", | 56 "base/pref_names.h", |
| 57 "base/progress_marker_map.cc", | 57 "base/progress_marker_map.cc", |
| 58 "base/progress_marker_map.h", | 58 "base/progress_marker_map.h", |
| 59 "base/proto_value_ptr.h", | 59 "base/proto_value_ptr.h", |
| 60 "base/report_unrecoverable_error.cc", | 60 "base/report_unrecoverable_error.cc", |
| 61 "base/report_unrecoverable_error.h", | 61 "base/report_unrecoverable_error.h", |
| 62 "base/stop_source.h", | 62 "base/stop_source.h", |
| 63 "base/sync_features.cc", |
| 64 "base/sync_features.h", |
| 63 "base/sync_prefs.cc", | 65 "base/sync_prefs.cc", |
| 64 "base/sync_prefs.h", | 66 "base/sync_prefs.h", |
| 65 "base/syncer_error.cc", | 67 "base/syncer_error.cc", |
| 66 "base/syncer_error.h", | 68 "base/syncer_error.h", |
| 67 "base/system_encryptor.cc", | 69 "base/system_encryptor.cc", |
| 68 "base/system_encryptor.h", | 70 "base/system_encryptor.h", |
| 69 "base/time.cc", | 71 "base/time.cc", |
| 70 "base/time.h", | 72 "base/time.h", |
| 71 "base/unique_position.cc", | 73 "base/unique_position.cc", |
| 72 "base/unique_position.h", | 74 "base/unique_position.h", |
| (...skipping 1045 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1118 deps = [ | 1120 deps = [ |
| 1119 ":fake_server_jni", | 1121 ":fake_server_jni", |
| 1120 ":sync", | 1122 ":sync", |
| 1121 ":test_support_fake_server", | 1123 ":test_support_fake_server", |
| 1122 "//base", | 1124 "//base", |
| 1123 "//testing/gtest", | 1125 "//testing/gtest", |
| 1124 "//url:url", | 1126 "//url:url", |
| 1125 ] | 1127 ] |
| 1126 } | 1128 } |
| 1127 } | 1129 } |
| OLD | NEW |