view schwab_trader/BUILD @ 278:8d560f50ed4c

Improve infinite canvas interactions and browser chrome Render Lucide icons directly with Raylib, add searchable icon browsing, robust text editing, entity lifecycle animations, z-order-safe input, semantic themes, and animated editable browser controls. Document rendering, pinning, context, and component extension for future agents. Co-authored-by: Copilot <[email protected]> Copilot-Session: f68442b1-fa8f-46a0-9689-81710613bbd4
author MrJuneJune <me@mrjunejune.com>
date Mon, 17 Aug 2026 22:16:14 -0700
parents eb8b4230fdb9
children
line wrap: on
line source

load("@rules_python//python:py_binary.bzl", "py_binary")
load("@rules_python//python:py_library.bzl", "py_library")
load("@rules_python//python:py_test.bzl", "py_test")

py_library(
    name = "schwab_client",
    srcs = [
        "__init__.py",
        "schwab_client.py",
    ],
    visibility = ["//visibility:public"],
)

py_library(
    name = "schwab_dashboard_lib",
    srcs = [
        "__init__.py",
        "dashboard.py",
    ],
    deps = [":schwab_client"],
)

py_library(
    name = "schwab_dashboard_server_lib",
    srcs = [
        "__init__.py",
        "dashboard_server.py",
    ],
    deps = [
        ":schwab_client",
        ":schwab_dashboard_lib",
    ],
)

py_binary(
    name = "schwab_cli",
    srcs = ["schwab_cli.py"],
    main = "schwab_cli.py",
    deps = [":schwab_client"],
)

py_binary(
    name = "schwab_dashboard",
    srcs = ["dashboard_server.py"],
    main = "dashboard_server.py",
    deps = [
        ":schwab_client",
        ":schwab_dashboard_lib",
    ],
)

py_test(
    name = "schwab_client_test",
    srcs = ["schwab_client_test.py"],
    deps = [":schwab_client"],
)

py_test(
    name = "dashboard_test",
    srcs = ["dashboard_test.py"],
    deps = [
        ":schwab_client",
        ":schwab_dashboard_lib",
        ":schwab_dashboard_server_lib",
    ],
)