naiveproxy/tools/gn/format_test_data/034.gn

14 lines
511 B
Plaintext
Raw Normal View History

2018-01-28 21:32:06 +03:00
# Special case for 'args': If args[N] starts with '-' and args[N+1] is a call to
# rebase_path, keep them as a pair, rather than breaking into individual items.
action("wee") {
if (something) {
args = [
"--depfile", rebase_path(depfile, root_build_dir),
"--android-sdk", rebase_path(android_sdk, root_build_dir),
"--android-sdk-tools",
rebase_path(android_sdk_build_tools, root_build_dir),
"--android-manifest", rebase_path(android_manifest, root_build_dir),
]
}
}