| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 import("//third_party/protobuf/proto_library.gni") | 6 import("//third_party/protobuf/proto_library.gni") |
| 7 | 7 |
| 8 component("tracing") { | 8 component("tracing") { |
| 9 sources = [ | 9 sources = [ |
| 10 "child/child_memory_dump_manager_delegate_impl.cc", | |
| 11 "child/child_memory_dump_manager_delegate_impl.h", | |
| 12 "child/child_trace_message_filter.cc", | 10 "child/child_trace_message_filter.cc", |
| 13 "child/child_trace_message_filter.h", | 11 "child/child_trace_message_filter.h", |
| 14 "common/graphics_memory_dump_provider_android.cc", | 12 "common/graphics_memory_dump_provider_android.cc", |
| 15 "common/graphics_memory_dump_provider_android.h", | 13 "common/graphics_memory_dump_provider_android.h", |
| 16 "common/process_metrics_memory_dump_provider.cc", | 14 "common/process_metrics_memory_dump_provider.cc", |
| 17 "common/process_metrics_memory_dump_provider.h", | 15 "common/process_metrics_memory_dump_provider.h", |
| 18 "common/tracing_messages.cc", | 16 "common/tracing_messages.cc", |
| 19 "common/tracing_messages.h", | 17 "common/tracing_messages.h", |
| 20 "core/proto_utils.cc", | 18 "core/proto_utils.cc", |
| 21 "core/proto_utils.h", | 19 "core/proto_utils.h", |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 "//testing/scripts/common.py", | 137 "//testing/scripts/common.py", |
| 140 "//testing/xvfb.py", | 138 "//testing/xvfb.py", |
| 141 "//testing/scripts/run_gtest_perf_test.py", | 139 "//testing/scripts/run_gtest_perf_test.py", |
| 142 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 140 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 143 ] | 141 ] |
| 144 | 142 |
| 145 if (is_android) { | 143 if (is_android) { |
| 146 deps += [ "//testing/android/native_test:native_test_native_code" ] | 144 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 147 } | 145 } |
| 148 } | 146 } |
| OLD | NEW |