| Index: ui/views/resources/vector_icons/BUILD.gn
|
| diff --git a/ui/views/resources/vector_icons/BUILD.gn b/ui/views/resources/vector_icons/BUILD.gn
|
| deleted file mode 100644
|
| index a93457d04c21441baada1bf145b12bb811324416..0000000000000000000000000000000000000000
|
| --- a/ui/views/resources/vector_icons/BUILD.gn
|
| +++ /dev/null
|
| @@ -1,64 +0,0 @@
|
| -# Copyright 2017 The Chromium Authors. All rights reserved.
|
| -# Use of this source code is governed by a BSD-style license that can be
|
| -# found in the LICENSE file.
|
| -
|
| -action("aggregate_vector_icons") {
|
| - visibility = [ ":*" ]
|
| -
|
| - script = "//ui/gfx/vector_icons/aggregate_vector_icons.py"
|
| -
|
| - icons = [
|
| - "checkbox_active.icon",
|
| - "checkbox_normal.icon",
|
| - "menu_check.1x.icon",
|
| - "menu_check.icon",
|
| - "menu_radio_empty.icon",
|
| - "menu_radio_selected.icon",
|
| - "radio_button_active.icon",
|
| - "radio_button_normal.icon",
|
| - "submenu_arrow.1x.icon",
|
| - "submenu_arrow.icon",
|
| - ]
|
| -
|
| - if (is_mac) {
|
| - icons += [
|
| - "combobox_arrow_mac_enabled.icon",
|
| - "combobox_arrow_mac_disabled.icon",
|
| - ]
|
| - }
|
| -
|
| - output_cc = "$target_gen_dir/vector_icons.cc"
|
| - output_h = "$target_gen_dir/vector_icons.h"
|
| -
|
| - inputs = icons
|
| - inputs += [
|
| - "vector_icons.cc.template",
|
| - "vector_icons.h.template",
|
| - ]
|
| - outputs = [
|
| - output_cc,
|
| - output_h,
|
| - ]
|
| -
|
| - response_file_contents = rebase_path(icons, root_build_dir)
|
| -
|
| - args = [
|
| - "--working_directory=" + rebase_path("./"),
|
| - "--file_list={{response_file_name}}",
|
| - "--output_cc=" + rebase_path(output_cc, root_build_dir),
|
| - "--output_h=" + rebase_path(output_h, root_build_dir),
|
| - ]
|
| -}
|
| -
|
| -source_set("vector_icons") {
|
| - sources = get_target_outputs(":aggregate_vector_icons")
|
| - sources += [ "//ui/gfx/vector_icon_types.h" ]
|
| -
|
| - defines = [ "VIEWS_IMPLEMENTATION" ]
|
| -
|
| - deps = [
|
| - ":aggregate_vector_icons",
|
| - "//base",
|
| - "//skia",
|
| - ]
|
| -}
|
|
|