diff options
author | 2025-03-24 18:26:22 -0700 | |
---|---|---|
committer | 2025-03-24 18:26:22 -0700 | |
commit | fc5e8dc9c38db6628ed1d9172161187da74b066f (patch) | |
tree | d9f495586f867878d601c34c59eb3c49ec3d5a53 /android/raw_files.go | |
parent | 1248ced0cad29018090e65e3762585cdd774e864 (diff) | |
parent | c2e8b6c102f4b4b44e2568f07d95fc674bbd2ef0 (diff) |
Snap for 13264465 from c2e8b6c102f4b4b44e2568f07d95fc674bbd2ef0 to 25Q2-release
Change-Id: I6875fd165cc96cc880a3ac7842a516a7b9e70978
Diffstat (limited to 'android/raw_files.go')
-rw-r--r-- | android/raw_files.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/android/raw_files.go b/android/raw_files.go index fd371965c..ebba4d145 100644 --- a/android/raw_files.go +++ b/android/raw_files.go @@ -26,6 +26,7 @@ import ( "testing" "github.com/google/blueprint" + "github.com/google/blueprint/syncmap" "github.com/google/blueprint/proptools" ) @@ -213,10 +214,10 @@ type rawFileInfo struct { var rawFileSetKey OnceKey = NewOnceKey("raw file set") -func getRawFileSet(config Config) *SyncMap[string, rawFileInfo] { +func getRawFileSet(config Config) *syncmap.SyncMap[string, rawFileInfo] { return config.Once(rawFileSetKey, func() any { - return &SyncMap[string, rawFileInfo]{} - }).(*SyncMap[string, rawFileInfo]) + return &syncmap.SyncMap[string, rawFileInfo]{} + }).(*syncmap.SyncMap[string, rawFileInfo]) } // ContentFromFileRuleForTests returns the content that was passed to a WriteFileRule for use |