Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / tools / gn / format_test_data / 034.gn
blob33f5eadceb5262be25cc9ec2a169638ad5dbbe5a
1 # Special case for 'args': If args[N] starts with '-' and args[N+1] is a call to
2 # rebase_path, keep them as a pair, rather than breaking into individual items.
3 action("wee") {
4   if (something) {
5     args = [
6       "--depfile", rebase_path(depfile, root_build_dir),
7       "--android-sdk", rebase_path(android_sdk, root_build_dir),
8       "--android-sdk-tools",
9           rebase_path(android_sdk_build_tools, root_build_dir),
10       "--android-manifest", rebase_path(android_manifest, root_build_dir),
11     ]
12   }