gn2bp: Add get_tool_files to the Sanitizer

Test: ./update_results.sh
Change-Id: I1984c63c6a40172d35029d9a231db187e917e888
diff --git a/tools/gn2bp/gen_android_bp b/tools/gn2bp/gen_android_bp
index 1991173..17b5845 100755
--- a/tools/gn2bp/gen_android_bp
+++ b/tools/gn2bp/gen_android_bp
@@ -756,6 +756,13 @@
     files = self.target.sources.union(self.target.inputs)
     return {gn_utils.label_to_path(file) for file in files if is_supported_source_file(file)}
 
+  def get_tool_files(self):
+    # gn treats inputs and sources for actions equally.
+    # soong only supports source files inside srcs, non-source files are added as
+    # tool_files dependency.
+    files = self.target.sources.union(self.target.inputs)
+    return {gn_utils.label_to_path(file) for file in files if not is_supported_source_file(file)}
+
   def _sanitize_args(self):
     # Handle passing parameters via response file by piping them into the script
     # and reading them from /dev/stdin.
@@ -946,6 +953,7 @@
     module.genrule_headers.add(module.name)
   target.inputs = sanitizer.get_inputs()
   module.srcs = sanitizer.get_srcs()
+  module.tool_files = sanitizer.get_tool_files()
 
   if target.script == '//base/android/jni_generator/jni_generator.py':
     # android_jar.classes should be part of the tools as it list implicit classes
@@ -964,13 +972,6 @@
   script = gn_utils.label_to_path(target.script)
   module.tool_files.add(script)
 
-  # gn treats inputs and sources for actions equally.
-  # soong only supports source files inside srcs, non-source files are added as
-  # tool_files dependency.
-  for it in target.sources.union(target.inputs):
-    if not is_supported_source_file(it):
-      module.tool_files.add(gn_utils.label_to_path(it))
-
   blueprint.add_module(module)
   return module