# 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("//components/vector_icons/vector_icons.gni") assert(is_chromeos) # The icons should be used only within //chrome/browser/ash/app_list/search. aggregate_vector_icons("app_list_vector_icons") { icon_directory = "." sources = [ "diagnostics.icon", "help_app.icon", "os_settings.icon", ] } static_library("vector_icons") { sources = get_target_outputs(":app_list_vector_icons") deps = [ ":app_list_vector_icons", "//base", "//skia", "//ui/gfx", ] }