@@ -7,29 +7,35 @@ go_library(
77 "createcvdaction.go" ,
88 "createcvdbugreportaction.go" ,
99 "createsnapshotaction.go" ,
10+ "displayaddaction.go" ,
11+ "displaylistaction.go" ,
12+ "displayremoveaction.go" ,
13+ "displayscreenshotaction.go" ,
1014 "execcvdcommandaction.go" ,
1115 "fetchartifactsaction.go" ,
1216 "getscreenrecordingaction.go" ,
17+ "imagedirectories.go" ,
1318 "instancemanager.go" ,
1419 "listcvdsaction.go" ,
15- "operation.go" ,
1620 "listscreenrecordingsaction.go" ,
21+ "operation.go" ,
22+ "resetcvdaction.go" ,
1723 "startcvdaction.go" ,
1824 "userartifacts.go" ,
25+ "validation.go" ,
1926 ],
2027 importpath = "github.com/google/android-cuttlefish/frontend/src/host_orchestrator/orchestrator" ,
2128 visibility = ["//visibility:public" ],
2229 deps = [
23- "//api/v1:api" ,
24- "//orchestrator/artifacts " ,
25- "//orchestrator/cvd" ,
26- "//orchestrator/cvd/output " ,
27- "//orchestrator/debug " ,
28- "//orchestrator/exec " ,
29- "@com_github_google_android_cuttlefish_frontend_src_liboperator//operator " ,
30+ "//src/host_orchestrator/ api/v1:api" ,
31+ "//src/host_orchestrator/ orchestrator/cvd " ,
32+ "//src/host_orchestrator/ orchestrator/cvd/output " ,
33+ "//src/host_orchestrator/orchestrator/debug " ,
34+ "//src/host_orchestrator/ orchestrator/exec " ,
35+ "//src/liboperator/operator " ,
36+ "@com_github_google_btree//:btree " ,
3037 "@com_github_google_uuid//:uuid" ,
3138 "@com_github_gorilla_mux//:mux" ,
32- "@com_github_hashicorp_go_multierror//:go-multierror" ,
3339 ],
3440)
3541
@@ -38,18 +44,20 @@ go_test(
3844 srcs = [
3945 "controller_test.go" ,
4046 "createcvdaction_test.go" ,
47+ "imagedirectories_test.go" ,
4148 "instancemanager_test.go" ,
4249 "listcvdsaction_test.go" ,
4350 "operation_test.go" ,
4451 "userartifacts_test.go" ,
52+ "validation_test.go" ,
4553 ],
4654 embed = [":orchestrator" ],
4755 deps = [
48- "//api/v1:api" ,
49- "//orchestrator/debug" ,
50- "//orchestrator/exec " ,
51- "//orchestrator/testing " ,
52- "@com_github_google_android_cuttlefish_frontend_src_liboperator//operator " ,
56+ "//src/host_orchestrator/ api/v1:api" ,
57+ "//src/host_orchestrator/ orchestrator/debug" ,
58+ "//src/host_orchestrator/ orchestrator/testing " ,
59+ "//src/liboperator/operator " ,
60+ "@com_github_google_btree//:btree " ,
5361 "@com_github_google_go_cmp//cmp" ,
5462 "@com_github_gorilla_mux//:mux" ,
5563 ],
0 commit comments