@@ -13,7 +13,7 @@ descriptions below and make sure the operations before running them.
1313git clone https://github.com/google/mozc.git
1414cd mozc/src
1515
16- bazelisk build package --config oss_linux --config release_build
16+ bazelisk build package --config release_build
1717```
1818
1919` bazel-bin/unix/mozc.zip ` contains built files.
@@ -114,7 +114,7 @@ You should be able to build Mozc for Linux desktop as follows, assuming
114114` bazelisk ` is in your ` $PATH ` .
115115
116116``` sh
117- bazelisk build package --config oss_linux --config release_build
117+ bazelisk build package --config release_build
118118```
119119
120120` package ` is an alias to build Mozc executables and archive them into
@@ -172,23 +172,23 @@ git update-index --no-assume-unchanged src/config.bzl
172172### Run all tests
173173
174174``` sh
175- bazelisk test ... --config oss_linux -- build_tests_only -c dbg
175+ bazelisk test ... --build_tests_only -c dbg
176176```
177177
178178* ` ... ` means all targets under the current and subdirectories.
179179
180180### Run tests under the specific directories
181181
182182``` sh
183- bazelisk test base/... composer/... --config oss_linux -- build_tests_only -c dbg
183+ bazelisk test base/... composer/... --build_tests_only -c dbg
184184```
185185
186186* ` <dir>/... ` means all targets under the ` <dir>/ ` directory.
187187
188188### Run tests without the specific directories
189189
190190``` sh
191- bazelisk test ... --config oss_linux -- build_tests_only -c dbg -- -base/...
191+ bazelisk test ... --build_tests_only -c dbg -- -base/...
192192```
193193
194194* ` -- ` means the end of the flags which start from ` - ` .
@@ -197,15 +197,15 @@ bazelisk test ... --config oss_linux --build_tests_only -c dbg -- -base/...
197197### Run the specific test
198198
199199``` sh
200- bazelisk test base:util_test --config oss_linux - c dbg
200+ bazelisk test base:util_test -c dbg
201201```
202202
203203* ` util_test ` is defined in ` base/BUILD.bazel ` .
204204
205205### Output logs to stderr
206206
207207```
208- bazelisk test base:util_test --config oss_linux -- test_arg=--stderrthreshold=0 --test_output=all
208+ bazelisk test base:util_test --test_arg=--stderrthreshold=0 --test_output=all
209209```
210210
211211* The ` --test_arg=--stderrthreshold=0 --test_output=all ` flags show the
0 commit comments