| 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_trace_message_filter.cc", | 10 "child/child_trace_message_filter.cc", |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 sources = [ | 92 sources = [ |
| 93 "child/child_trace_message_filter_unittest.cc", | 93 "child/child_trace_message_filter_unittest.cc", |
| 94 "common/graphics_memory_dump_provider_android_unittest.cc", | 94 "common/graphics_memory_dump_provider_android_unittest.cc", |
| 95 "common/process_metrics_memory_dump_provider_unittest.cc", | 95 "common/process_metrics_memory_dump_provider_unittest.cc", |
| 96 "core/proto_utils_unittest.cc", | 96 "core/proto_utils_unittest.cc", |
| 97 "core/proto_zero_message_unittest.cc", | 97 "core/proto_zero_message_unittest.cc", |
| 98 "core/scattered_stream_writer_unittest.cc", | 98 "core/scattered_stream_writer_unittest.cc", |
| 99 "core/trace_buffer_writer_unittest.cc", | 99 "core/trace_buffer_writer_unittest.cc", |
| 100 "core/trace_ring_buffer_unittest.cc", | 100 "core/trace_ring_buffer_unittest.cc", |
| 101 "test/fake_scattered_buffer.cc", | 101 "test/fake_scattered_buffer.cc", |
| 102 "test/fake_scattered_buffer.h", |
| 102 "test/proto_zero_generation_unittest.cc", | 103 "test/proto_zero_generation_unittest.cc", |
| 103 ] | 104 ] |
| 104 | 105 |
| 105 deps = [ | 106 deps = [ |
| 106 ":proto_zero_testing_messages", | 107 ":proto_zero_testing_messages", |
| 107 ":tracing", | 108 ":tracing", |
| 108 "//base/test:test_support", | 109 "//base/test:test_support", |
| 109 "//components/tracing/proto:golden_protos_for_tests", | 110 "//components/tracing/proto:golden_protos_for_tests", |
| 110 "//ipc", | 111 "//ipc", |
| 111 "//testing/gmock:gmock", | 112 "//testing/gmock:gmock", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 137 "//testing/scripts/common.py", | 138 "//testing/scripts/common.py", |
| 138 "//testing/xvfb.py", | 139 "//testing/xvfb.py", |
| 139 "//testing/scripts/run_gtest_perf_test.py", | 140 "//testing/scripts/run_gtest_perf_test.py", |
| 140 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 141 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 141 ] | 142 ] |
| 142 | 143 |
| 143 if (is_android) { | 144 if (is_android) { |
| 144 deps += [ "//testing/android/native_test:native_test_native_code" ] | 145 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 145 } | 146 } |
| 146 } | 147 } |
| OLD | NEW |