mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Add dev_compiler and frontend_server to package uploading rule (flutter/engine#13926)
This commit is contained in:
parent
77d7e4dd89
commit
ca6bb55b70
@ -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 = [
|
||||
|
||||
@ -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():
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user