Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: sync/BUILD.gn

Issue 1082893003: [Sync] Erase sync DB when corrupted (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove an unnecessary include. Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/config/features.gni") 5 import("//build/config/features.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 component("sync") { 8 component("sync") {
9 public_deps = [ 9 public_deps = [
10 ":sync_core", 10 ":sync_core",
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 static_library("test_support_sync_core") { 435 static_library("test_support_sync_core") {
436 testonly = true 436 testonly = true
437 sources = [ 437 sources = [
438 "internal_api/public/base/model_type_test_util.cc", 438 "internal_api/public/base/model_type_test_util.cc",
439 "internal_api/public/base/model_type_test_util.h", 439 "internal_api/public/base/model_type_test_util.h",
440 "js/js_test_util.cc", 440 "js/js_test_util.cc",
441 "js/js_test_util.h", 441 "js/js_test_util.h",
442 "sessions/test_util.cc", 442 "sessions/test_util.cc",
443 "sessions/test_util.h", 443 "sessions/test_util.h",
444 "test/callback_counter.h", 444 "test/callback_counter.h",
445 "test/directory_backing_store_corruption_testing.cc",
446 "test/directory_backing_store_corruption_testing.h",
445 "test/engine/fake_model_worker.cc", 447 "test/engine/fake_model_worker.cc",
446 "test/engine/fake_model_worker.h", 448 "test/engine/fake_model_worker.h",
447 "test/engine/fake_sync_scheduler.cc", 449 "test/engine/fake_sync_scheduler.cc",
448 "test/engine/fake_sync_scheduler.h", 450 "test/engine/fake_sync_scheduler.h",
449 "test/engine/injectable_sync_context_proxy.cc", 451 "test/engine/injectable_sync_context_proxy.cc",
450 "test/engine/injectable_sync_context_proxy.h", 452 "test/engine/injectable_sync_context_proxy.h",
451 "test/engine/mock_connection_manager.cc", 453 "test/engine/mock_connection_manager.cc",
452 "test/engine/mock_connection_manager.h", 454 "test/engine/mock_connection_manager.h",
453 "test/engine/mock_model_type_sync_proxy.cc", 455 "test/engine/mock_model_type_sync_proxy.cc",
454 "test/engine/mock_model_type_sync_proxy.h", 456 "test/engine/mock_model_type_sync_proxy.h",
(...skipping 24 matching lines...) Expand all
479 "test/null_transaction_observer.h", 481 "test/null_transaction_observer.h",
480 "test/sessions/mock_debug_info_getter.cc", 482 "test/sessions/mock_debug_info_getter.cc",
481 "test/sessions/mock_debug_info_getter.h", 483 "test/sessions/mock_debug_info_getter.h",
482 "test/sessions/test_scoped_session_event_listener.h", 484 "test/sessions/test_scoped_session_event_listener.h",
483 "test/test_directory_backing_store.cc", 485 "test/test_directory_backing_store.cc",
484 "test/test_directory_backing_store.h", 486 "test/test_directory_backing_store.h",
485 "test/test_transaction_observer.cc", 487 "test/test_transaction_observer.cc",
486 "test/test_transaction_observer.h", 488 "test/test_transaction_observer.h",
487 "test/trackable_mock_invalidation.cc", 489 "test/trackable_mock_invalidation.cc",
488 "test/trackable_mock_invalidation.h", 490 "test/trackable_mock_invalidation.h",
491 "util/mock_unrecoverable_error_handler.cc",
492 "util/mock_unrecoverable_error_handler.h",
489 "util/test_unrecoverable_error_handler.cc", 493 "util/test_unrecoverable_error_handler.cc",
490 "util/test_unrecoverable_error_handler.h", 494 "util/test_unrecoverable_error_handler.h",
491 ] 495 ]
492 496
493 public_deps = [ 497 public_deps = [
494 "//base", 498 "//base",
495 "//testing/gmock", 499 "//testing/gmock",
496 "//testing/gtest", 500 "//testing/gtest",
497 "//sync", 501 "//sync",
498 ] 502 ]
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
822 ":fake_server_jni", 826 ":fake_server_jni",
823 ":sync_core", 827 ":sync_core",
824 ":test_support_sync_fake_server", 828 ":test_support_sync_fake_server",
825 "//base", 829 "//base",
826 "//sync/protocol:protocol", 830 "//sync/protocol:protocol",
827 "//testing/gtest", 831 "//testing/gtest",
828 "//url:url", 832 "//url:url",
829 ] 833 ]
830 } 834 }
831 } 835 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698