Chromium Code Reviews| Index: base/trace_event/BUILD.gn |
| diff --git a/base/trace_event/BUILD.gn b/base/trace_event/BUILD.gn |
| index 10f7ec900e9d48b07ca92b2597a0f8fb21cfea79..d1c3d2d55fda454e8d99f1fd0b110681d3042a15 100644 |
| --- a/base/trace_event/BUILD.gn |
| +++ b/base/trace_event/BUILD.gn |
| @@ -1,4 +1,4 @@ |
| -# Copyright (c) 2015 The Chromium Authors. All rights reserved. |
| +# Copyright 2015 The Chromium Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| @@ -59,3 +59,24 @@ source_set("trace_event") { |
| visibility = [ "//base/*" ] |
| } |
| + |
| +source_set("trace_event_unittests") { |
| + testonly = true |
| + sources = [ |
| + "memory_dump_manager_unittest.cc", |
| + "process_memory_maps_dump_provider_unittest.cc", |
| + "process_memory_totals_dump_provider_unittest.cc", |
| + "trace_event_argument_unittest.cc", |
| + "trace_event_memory_unittest.cc", |
| + "trace_event_synthetic_delay_unittest.cc", |
| + "trace_event_system_stats_monitor_unittest.cc", |
| + "trace_event_unittest.cc", |
| + "trace_event_win_unittest.cc", |
| + ] |
|
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
|
| + |
| + deps = [ |
| + "//base/test:test_support", |
| + "//testing/gmock", |
| + "//testing/gtest", |
| + ] |
| +} |