blob: 9f15c4c076a6ba719de4393838f47748baeed64d [file] [log] [blame]
# Copyright 2016 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.
source_set("glue") {
sources = [
"stack_trace.h",
"trace_event.h",
]
deps = [
"//garnet/public/lib/fxl",
]
if (is_fuchsia) {
sources += [ "stack_trace_fuchsia.cc" ]
public_deps = [
"//magenta/system/ulib/trace",
]
} else {
sources += [ "stack_trace_base.cc" ]
deps += [ "//flutter/fml" ]
}
}