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

Side by Side Diff: base/BUILD.gn

Issue 2790523004: memory-infra: refactoring to extract MemoryDumpProviderInfo class (Closed)
Patch Set: Created 3 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
« no previous file with comments | « no previous file | base/trace_event/memory_dump_manager.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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 # HOW TO WRITE CONDITIONALS IN THIS FILE 5 # HOW TO WRITE CONDITIONALS IN THIS FILE
6 # ====================================== 6 # ======================================
7 # 7 #
8 # In many other places, one would write a conditional that expresses all the 8 # In many other places, one would write a conditional that expresses all the
9 # cases when a source file is used or unused, and then either add or subtract 9 # cases when a source file is used or unused, and then either add or subtract
10 # it from the sources list in that case 10 # it from the sources list in that case
(...skipping 979 matching lines...) Expand 10 before | Expand all | Expand 10 after
990 "trace_event/java_heap_dump_provider_android.h", 990 "trace_event/java_heap_dump_provider_android.h",
991 "trace_event/malloc_dump_provider.cc", 991 "trace_event/malloc_dump_provider.cc",
992 "trace_event/malloc_dump_provider.h", 992 "trace_event/malloc_dump_provider.h",
993 "trace_event/memory_allocator_dump.cc", 993 "trace_event/memory_allocator_dump.cc",
994 "trace_event/memory_allocator_dump.h", 994 "trace_event/memory_allocator_dump.h",
995 "trace_event/memory_allocator_dump_guid.cc", 995 "trace_event/memory_allocator_dump_guid.cc",
996 "trace_event/memory_allocator_dump_guid.h", 996 "trace_event/memory_allocator_dump_guid.h",
997 "trace_event/memory_dump_manager.cc", 997 "trace_event/memory_dump_manager.cc",
998 "trace_event/memory_dump_manager.h", 998 "trace_event/memory_dump_manager.h",
999 "trace_event/memory_dump_provider.h", 999 "trace_event/memory_dump_provider.h",
1000 "trace_event/memory_dump_provider_info.cc",
1001 "trace_event/memory_dump_provider_info.h",
1000 "trace_event/memory_dump_request_args.cc", 1002 "trace_event/memory_dump_request_args.cc",
1001 "trace_event/memory_dump_request_args.h", 1003 "trace_event/memory_dump_request_args.h",
1002 "trace_event/memory_dump_scheduler.cc", 1004 "trace_event/memory_dump_scheduler.cc",
1003 "trace_event/memory_dump_scheduler.h", 1005 "trace_event/memory_dump_scheduler.h",
1004 "trace_event/memory_dump_session_state.cc", 1006 "trace_event/memory_dump_session_state.cc",
1005 "trace_event/memory_dump_session_state.h", 1007 "trace_event/memory_dump_session_state.h",
1006 "trace_event/memory_infra_background_whitelist.cc", 1008 "trace_event/memory_infra_background_whitelist.cc",
1007 "trace_event/memory_infra_background_whitelist.h", 1009 "trace_event/memory_infra_background_whitelist.h",
1008 "trace_event/memory_usage_estimator.cc", 1010 "trace_event/memory_usage_estimator.cc",
1009 "trace_event/memory_usage_estimator.h", 1011 "trace_event/memory_usage_estimator.h",
(...skipping 1539 matching lines...) Expand 10 before | Expand all | Expand 10 after
2549 jar_excluded_patterns = [ 2551 jar_excluded_patterns = [
2550 "*/BuildConfig.class", 2552 "*/BuildConfig.class",
2551 "*/NativeLibraries.class", 2553 "*/NativeLibraries.class",
2552 "*/NativeLibraries##*.class", 2554 "*/NativeLibraries##*.class",
2553 ] 2555 ]
2554 } 2556 }
2555 2557
2556 android_aidl("base_java_aidl") { 2558 android_aidl("base_java_aidl") {
2557 import_include = [ "android/java/src" ] 2559 import_include = [ "android/java/src" ]
2558 sources = [ 2560 sources = [
2559 "android/java/src/org/chromium/base/process_launcher/IChildProcessServic e.aidl", 2561 "android/java/src/org/chromium/base/process_launcher/IChildProcessService. aidl",
2560 ] 2562 ]
2561 } 2563 }
Primiano Tucci (use gerrit) 2017/03/31 16:41:40 this was done automatically by git cl format. some
2562
2563 2564
2564 android_library("base_javatests") { 2565 android_library("base_javatests") {
2565 testonly = true 2566 testonly = true
2566 deps = [ 2567 deps = [
2567 ":base_java", 2568 ":base_java",
2568 ":base_java_test_support", 2569 ":base_java_test_support",
2569 "//third_party/android_support_test_runner:runner_java", 2570 "//third_party/android_support_test_runner:runner_java",
2570 "//third_party/junit:junit", 2571 "//third_party/junit:junit",
2571 ] 2572 ]
2572 java_files = [ 2573 java_files = [
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
2694 } 2695 }
2695 2696
2696 fuzzer_test("base_json_correctness_fuzzer") { 2697 fuzzer_test("base_json_correctness_fuzzer") {
2697 sources = [ 2698 sources = [
2698 "json/correctness_fuzzer.cc", 2699 "json/correctness_fuzzer.cc",
2699 ] 2700 ]
2700 deps = [ 2701 deps = [
2701 ":base", 2702 ":base",
2702 ] 2703 ]
2703 } 2704 }
OLDNEW
« no previous file with comments | « no previous file | base/trace_event/memory_dump_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698