Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d3373c29 authored by Ying Wang's avatar Ying Wang Committed by Android (Google) Code Review
Browse files

Merge "Better aidl generated dependency" into klp-dev

parents 3084eb99 0f91c636
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -673,6 +673,16 @@ generate_dep_file(const Options& options, const document_item_type* items)

    fprintf(to, "\n");

    // Output "<imported_file>: " so make won't fail if the imported file has
    // been deleted, moved or renamed in incremental build.
    import = g_imports;
    while (import) {
        if (import->filename) {
            fprintf(to, "%s :\n", import->filename);
        }
        import = import->next;
    }

    fclose(to);
}