view schwab_trader/BUILD @ 261:b401627fc49e

Add JRPG mock flows and interactive previews Add scripted mock SSE commands, custom event forwarding, animated chat turns, full-height message navigation, and a cyberpunk resume dossier. Co-authored-by: Copilot <[email protected]>
author MrJuneJune <mrjunejune@users.noreply.github.com>
date Wed, 05 Aug 2026 20:38:32 -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",
    ],
)