# 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("//extensions/buildflags/buildflags.gni")
assert(enable_extensions_core)
source_set("test") {
sources = [
"test_api.cc",
"test_api.h",
"test_api_observer.cc",
"test_api_observer.h",
"test_api_observer_registry.cc",
"test_api_observer_registry.h",
]
configs += [ "//build/config/compiler:wexit_time_destructors" ]
deps = [
"//base",
"//content/public/common",
"//extensions/common",
"//extensions/common/api",
]
public_deps = [ "//extensions/browser:browser_sources" ]
}