File tree 4 files changed +2
-12
lines changed
4 files changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -55,10 +55,6 @@ executable("impeller_unittests") {
55
55
" blobcat:blobcat_unittests" ,
56
56
" compiler:compiler_unittests" ,
57
57
" geometry:geometry_unittests" ,
58
-
59
- # FML depends on the Dart VM for tracing and getting the current
60
- # timepoint.
61
- " //flutter/runtime:libdart" ,
62
58
]
63
59
64
60
if (impeller_supports_rendering ) {
Original file line number Diff line number Diff line change @@ -29,10 +29,6 @@ impeller_component("blobcat") {
29
29
" :blobcat_lib" ,
30
30
" ../base" ,
31
31
" //flutter/fml" ,
32
-
33
- # FML depends on the Dart VM for tracing and getting the current
34
- # timepoint.
35
- " //flutter/runtime:libdart" ,
36
32
]
37
33
}
38
34
Original file line number Diff line number Diff line change @@ -44,10 +44,6 @@ impeller_component("impellerc") {
44
44
45
45
deps = [
46
46
" :compiler_lib" ,
47
-
48
- # FML depends on the Dart VM for tracing and getting the current
49
- # timepoint.
50
- " //flutter/runtime:libdart" ,
51
47
]
52
48
}
53
49
Original file line number Diff line number Diff line change 4
4
5
5
#include < filesystem>
6
6
7
+ #include " flutter/fml/backtrace.h"
7
8
#include " flutter/fml/command_line.h"
8
9
#include " flutter/fml/file.h"
9
10
#include " flutter/fml/macros.h"
@@ -18,6 +19,7 @@ namespace impeller {
18
19
namespace compiler {
19
20
20
21
bool Main (const fml::CommandLine& command_line) {
22
+ fml::InstallCrashHandler ();
21
23
if (command_line.HasOption (" help" )) {
22
24
Switches::PrintHelp (std::cout);
23
25
return true ;
You can’t perform that action at this time.
0 commit comments