| 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 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 497 "syncable/nigori_util.cc", | 497 "syncable/nigori_util.cc", |
| 498 "syncable/nigori_util.h", | 498 "syncable/nigori_util.h", |
| 499 "syncable/on_disk_directory_backing_store.cc", | 499 "syncable/on_disk_directory_backing_store.cc", |
| 500 "syncable/on_disk_directory_backing_store.h", | 500 "syncable/on_disk_directory_backing_store.h", |
| 501 "syncable/parent_child_index.cc", | 501 "syncable/parent_child_index.cc", |
| 502 "syncable/parent_child_index.h", | 502 "syncable/parent_child_index.h", |
| 503 "syncable/scoped_kernel_lock.cc", | 503 "syncable/scoped_kernel_lock.cc", |
| 504 "syncable/scoped_kernel_lock.h", | 504 "syncable/scoped_kernel_lock.h", |
| 505 "syncable/scoped_parent_child_index_updater.cc", | 505 "syncable/scoped_parent_child_index_updater.cc", |
| 506 "syncable/scoped_parent_child_index_updater.h", | 506 "syncable/scoped_parent_child_index_updater.h", |
| 507 "syncable/syncable-inl.h", | |
| 508 "syncable/syncable_base_transaction.cc", | 507 "syncable/syncable_base_transaction.cc", |
| 509 "syncable/syncable_base_transaction.h", | 508 "syncable/syncable_base_transaction.h", |
| 510 "syncable/syncable_base_write_transaction.cc", | 509 "syncable/syncable_base_write_transaction.cc", |
| 511 "syncable/syncable_base_write_transaction.h", | 510 "syncable/syncable_base_write_transaction.h", |
| 512 "syncable/syncable_changes_version.h", | 511 "syncable/syncable_changes_version.h", |
| 513 "syncable/syncable_columns.h", | 512 "syncable/syncable_columns.h", |
| 514 "syncable/syncable_delete_journal.cc", | 513 "syncable/syncable_delete_journal.cc", |
| 515 "syncable/syncable_delete_journal.h", | 514 "syncable/syncable_delete_journal.h", |
| 516 "syncable/syncable_enum_conversions.cc", | 515 "syncable/syncable_enum_conversions.cc", |
| 517 "syncable/syncable_enum_conversions.h", | 516 "syncable/syncable_enum_conversions.h", |
| (...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1104 deps = [ | 1103 deps = [ |
| 1105 ":fake_server_jni", | 1104 ":fake_server_jni", |
| 1106 ":sync", | 1105 ":sync", |
| 1107 ":test_support_sync_fake_server", | 1106 ":test_support_sync_fake_server", |
| 1108 "//base", | 1107 "//base", |
| 1109 "//testing/gtest", | 1108 "//testing/gtest", |
| 1110 "//url:url", | 1109 "//url:url", |
| 1111 ] | 1110 ] |
| 1112 } | 1111 } |
| 1113 } | 1112 } |
| OLD | NEW |