| Index: sky/engine/bindings/BUILD.gn
|
| diff --git a/sky/engine/bindings/BUILD.gn b/sky/engine/bindings/BUILD.gn
|
| index f711219aa963d1377498b51bbbd09d99caf4b659..1ac7d34d044d614c0074f5c78f55789554991ca9 100644
|
| --- a/sky/engine/bindings/BUILD.gn
|
| +++ b/sky/engine/bindings/BUILD.gn
|
| @@ -330,8 +330,15 @@ action("generate_dart_globals") {
|
| ]
|
| }
|
|
|
| +copy("copy_core_dart_files") {
|
| + sources = core_dart_files
|
| + outputs = [
|
| + "$bindings_output_dir/{{source_file_part}}",
|
| + ]
|
| +}
|
| +
|
| action("generate_dart_sky") {
|
| - sources = core_idl_files
|
| + sources = core_idl_files + core_dart_files
|
| script = "$bindings_scripts_dir/compiler.py"
|
|
|
| file_list = "$target_gen_dir/${target_name}_file_list.txt"
|
| @@ -354,6 +361,7 @@ action("generate_dart_sky") {
|
| ]
|
|
|
| deps = [
|
| + ":copy_core_dart_files",
|
| ":compile_idls",
|
| ]
|
| }
|
|
|