Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 source_set("trace_event") { | 5 source_set("trace_event") { |
| 6 sources = [ | 6 sources = [ |
| 7 "memory_dump_manager.cc", | 7 "memory_dump_manager.cc", |
| 8 "memory_dump_manager.h", | 8 "memory_dump_manager.h", |
| 9 "memory_dump_provider.h", | 9 "memory_dump_provider.h", |
| 10 "process_memory_dump.cc", | 10 "process_memory_dump.cc", |
| 11 "process_memory_dump.h", | 11 "process_memory_dump.h", |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 52 ] | 52 ] |
| 53 | 53 |
| 54 allow_circular_includes_from = [ | 54 allow_circular_includes_from = [ |
| 55 "//base/debug", | 55 "//base/debug", |
| 56 "//base/memory", | 56 "//base/memory", |
| 57 "//base/process", | 57 "//base/process", |
| 58 ] | 58 ] |
| 59 | 59 |
| 60 visibility = [ "//base/*" ] | 60 visibility = [ "//base/*" ] |
| 61 } | 61 } |
| 62 | |
| 63 source_set("trace_event_unittests") { | |
| 64 sources = [ | |
| 65 "memory_dump_manager_unittest.cc", | |
| 66 "process_memory_maps_dump_provider_unittest.cc", | |
| 67 "process_memory_totals_dump_provider_unittest.cc", | |
| 68 "trace_event_argument_unittest.cc", | |
| 69 "trace_event_memory_unittest.cc", | |
| 70 "trace_event_synthetic_delay_unittest.cc", | |
| 71 "trace_event_system_stats_monitor_unittest.cc", | |
| 72 "trace_event_unittest.cc", | |
| 73 "trace_event_win_unittest.cc", | |
| 74 ] | |
| 75 | |
| 76 deps = [ | |
| 77 "//base/test:test_support", | |
|
dsinclair
2015/03/17 20:00:53
Does this target build with just these deps? Seems
Primiano Tucci (use gerrit)
2015/03/17 20:29:11
Well, bots seem happy at least.
| |
| 78 "//testing/gmock", | |
| 79 "//testing/gtest", | |
| 80 ] | |
| 81 } | |
| OLD | NEW |