@@ -10,14 +10,12 @@ group("flutter") {
1010 public_deps = [
1111 " $flutter_root /lib/snapshot:generate_snapshot_bin" ,
1212 " $flutter_root /lib/snapshot:kernel_platform_files" ,
13+ " $flutter_root /shell/testing" ,
1314 " $flutter_root /sky" ,
14- " $flutter_root /third_party/txt" ,
1515 ]
1616
1717 if (flutter_runtime_mode != " debug" ) {
18- public_deps += [
19- " $flutter_root /lib/snapshot:entry_points_json_files" ,
20- ]
18+ public_deps += [ " $flutter_root /lib/snapshot:entry_points_json_files" ]
2119 }
2220
2321 if (! is_fuchsia && ! is_fuchsia_host ) {
@@ -45,20 +43,24 @@ group("flutter") {
4543 " $flutter_root /shell/platform/embedder:flutter_embedder_framework" ,
4644 ]
4745 }
48- if (! is_win ) {
49- public_deps += [
50- " $flutter_root /shell/platform/embedder:embedder_unittests" ,
51- " $flutter_root /shell/platform/embedder:flutter_engine" ,
52- ]
53- }
46+
5447 public_deps += [
5548 " $flutter_root /flow:flow_unittests" ,
5649 " $flutter_root /fml:fml_unittests" ,
50+ " $flutter_root /runtime:runtime_unittests" ,
51+ " $flutter_root /shell/common:shell_unittests" ,
5752 " $flutter_root /sky/engine/wtf:wtf_unittests" ,
5853 " $flutter_root /synchronization:synchronization_unittests" ,
5954 " $flutter_root /third_party/txt:txt_unittests" ,
6055 " //garnet/public/lib/fxl:fxl_unittests" ,
6156 ]
57+
58+ if (! is_win ) {
59+ public_deps += [
60+ " $flutter_root /shell/platform/embedder:embedder_unittests" ,
61+ " $flutter_root /shell/platform/embedder:flutter_engine" ,
62+ ]
63+ }
6264 }
6365}
6466
@@ -74,59 +76,47 @@ if (is_fuchsia) {
7476 " $flutter_root /content_handler:aot" ,
7577 ]
7678 if (flutter_runtime_mode != " release" ) {
77- deps += [
78- " //third_party/dart/runtime/observatory:embedded_archive_observatory" ,
79- ]
79+ deps += [ " //third_party/dart/runtime/observatory:embedded_archive_observatory" ]
8080 }
8181
8282 binary = " flutter_aot_runner"
8383
8484 if (flutter_runtime_mode != " release" ) {
85- resources = [
86- {
87- path = rebase_path (
88- " $root_gen_dir /observatory/embedded_archive_observatory.tar" )
89- dest = " observatory.tar"
90- },
91- ]
85+ resources = [ {
86+ path = rebase_path (
87+ " $root_gen_dir /observatory/embedded_archive_observatory.tar" )
88+ dest = " observatory.tar"
89+ } ]
9290 }
9391
94- meta = [
95- {
96- path = rebase_path (" content_handler/meta/sandbox" )
97- dest = " sandbox"
98- },
99- ]
92+ meta = [ {
93+ path = rebase_path (" content_handler/meta/sandbox" )
94+ dest = " sandbox"
95+ } ]
10096 }
10197
10298 package (" flutter_jit_runner" ) {
10399 deps = [
104100 " $flutter_root /content_handler:jit" ,
105101 ]
106102 if (flutter_runtime_mode != " release" ) {
107- deps += [
108- " //third_party/dart/runtime/observatory:embedded_archive_observatory" ,
109- ]
103+ deps += [ " //third_party/dart/runtime/observatory:embedded_archive_observatory" ]
110104 }
111105
112106 binary = " flutter_jit_runner"
113107
114108 if (flutter_runtime_mode != " release" ) {
115- resources = [
116- {
117- path = rebase_path (
118- " $root_gen_dir /observatory/embedded_archive_observatory.tar" )
119- dest = " observatory.tar"
120- },
121- ]
109+ resources = [ {
110+ path = rebase_path (
111+ " $root_gen_dir /observatory/embedded_archive_observatory.tar" )
112+ dest = " observatory.tar"
113+ } ]
122114 }
123115
124- meta = [
125- {
126- path = rebase_path (" content_handler/meta/sandbox" )
127- dest = " sandbox"
128- },
129- ]
116+ meta = [ {
117+ path = rebase_path (" content_handler/meta/sandbox" )
118+ dest = " sandbox"
119+ } ]
130120 }
131121} else {
132122 group (" dist" ) {
0 commit comments