File tree Expand file tree Collapse file tree
testing/ios_scenario_app/ios Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,19 +9,9 @@ import("$dart_src/build/dart/copy_tree.gni")
99
1010if (build_engine_artifacts ) {
1111 if (flutter_prebuilt_dart_sdk ) {
12- copy_trees (" _copy_trees" ) {
13- sources = [
14- {
15- target = " copy_dart_sdk"
16- visibility = [ " :dart_sdk" ]
17- source = prebuilt_dart_sdk
18- dest = " $root_out_dir /dart-sdk"
19- ignore_patterns = " {}"
20- },
21- ]
22- }
23- group (" dart_sdk" ) {
24- public_deps = [ " :copy_dart_sdk" ]
12+ copy_tree (" dart_sdk" ) {
13+ source = prebuilt_dart_sdk
14+ dest = " $root_out_dir /dart-sdk"
2515 }
2616 } else {
2717 group (" dart_sdk" ) {
Original file line number Diff line number Diff line change 3131 "config" : " ci/host_debug_test" ,
3232 "targets" : [
3333 " flutter:unittests" ,
34- " flutter/build/dart:copy_dart_sdk " ,
34+ " flutter/build/dart:dart_sdk " ,
3535 " flutter/shell/testing" ,
3636 " flutter/tools/path_ops"
3737 ]
7878 "config" : " ci/host_profile_test" ,
7979 "targets" : [
8080 " flutter:unittests" ,
81- " flutter/build/dart:copy_dart_sdk " ,
81+ " flutter/build/dart:dart_sdk " ,
8282 " flutter/shell/testing" ,
8383 " flutter/tools/path_ops"
8484 ]
131131 "config" : " ci/host_release_test" ,
132132 "targets" : [
133133 " flutter:unittests" ,
134- " flutter/build/dart:copy_dart_sdk " ,
134+ " flutter/build/dart:dart_sdk " ,
135135 " flutter/display_list:display_list_benchmarks" ,
136136 " flutter/display_list:display_list_builder_benchmarks" ,
137137 " flutter/display_list:display_list_region_benchmarks" ,
Original file line number Diff line number Diff line change 2828 "targets" : [
2929 " flutter/tools/font_subset" ,
3030 " flutter:unittests" ,
31- " flutter/build/dart:copy_dart_sdk " ,
31+ " flutter/build/dart:dart_sdk " ,
3232 " flutter/shell/platform/common/client_wrapper:client_wrapper_unittests" ,
3333 " flutter/shell/platform/common:common_cpp_core_unittests" ,
3434 " flutter/shell/platform/common:common_cpp_unittests" ,
Original file line number Diff line number Diff line change 2323 "ninja" : {
2424 "config" : " ci/host_release_benchmarks" ,
2525 "targets" : [
26- " flutter/build/dart:copy_dart_sdk " ,
26+ " flutter/build/dart:dart_sdk " ,
2727 " flutter/display_list:display_list_benchmarks" ,
2828 " flutter/display_list:display_list_builder_benchmarks" ,
2929 " flutter/display_list:display_list_region_benchmarks" ,
Original file line number Diff line number Diff line change @@ -39,22 +39,17 @@ copy("copy_info_plist") {
3939 outputs = [ " $_app_framework_dir /Info.plist" ]
4040}
4141
42- copy_trees (" scenario_ios" ) {
43- sources = [
44- {
45- target = " copy_ios_xcodeproj"
46- visibility = [ " :*" ]
47- source = " ."
48- dest = " $root_out_dir /ios_scenario_app"
49-
50- # Ignore any stale App.framework or Flutter.xcframework files from
51- # historical builds.
52- # This can eventually be set to "{}" when all CI builder caches have been
53- # flushed that might still have these stale gitignored files from previous
54- # build scripts.
55- ignore_patterns = " *.*framework"
56- },
57- ]
42+ copy_tree (" copy_ios_xcodeproj" ) {
43+ visibility = [ " :*" ]
44+ source = " ."
45+ dest = " $root_out_dir /ios_scenario_app"
46+
47+ # Ignore any stale App.framework or Flutter.xcframework files from
48+ # historical builds.
49+ # This can eventually be set to "{}" when all CI builder caches have been
50+ # flushed that might still have these stale gitignored files from previous
51+ # build scripts.
52+ exclude = " *.*framework"
5853}
5954
6055group (" ios" ) {
You can’t perform that action at this time.
0 commit comments