| Index: ct/go/worker_scripts/capture_skps/main.go
|
| diff --git a/ct/go/worker_scripts/capture_skps/main.go b/ct/go/worker_scripts/capture_skps/main.go
|
| index ae6c1dfd73ba46e3e325b0421c21b79de856158f..62b2708f36307793d61b894e51e996df7962db95 100644
|
| --- a/ct/go/worker_scripts/capture_skps/main.go
|
| +++ b/ct/go/worker_scripts/capture_skps/main.go
|
| @@ -179,11 +179,12 @@ func main() {
|
| "--urls-list=" + decodedPageset.UrlsList,
|
| "--archive-data-file=" + decodedPageset.ArchiveDataFile,
|
| }
|
| - // Figure out which browser should be used.
|
| + // Figure out which browser and device should be used.
|
| if *targetPlatform == util.PLATFORM_ANDROID {
|
| args = append(args, "--browser=android-chromium")
|
| } else {
|
| args = append(args, "--browser=exact", "--browser-executable="+chromiumBinary)
|
| + args = append(args, "--device=desktop")
|
| }
|
| // Set the PYTHONPATH to the pagesets and the telemetry dirs.
|
| env := []string{
|
|
|