| Index: device/usb/BUILD.gn
|
| diff --git a/device/usb/BUILD.gn b/device/usb/BUILD.gn
|
| index d310a950b1d1f0ef2baf9f44d76971bffc5ebadf..ee793d3295e59acba64b49df339eef93182c422e 100644
|
| --- a/device/usb/BUILD.gn
|
| +++ b/device/usb/BUILD.gn
|
| @@ -45,11 +45,17 @@ source_set("usb") {
|
|
|
| action("usb_device_ids") {
|
| script = "//device/usb/tools/usb_ids.py"
|
| - inputs = [ source_ids ]
|
| - outputs = [ generated_ids ]
|
| + inputs = [
|
| + source_ids,
|
| + ]
|
| + outputs = [
|
| + generated_ids,
|
| + ]
|
| args = [
|
| - "-i", rebase_path(source_ids, root_build_dir),
|
| - "-o", rebase_path(generated_ids, root_build_dir),
|
| + "-i",
|
| + rebase_path(source_ids, root_build_dir),
|
| + "-o",
|
| + rebase_path(generated_ids, root_build_dir),
|
| ]
|
|
|
| # Only the device_usb target can depend on us.
|
|
|