summaryrefslogtreecommitdiffstats
path: root/components/tracing/BUILD.gn
blob: b3186d94095df4a402b1a37a49256a97b50fdbd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Copyright 2014 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.

component("tracing") {
  sources = [
    "child_memory_dump_manager_delegate_impl.cc",
    "child_memory_dump_manager_delegate_impl.h",
    "child_trace_message_filter.cc",
    "child_trace_message_filter.h",
    "tracing_export.h",
    "tracing_messages.cc",
    "tracing_messages.h",
  ]

  defines = [ "TRACING_IMPLEMENTATION" ]

  deps = [
    "//base",
    "//ipc",
  ]
}

component("startup_tracing") {
  sources = [
    "startup_tracing.cc",
    "startup_tracing.h",
    "tracing_export.h",
  ]

  defines = [ "TRACING_IMPLEMENTATION" ]

  deps = [
    "//base",
  ]
}