Skip to content

Commit

Permalink
Remove quotes from around the extension param in register_extension_info
Browse files Browse the repository at this point in the history
Tested:
    TAP --sample ran all affected tests and none failed

PiperOrigin-RevId: 613403452
  • Loading branch information
Mozc team authored and hiroyuki-komatsu committed Mar 7, 2024
1 parent bb2e4b8 commit 8ba23d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/bazel/qt.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def mozc_cc_qt_library(name, deps = [], **kwargs):
)

register_extension_info(
extension = "mozc_cc_qt_library",
extension = mozc_cc_qt_library,
label_regex_for_dep = "{extension_name}",
)

Expand All @@ -71,7 +71,7 @@ def mozc_cc_qt_binary(name, deps = [], **kwargs):
)

register_extension_info(
extension = "mozc_cc_qt_binary",
extension = mozc_cc_qt_binary,
label_regex_for_dep = "{extension_name}",
)

Expand Down Expand Up @@ -159,6 +159,6 @@ def mozc_macos_qt_application(name, bundle_name, deps):
)

register_extension_info(
extension = "mozc_macos_qt_application",
extension = mozc_macos_qt_application,
label_regex_for_dep = "{extension_name}",
)

0 comments on commit 8ba23d3

Please sign in to comment.