| # Copyright 2024 The Chromium Authors |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| import("//ios/web/public/js_messaging/optimize_ts.gni") |
| |
| source_set("js_image_transcoder") { |
| sources = [ "java_script_image_transcoder.mm" ] |
| deps = [ |
| ":transcode_image_js", |
| "//base", |
| "//ios/web/js_messaging", |
| "//ios/web/js_messaging:web_view_js_utils", |
| "//ios/web/public/js_image_transcoder", |
| ] |
| frameworks = [ "WebKit.framework" ] |
| } |
| |
| source_set("unittests") { |
| testonly = true |
| sources = [ "java_script_image_transcoder_unittest.mm" ] |
| deps = [ |
| ":js_image_transcoder", |
| "//base/test:test_support", |
| "//ios/web/public/js_image_transcoder", |
| "//testing/gtest", |
| "//ui/base:test_support", |
| ] |
| } |
| |
| optimize_ts("transcode_image_js") { |
| output_name = "transcode_image" |
| sources = [ "resources/transcode_image.ts" ] |
| } |