Add dev_compiler and frontend_server to package uploading rule (flutter/engine#13926)

This commit is contained in:
Jonah Williams 2019-11-22 12:27:06 -08:00 committed by GitHub
parent 77d7e4dd89
commit ca6bb55b70
2 changed files with 17 additions and 0 deletions

View File

@ -95,6 +95,7 @@ action("package_incremental_compiler") {
"$root_gen_dir/dart-pkg/front_end/pubspec.yaml",
"$root_gen_dir/dart-pkg/kernel/pubspec.yaml",
"$root_gen_dir/dart-pkg/dev_compiler/pubspec.yaml",
"$root_gen_dir/dart-pkg/frontend_server/pubspec.yaml",
]
args = [

View File

@ -16,6 +16,8 @@ PACKAGES = [
"front_end",
"dev_compiler",
"flutter_frontend_server",
"frontend_server",
"dev_compiler",
]
VM_PUBSPEC = r'''name: vm
@ -84,6 +86,19 @@ dependencies:
source_maps: any
'''
FRONTEND_SERVER_PUBSPEC = r'''name: frontend_server
version: 0.0.1
environment:
sdk: '>=2.2.2 < 3.0.0'
dependencies:
build_integration: any
vm: any
dev_compiler: any
front_end: any
kernel: any
args: any
'''
PUBSPECS = {
'vm': VM_PUBSPEC,
'build_integration': BUILD_INTEGRATION_PUBSPEC,
@ -91,6 +106,7 @@ PUBSPECS = {
'kernel': KERNEL_PUBSPEC,
'front_end': FRONT_END_PUBSPEC,
'dev_compiler': DEV_COMPILER_PUBSPEC,
'frontend_server': FRONTEND_SERVER_PUBSPEC,
}
def main():