diff options
Diffstat (limited to 'android')
-rw-r--r-- | android/Android.bp | 1 | ||||
-rw-r--r-- | android/source_file_provider.go | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/android/Android.bp b/android/Android.bp index 62f534c53..f8e3cb39f 100644 --- a/android/Android.bp +++ b/android/Android.bp @@ -93,6 +93,7 @@ bootstrap_go_package { "singleton.go", "singleton_module.go", "soong_config_modules.go", + "source_file_provider.go", "test_asserts.go", "test_suites.go", "testing.go", diff --git a/android/source_file_provider.go b/android/source_file_provider.go new file mode 100644 index 000000000..80bde2a50 --- /dev/null +++ b/android/source_file_provider.go @@ -0,0 +1,11 @@ +package android + +import ( + "github.com/google/blueprint" +) + +type SrcsFileProviderData struct { + SrcPaths Paths +} + +var SrcsFileProviderKey = blueprint.NewProvider(SrcsFileProviderData{}) |