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

Side by Side Diff: components/sync/BUILD.gn

Issue 2382443006: Sync MDP: implement MemoryDumpProvider
Patch Set: Created 4 years, 2 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
« no previous file with comments | « base/trace_event/memory_usage_estimators.h ('k') | components/sync/base/proto_value_ptr.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/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 456 matching lines...) Expand 10 before | Expand all | Expand 10 after
467 "js/js_controller.h", 467 "js/js_controller.h",
468 "js/js_event_details.cc", 468 "js/js_event_details.cc",
469 "js/js_event_details.h", 469 "js/js_event_details.h",
470 "js/js_event_handler.h", 470 "js/js_event_handler.h",
471 "js/sync_js_controller.cc", 471 "js/sync_js_controller.cc",
472 "js/sync_js_controller.h", 472 "js/sync_js_controller.h",
473 "protocol/proto_enum_conversions.cc", 473 "protocol/proto_enum_conversions.cc",
474 "protocol/proto_enum_conversions.h", 474 "protocol/proto_enum_conversions.h",
475 "protocol/proto_old_value_conversions.cc", 475 "protocol/proto_old_value_conversions.cc",
476 "protocol/proto_old_value_conversions.h", 476 "protocol/proto_old_value_conversions.h",
477 "protocol/proto_size_estimations.cc",
478 "protocol/proto_size_estimations.h",
477 "protocol/proto_value_conversions.cc", 479 "protocol/proto_value_conversions.cc",
478 "protocol/proto_value_conversions.h", 480 "protocol/proto_value_conversions.h",
479 "protocol/sync_protocol_error.cc", 481 "protocol/sync_protocol_error.cc",
480 "protocol/sync_protocol_error.h", 482 "protocol/sync_protocol_error.h",
481 "syncable/dir_open_result.h", 483 "syncable/dir_open_result.h",
482 "syncable/directory.cc", 484 "syncable/directory.cc",
483 "syncable/directory.h", 485 "syncable/directory.h",
484 "syncable/directory_backing_store.cc", 486 "syncable/directory_backing_store.cc",
485 "syncable/directory_backing_store.h", 487 "syncable/directory_backing_store.h",
486 "syncable/directory_change_delegate.h", 488 "syncable/directory_change_delegate.h",
(...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after
879 "engine_impl/model_type_worker_unittest.cc", 881 "engine_impl/model_type_worker_unittest.cc",
880 "engine_impl/sync_scheduler_unittest.cc", 882 "engine_impl/sync_scheduler_unittest.cc",
881 "engine_impl/syncer_proto_util_unittest.cc", 883 "engine_impl/syncer_proto_util_unittest.cc",
882 "engine_impl/syncer_unittest.cc", 884 "engine_impl/syncer_unittest.cc",
883 "engine_impl/syncer_util_unittest.cc", 885 "engine_impl/syncer_util_unittest.cc",
884 "engine_impl/worker_entity_tracker_unittest.cc", 886 "engine_impl/worker_entity_tracker_unittest.cc",
885 "js/js_event_details_unittest.cc", 887 "js/js_event_details_unittest.cc",
886 "js/sync_js_controller_unittest.cc", 888 "js/sync_js_controller_unittest.cc",
887 "protocol/proto_compare_value_conversions_unittest.cc", 889 "protocol/proto_compare_value_conversions_unittest.cc",
888 "protocol/proto_enum_conversions_unittest.cc", 890 "protocol/proto_enum_conversions_unittest.cc",
891 "protocol/proto_size_estimations_unittest.cc",
889 "protocol/proto_unittest_serialized_data.cc", 892 "protocol/proto_unittest_serialized_data.cc",
890 "protocol/proto_unittest_serialized_data.h", 893 "protocol/proto_unittest_serialized_data.h",
891 "protocol/proto_value_conversions_unittest.cc", 894 "protocol/proto_value_conversions_unittest.cc",
892 "syncable/directory_backing_store_unittest.cc", 895 "syncable/directory_backing_store_unittest.cc",
893 "syncable/directory_unittest.cc", 896 "syncable/directory_unittest.cc",
894 "syncable/directory_unittest.h", 897 "syncable/directory_unittest.h",
895 "syncable/entry_kernel_unittest.cc", 898 "syncable/entry_kernel_unittest.cc",
896 "syncable/model_type_unittest.cc", 899 "syncable/model_type_unittest.cc",
897 "syncable/nigori_util_unittest.cc", 900 "syncable/nigori_util_unittest.cc",
898 "syncable/parent_child_index_unittest.cc", 901 "syncable/parent_child_index_unittest.cc",
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
1105 deps = [ 1108 deps = [
1106 ":fake_server_jni", 1109 ":fake_server_jni",
1107 ":sync", 1110 ":sync",
1108 ":test_support_sync_fake_server", 1111 ":test_support_sync_fake_server",
1109 "//base", 1112 "//base",
1110 "//testing/gtest", 1113 "//testing/gtest",
1111 "//url:url", 1114 "//url:url",
1112 ] 1115 ]
1113 } 1116 }
1114 } 1117 }
OLDNEW
« no previous file with comments | « base/trace_event/memory_usage_estimators.h ('k') | components/sync/base/proto_value_ptr.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698