summaryrefslogtreecommitdiff
path: root/cc
diff options
context:
space:
mode:
author Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> 2025-03-18 12:08:58 -0700
committer Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> 2025-03-18 12:08:58 -0700
commit3a44dc510be0a8761ac0739b25c9e73db8d91650 (patch)
tree31450fb88daa028ea8b69760db53d628eeecd758 /cc
parent70d843bea9dfa6019163d39be66a3812727425ed (diff)
parentab3911674d9682b9a8ff70dcf8d1443c92009d7d (diff)
Merge "Don't call `getArguments` unnecessarily" into main am: ab3911674d
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/3549479 Change-Id: Ic48cf5caffe44df6ea4943ff34de699642c20956 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'cc')
-rw-r--r--cc/compdb.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cc/compdb.go b/cc/compdb.go
index 4132e090b..3818e9c46 100644
--- a/cc/compdb.go
+++ b/cc/compdb.go
@@ -193,7 +193,7 @@ func generateCompdbProject(compiledModule CompiledInterface, ctx android.Singlet
}
builds[src.String()] = compDbEntry{
Directory: android.AbsSrcDirForExistingUseCases(),
- Arguments: getArguments(src, ctx, ccModule, ccPath, cxxPath),
+ Arguments: args,
File: src.String(),
}
}