# Copyright 2023 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/util/branding.gni")
import("//components/vector_icons/vector_icons.gni")
aggregate_vector_icons("plus_addresses_vector_icons") {
icon_directory = "."
sources = []
if (is_chrome_branded) {
sources += [
"internal/plus_address_logo_large.icon",
"internal/plus_address_logo_small.icon",
]
}
}
static_library("vector_icons") {
sources = get_target_outputs(":plus_addresses_vector_icons")
deps = [
":plus_addresses_vector_icons",
"//base",
"//skia",
"//ui/gfx",
]
}