# Copyright 2024 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) | |
source_set("side_panel") { | |
sources = [ | |
"side_panel_api.cc", | |
"side_panel_api.h", | |
] | |
public_deps = [ "//extensions/browser" ] | |
deps = [ | |
"//base", | |
"//chrome/browser/extensions", | |
"//chrome/common/extensions/api", | |
] | |
} |