[iOS Blink] Fix PNGCodec.DecodeGamma unit test failure

https://crrev.com/c/4975642 added PNGCodec.DecodeGamma unit test
and its png files. But it missed adding the png files to a bundle
data for iOS. So the test failed on iOS port because it couldn't
find the png files.

TEST: PNGCodec.DecodeGamma
Bug: 1427365
Change-Id: Ie4f6e991b8a082fe40610cb48eeaed6e7e092b8e
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4996945
Reviewed-by: Ian Vollick <[email protected]>
Commit-Queue: Ian Vollick <[email protected]>
Reviewed-by: Avi Drissman <[email protected]>
Cr-Commit-Position: refs/heads/main@{#1218259}
diff --git a/ui/gfx/PRESUBMIT.py b/ui/gfx/PRESUBMIT.py
index 3c650e4..7e4f459 100644
--- a/ui/gfx/PRESUBMIT.py
+++ b/ui/gfx/PRESUBMIT.py
@@ -18,7 +18,10 @@
         sys.path.append(input_api.change.RepositoryRoot())
         from build.ios import presubmit_support
         results += presubmit_support.CheckBundleData(
-            input_api, output_api, 'test/data/unit_tests_bundle_data')
+            input_api, output_api, 'test/data/codec/unit_tests_bundle_data')
+        results += presubmit_support.CheckBundleData(
+            input_api, output_api,
+            'test/data/compositor/unit_tests_bundle_data')
     finally:
         sys.path = old_sys_path
     return results