| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 "base/invalidation_interface.cc", | 81 "base/invalidation_interface.cc", |
| 82 "base/invalidation_interface.h", | 82 "base/invalidation_interface.h", |
| 83 "base/logging.cc", | 83 "base/logging.cc", |
| 84 "base/logging.h", | 84 "base/logging.h", |
| 85 "base/model_type.h", | 85 "base/model_type.h", |
| 86 "base/nigori.cc", | 86 "base/nigori.cc", |
| 87 "base/nigori.h", | 87 "base/nigori.h", |
| 88 "base/node_ordinal.cc", | 88 "base/node_ordinal.cc", |
| 89 "base/node_ordinal.h", | 89 "base/node_ordinal.h", |
| 90 "base/ordinal.h", | 90 "base/ordinal.h", |
| 91 "base/passphrase_type.cc", |
| 92 "base/passphrase_type.h", |
| 91 "base/progress_marker_map.cc", | 93 "base/progress_marker_map.cc", |
| 92 "base/progress_marker_map.h", | 94 "base/progress_marker_map.h", |
| 93 "base/proto_value_ptr.h", | 95 "base/proto_value_ptr.h", |
| 94 "base/stop_source.h", | 96 "base/stop_source.h", |
| 95 "base/sync_db_util.h", | 97 "base/sync_db_util.h", |
| 96 "base/syncer_error.cc", | 98 "base/syncer_error.cc", |
| 97 "base/syncer_error.h", | 99 "base/syncer_error.h", |
| 98 "base/time.cc", | 100 "base/time.cc", |
| 99 "base/time.h", | 101 "base/time.h", |
| 100 "base/unique_position.cc", | 102 "base/unique_position.cc", |
| (...skipping 1003 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1104 deps = [ | 1106 deps = [ |
| 1105 ":fake_server_jni", | 1107 ":fake_server_jni", |
| 1106 ":sync", | 1108 ":sync", |
| 1107 ":test_support_sync_fake_server", | 1109 ":test_support_sync_fake_server", |
| 1108 "//base", | 1110 "//base", |
| 1109 "//testing/gtest", | 1111 "//testing/gtest", |
| 1110 "//url:url", | 1112 "//url:url", |
| 1111 ] | 1113 ] |
| 1112 } | 1114 } |
| 1113 } | 1115 } |
| OLD | NEW |