blob: 30a3a6648814a30983e6224a345053babf4bf005 [file] [log] [blame]
# Copyright 2016 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/config/chromeos/ui_mode.gni")
import("//extensions/buildflags/buildflags.gni")
assert(enable_extensions,
"Cannot depend on extensions because enable_extensions=false.")
assert(is_chromeos)
source_set("diagnostics") {
sources = [
"diagnostics_api.cc",
"diagnostics_api.h",
]
configs += [ "//build/config/compiler:wexit_time_destructors" ]
public_deps = [
"//extensions/browser:browser_sources",
"//extensions/common/api",
]
deps = [
"//base",
"//chromeos/ash/components/dbus/debug_daemon",
]
}