Skip to content

Commit

Permalink
Move buck2_interpreter_for_build into app
Browse files Browse the repository at this point in the history
Summary: As per our general plan to move things across.

Reviewed By: stepancheg

Differential Revision: D40214957

fbshipit-source-id: 5d6b0cb19a12cb99e783b2a3633cfe7717f58900
  • Loading branch information
ndmitchell authored and facebook-github-bot committed Oct 9, 2022
1 parent dca3894 commit f3e18f9
Show file tree
Hide file tree
Showing 53 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ members = [
# @oss-disable: "attic/uniplate",
# @oss-disable: "attic/uniplate_derive",
"app/buck2_grpc",
"app/buck2_interpreter_for_build",
"app/buck2_test",
"app/buck2_test_api",
"app/buck2_test_proto",
Expand All @@ -27,7 +28,6 @@ members = [
"buck2_client",
"buck2_common",
"buck2_interpreter",
"buck2_interpreter_for_build",
"buck2_node",
"buck2_execute",
"buck2_execute_impl",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ thiserror = { workspace = true }
tracing = { workspace = true }
twox-hash = { workspace = true }

dice = { path = "../dice/dice" }
dice = { path = "../../dice/dice" }
gazebo = { workspace = true }
starlark = { workspace = true }
starlark_map = { workspace = true }

buck2_common = { path = "../buck2_common" }
buck2_core = { path = "../buck2_core" }
buck2_node = { path = "../buck2_node" }
buck2_interpreter = { path = "../buck2_interpreter" }
buck2_query = { path = "../buck2_query" }
buck2_query_parser = { path = "../app/buck2_query_parser" }
buck2_common = { path = "../../buck2_common" }
buck2_core = { path = "../../buck2_core" }
buck2_node = { path = "../../buck2_node" }
buck2_interpreter = { path = "../../buck2_interpreter" }
buck2_query = { path = "../../buck2_query" }
buck2_query_parser = { path = "../buck2_query_parser" }
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion app/buck2_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ buck2_core = { path = "../../buck2_core" }
buck2_data = { path = "../../buck2_data" }
buck2_execute_impl = { path = "../../buck2_execute_impl" }
buck2_interpreter = { path = "../../buck2_interpreter" }
buck2_interpreter_for_build = { path = "../../buck2_interpreter_for_build" }
buck2_interpreter_for_build = { path = "../buck2_interpreter_for_build" }
buck2_node = { path = "../../buck2_node" }
buck2_server_ctx = { path = "../../buck2_server_ctx" }
cli_proto = { path = "../../cli_proto" }
Expand Down
2 changes: 1 addition & 1 deletion app/buck2_test/TARGETS
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ rust_library(
"fbsource//third-party/rust:tracing",
"fbsource//third-party/rust:uuid",
"//buck2/app/buck2_grpc:buck2_grpc",
"//buck2/app/buck2_interpreter_for_build:buck2_interpreter_for_build",
"//buck2/app/buck2_test_api:buck2_test_api",
"//buck2/buck2_build_api:buck2_build_api",
"//buck2/buck2_common:buck2_common",
Expand All @@ -30,7 +31,6 @@ rust_library(
"//buck2/buck2_execute:buck2_execute",
"//buck2/buck2_execute_impl:buck2_execute_impl",
"//buck2/buck2_interpreter:buck2_interpreter",
"//buck2/buck2_interpreter_for_build:buck2_interpreter_for_build",
"//buck2/buck2_node:buck2_node",
"//buck2/buck2_server_ctx:buck2_server_ctx",
"//buck2/cli_proto:cli_proto",
Expand Down
2 changes: 1 addition & 1 deletion buck2_audit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ buck2_data = { path = "../buck2_data" }
buck2_events = { path = "../buck2_events" }
buck2_execute = { path = "../buck2_execute" }
buck2_interpreter = { path = "../buck2_interpreter" }
buck2_interpreter_for_build = { path = "../buck2_interpreter_for_build" }
buck2_interpreter_for_build = { path = "../app/buck2_interpreter_for_build" }
buck2_node = { path = "../buck2_node" }
buck2_query = { path = "../buck2_query" }
buck2_server_ctx = { path = "../buck2_server_ctx" }
Expand Down
2 changes: 1 addition & 1 deletion buck2_audit/TARGETS
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ rust_library(
"fbsource//third-party/rust:serde",
"fbsource//third-party/rust:serde_json",
"fbsource//third-party/rust:thiserror",
"//buck2/app/buck2_interpreter_for_build:buck2_interpreter_for_build",
"//buck2/buck2_build_api:buck2_build_api",
"//buck2/buck2_client:buck2_client",
"//buck2/buck2_common:buck2_common",
Expand All @@ -28,7 +29,6 @@ rust_library(
"//buck2/buck2_events:buck2_events",
"//buck2/buck2_execute:buck2_execute",
"//buck2/buck2_interpreter:buck2_interpreter",
"//buck2/buck2_interpreter_for_build:buck2_interpreter_for_build",
"//buck2/buck2_node:buck2_node",
"//buck2/buck2_query:buck2_query",
"//buck2/buck2_server_ctx:buck2_server_ctx",
Expand Down
2 changes: 1 addition & 1 deletion buck2_build_api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ buck2_data = { path = "../buck2_data" }
buck2_events = { path = "../buck2_events" }
buck2_execute = { path = "../buck2_execute" }
buck2_interpreter = { path = "../buck2_interpreter" }
buck2_interpreter_for_build = { path = "../buck2_interpreter_for_build" }
buck2_interpreter_for_build = { path = "../app/buck2_interpreter_for_build" }
buck2_node = { path = "../buck2_node" }
buck2_query = { path = "../buck2_query" }
buck2_query_parser = { path = "../app/buck2_query_parser" }
Expand Down
2 changes: 1 addition & 1 deletion buck2_build_api/TARGETS
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ rust_library(
"fbsource//third-party/rust:tokio",
"fbsource//third-party/rust:tokio-stream",
"fbsource//third-party/rust:tracing",
"//buck2/app/buck2_interpreter_for_build:buck2_interpreter_for_build",
"//buck2/app/buck2_query_parser:buck2_query_parser",
"//buck2/app/buck2_test_api:buck2_test_api",
"//buck2/buck2_build_api_derive:buck2_build_api_derive",
Expand All @@ -57,7 +58,6 @@ rust_library(
"//buck2/buck2_events:buck2_events",
"//buck2/buck2_execute:buck2_execute",
"//buck2/buck2_interpreter:buck2_interpreter",
"//buck2/buck2_interpreter_for_build:buck2_interpreter_for_build",
"//buck2/buck2_node:buck2_node",
"//buck2/buck2_query:buck2_query",
"//buck2/cli_proto:cli_proto",
Expand Down
2 changes: 1 addition & 1 deletion buck2_bxl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ buck2_core = { path = "../buck2_core" }
buck2_data = { path = "../buck2_data" }
buck2_execute = { path = "../buck2_execute" }
buck2_interpreter = { path = "../buck2_interpreter" }
buck2_interpreter_for_build = { path = "../buck2_interpreter_for_build" }
buck2_interpreter_for_build = { path = "../app/buck2_interpreter_for_build" }
buck2_node = { path = "../buck2_node" }
buck2_query = { path = "../buck2_query" }
buck2_query_parser = { path = "../app/buck2_query_parser" }
Expand Down
2 changes: 1 addition & 1 deletion buck2_bxl/TARGETS
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ rust_library(
"fbsource//third-party/rust:serde_json",
"fbsource//third-party/rust:thiserror",
"fbsource//third-party/rust:tokio",
"//buck2/app/buck2_interpreter_for_build:buck2_interpreter_for_build",
"//buck2/app/buck2_query_parser:buck2_query_parser",
"//buck2/buck2_build_api:buck2_build_api",
"//buck2/buck2_common:buck2_common",
Expand All @@ -31,7 +32,6 @@ rust_library(
"//buck2/buck2_events:buck2_events",
"//buck2/buck2_execute:buck2_execute",
"//buck2/buck2_interpreter:buck2_interpreter",
"//buck2/buck2_interpreter_for_build:buck2_interpreter_for_build",
"//buck2/buck2_node:buck2_node",
"//buck2/buck2_query:buck2_query",
"//buck2/buck2_server_ctx:buck2_server_ctx",
Expand Down
2 changes: 1 addition & 1 deletion buck2_server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ buck2_execute = { path = "../buck2_execute" }
buck2_execute_impl = { path = "../buck2_execute_impl" }
buck2_forkserver = { path = "../app/buck2_forkserver" }
buck2_interpreter = { path = "../buck2_interpreter" }
buck2_interpreter_for_build = { path = "../buck2_interpreter_for_build" }
buck2_interpreter_for_build = { path = "../app/buck2_interpreter_for_build" }
buck2_server_ctx = { path = "../buck2_server_ctx" }
cli_proto = { path = "../cli_proto" }
buck2_events = { path = "../buck2_events" }
Expand Down
2 changes: 1 addition & 1 deletion buck2_server/TARGETS
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ rust_library(
"fbsource//third-party/rust:tonic",
"fbsource//third-party/rust:tracing",
"//buck2/app/buck2_forkserver:buck2_forkserver",
"//buck2/app/buck2_interpreter_for_build:buck2_interpreter_for_build",
"//buck2/buck2_build_api:buck2_build_api",
"//buck2/buck2_common:buck2_common",
"//buck2/buck2_core:buck2_core",
Expand All @@ -43,7 +44,6 @@ rust_library(
"//buck2/buck2_execute:buck2_execute",
"//buck2/buck2_execute_impl:buck2_execute_impl",
"//buck2/buck2_interpreter:buck2_interpreter",
"//buck2/buck2_interpreter_for_build:buck2_interpreter_for_build",
"//buck2/buck2_server_ctx:buck2_server_ctx",
"//buck2/cli_proto:cli_proto",
"//buck2/dice/dice:dice",
Expand Down
2 changes: 1 addition & 1 deletion buck2_server_commands/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ buck2_core = { path = "../buck2_core" }
buck2_data = { path = "../buck2_data" }
buck2_events = { path = "../buck2_events" }
buck2_execute = { path = "../buck2_execute" }
buck2_interpreter_for_build = { path = "../buck2_interpreter_for_build" }
buck2_interpreter_for_build = { path = "../app/buck2_interpreter_for_build" }
buck2_node = { path = "../buck2_node" }
buck2_query = { path = "../buck2_query" }
buck2_server_ctx = { path = "../buck2_server_ctx" }
Expand Down
2 changes: 1 addition & 1 deletion buck2_server_commands/TARGETS
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ rust_library(
"fbsource//third-party/rust:tonic",
"fbsource//third-party/rust:tracing",
"fbsource//third-party/rust:tracing-subscriber",
"//buck2/app/buck2_interpreter_for_build:buck2_interpreter_for_build",
"//buck2/buck2_build_api:buck2_build_api",
"//buck2/buck2_common:buck2_common",
"//buck2/buck2_core:buck2_core",
"//buck2/buck2_data:buck2_data",
"//buck2/buck2_events:buck2_events",
"//buck2/buck2_execute:buck2_execute",
"//buck2/buck2_interpreter_for_build:buck2_interpreter_for_build",
"//buck2/buck2_node:buck2_node",
"//buck2/buck2_query:buck2_query",
"//buck2/buck2_server_ctx:buck2_server_ctx",
Expand Down

0 comments on commit f3e18f9

Please sign in to comment.