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 testonly = true | |
| 65 sources = [ | |
| 66 "memory_dump_manager_unittest.cc", | |
| 67 "process_memory_maps_dump_provider_unittest.cc", | |
| 68 "process_memory_totals_dump_provider_unittest.cc", | |
| 69 "trace_event_argument_unittest.cc", | |
| 70 "trace_event_memory_unittest.cc", | |
| 71 "trace_event_synthetic_delay_unittest.cc", | |
| 72 "trace_event_system_stats_monitor_unittest.cc", | |
| 73 "trace_event_unittest.cc", | |
| 74 "trace_event_win_unittest.cc", | |
| 75 ] | |
|
brettw
2015/03/19 18:09:29
Can you be sure to not regress gn check with this?
Primiano Tucci (use gerrit)
2015/03/19 19:37:46
$ gn check out "//base/*"
Header dependency check
| |
| 76 | |
| 77 deps = [ | |
| 78 "//base/test:test_support", | |
| 79 "//testing/gmock", | |
| 80 "//testing/gtest", | |
| 81 ] | |
| 82 } | |
| OLD | NEW |