xref: /aosp_15_r20/external/skia/bazel/external/imgui/BUILD.bazel (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1# This file will be copied into //third_party/externals/imgui via the new_git_repository
2# rule in //bazel/deps.bzl, so all files should be relative to that path.
3
4cc_library(
5    name = "imgui",
6    srcs = [
7        "imconfig.h",
8        "imgui.cpp",
9        "imgui.h",
10        "imgui_demo.cpp",
11        "imgui_draw.cpp",
12        "imgui_internal.h",
13        "imgui_tables.cpp",
14        "imgui_widgets.cpp",
15        "imstb_rectpack.h",
16        "imstb_textedit.h",
17        "imstb_truetype.h",
18        "misc/cpp/imgui_stdlib.cpp",
19        "misc/cpp/imgui_stdlib.h",
20    ],
21    hdrs = ["imgui.h"],
22    defines = ["IMGUI_ENABLE_OSX_DEFAULT_CLIPBOARD_FUNCTIONS"],
23    visibility = ["//visibility:public"],
24)
25