Skip to content

Commit

Permalink
Update meson.bzl
Browse files Browse the repository at this point in the history
Place dictionary items in lexicographical order
  • Loading branch information
allsey87 authored Jul 9, 2024
1 parent 6ee5fbf commit c7bcf7d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions foreign_cc/meson.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -155,10 +155,6 @@ def _attrs():
attrs = dict(CC_EXTERNAL_RULE_ATTRIBUTES)

attrs.update({
"setup_args": attr.string_list(
doc = "Arguments for the Meson setup command",
mandatory = False,
),
"build_args": attr.string_list(
doc = "Arguments for the Meson build command",
mandatory = False,
Expand All @@ -178,6 +174,10 @@ def _attrs():
mandatory = False,
default = {},
),
"setup_args": attr.string_list(
doc = "Arguments for the Meson setup command",
mandatory = False,
),
})
return attrs

Expand Down

0 comments on commit c7bcf7d

Please sign in to comment.