summaryrefslogtreecommitdiffstats
path: root/chromium/build/fuchsia/device_target.py
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2020-10-12 14:27:29 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2020-10-13 09:35:20 +0000
commitc30a6232df03e1efbd9f3b226777b07e087a1122 (patch)
treee992f45784689f373bcc38d1b79a239ebe17ee23 /chromium/build/fuchsia/device_target.py
parent7b5b123ac58f58ffde0f4f6e488bcd09aa4decd3 (diff)
BASELINE: Update Chromium to 85.0.4183.14085-based
Change-Id: Iaa42f4680837c57725b1344f108c0196741f6057 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/build/fuchsia/device_target.py')
-rw-r--r--chromium/build/fuchsia/device_target.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/chromium/build/fuchsia/device_target.py b/chromium/build/fuchsia/device_target.py
index 8a5f7d7c5b9..9ba173ba95a 100644
--- a/chromium/build/fuchsia/device_target.py
+++ b/chromium/build/fuchsia/device_target.py
@@ -141,7 +141,7 @@ class DeviceTarget(target.Target):
or waits up to |timeout| seconds and returns False if the device couldn't
be found."""
- dev_finder_path = GetHostToolPathFromPlatform('dev_finder')
+ dev_finder_path = GetHostToolPathFromPlatform('device-finder')
if self._node_name:
command = [dev_finder_path, 'resolve',
@@ -163,13 +163,13 @@ class DeviceTarget(target.Target):
return False
if self._node_name:
- # Handle the result of "dev_finder resolve".
+ # Handle the result of "device-finder resolve".
self._host = output.pop().strip()
else:
name_host_pairs = [x.strip().split(' ') for x in output]
- # Handle the output of "dev_finder list".
+ # Handle the output of "device-finder list".
if len(name_host_pairs) > 1:
print('More than one device was discovered on the network.')
print('Use --node-name <name> to specify the device to use.')