Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
yukawa committed Nov 19, 2024
1 parent 239e513 commit add042e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/build_defs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,6 @@ def mozc_win32_cc_prod_binary(
executable_name_map = {},
srcs = [],
deps = [],
hdrs = [],
linkopts = [],
cpu = CPU.X64,
static_crt = False,
Expand All @@ -305,7 +304,6 @@ def mozc_win32_cc_prod_binary(
executable_name_map: a map from the branding name to the executable name.
srcs: .cc files to build the executable.
deps: deps to build the executable.
hdrs: header files to build the executable.
linkopts: linker options to build the executable.
cpu: optional. The target CPU architecture.
static_crt: optional. True if the target should be built with static CRT.
Expand Down Expand Up @@ -405,7 +403,7 @@ register_extension_info(

def _win_library_transition_impl(
settings, # @unused
attr):
attr): # @unused
return {
"//command_line_option:features": [],
}
Expand Down Expand Up @@ -490,7 +488,6 @@ def mozc_cc_win32_library(
cc_binary_target_intermediate_name = name + "_fake"
cc_binary_target_name = cc_binary_target_intermediate_name + ".dll"
filegroup_target_name = name + "_lib_group"
cc_binary_target_libname = cc_binary_target_name + ".if.dll"
cc_import_taget_name = name + "_import"

mozc_cc_binary(
Expand Down

0 comments on commit add042e

Please sign in to comment.