Chromium Code Reviews| 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 component("tracing") { | 5 component("tracing") { |
| 6 sources = [ | 6 sources = [ |
| 7 "child/child_memory_dump_manager_delegate_impl.cc", | 7 "child/child_memory_dump_manager_delegate_impl.cc", |
| 8 "child/child_memory_dump_manager_delegate_impl.h", | 8 "child/child_memory_dump_manager_delegate_impl.h", |
| 9 "child/child_trace_message_filter.cc", | 9 "child/child_trace_message_filter.cc", |
| 10 "child/child_trace_message_filter.h", | 10 "child/child_trace_message_filter.h", |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 55 source_set("unit_tests") { | 55 source_set("unit_tests") { |
| 56 testonly = true | 56 testonly = true |
| 57 | 57 |
| 58 sources = [ | 58 sources = [ |
| 59 "child/child_trace_message_filter_unittest.cc", | 59 "child/child_trace_message_filter_unittest.cc", |
| 60 "common/graphics_memory_dump_provider_android_unittest.cc", | 60 "common/graphics_memory_dump_provider_android_unittest.cc", |
| 61 "common/process_metrics_memory_dump_provider_unittest.cc", | 61 "common/process_metrics_memory_dump_provider_unittest.cc", |
| 62 "core/proto_utils_unittest.cc", | 62 "core/proto_utils_unittest.cc", |
| 63 "core/scattered_stream_writer_unittest.cc", | 63 "core/scattered_stream_writer_unittest.cc", |
| 64 "core/trace_ring_buffer_unittest.cc", | 64 "core/trace_ring_buffer_unittest.cc", |
| 65 "proto_zero_plugin/mock_messages_unittest.cc", | |
|
Primiano Tucci (use gerrit)
2016/07/13 16:52:31
this file should NOT be inside the tools/proto_zer
| |
| 65 ] | 66 ] |
| 66 | 67 |
| 67 deps = [ | 68 deps = [ |
| 68 ":tracing", | 69 ":tracing", |
| 70 "proto_zero_plugin:mock_messages", | |
| 69 "//base/test:test_support", | 71 "//base/test:test_support", |
| 70 "//ipc", | 72 "//ipc", |
| 71 "//testing/gmock:gmock", | 73 "//testing/gmock:gmock", |
| 72 "//testing/gtest", | 74 "//testing/gtest", |
| 73 ] | 75 ] |
| 74 | 76 |
| 75 if (!is_android) { | 77 if (!is_android) { |
| 76 sources += [ "browser/trace_config_file_unittest.cc" ] | 78 sources += [ "browser/trace_config_file_unittest.cc" ] |
| 77 deps += [ ":startup_tracing" ] | 79 deps += [ ":startup_tracing" ] |
| 78 } | 80 } |
| 79 } | 81 } |
| OLD | NEW |