Size: 538 bytes.


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# cs/q/heap/BUILD
package(default_visibility = ["//visibility:public"])

cc_test(
    name = "heap_test",
    srcs = [
        "heap_test.cc",
    ],
    deps = [
        ":heap",
        "@googletest//:gtest_main",
    ],
)

cc_test(
    name = "heap_cpp_test",
    srcs = [
        "heap_cpp_test.gpt.cc",
    ],
    deps = [
        ":heap",
        "@googletest//:gtest_main",
    ],
)

cc_library(
    name = "heap",
    srcs = [
        "heap.c",
        "heap.cc",
    ],
    hdrs = [
        "heap.h",
        "heap.hh",
    ],
)
v0 (commit) © 2025 @p13i.io | Load balancer proxied to: cs-code-viewer-3:8080 in 3ms.