1{ 2 "configurations": [ 3 { 4 "name": "Launch", 5 "type": "lldb", 6 "request": "launch", 7 "program": "${workspaceFolder}../../../../out/host/linux-x86/bin/cvd", 8 "args": [ 9 "start", 10 "-verbosity", 11 "VERBOSE", 12 ], 13 "env": { 14 "HOME":"${userHome}" , 15 "ANDROID_HOST_OUT":"${workspaceFolder}../../../../out/host/linux-x86" , 16 "ANDROID_SOONG_HOST_OUT":"${workspaceFolder}../../../../out/host/linux-x86" , 17 "ANDROID_PRODUCT_OUT":"${workspaceFolder}../../../../out/target/product/vsoc_x86_64" , 18 }, 19 "cwd": "${workspaceFolder}", 20 "initCommands": [ 21 "settings set target.process.follow-fork-mode child", 22 ] 23 }, 24 { 25 "name": "reset", 26 "type": "lldb", 27 "request": "launch", 28 "program": "${workspaceFolder}../../../../out/host/linux-x86/bin/cvd", 29 "args": [ 30 "reset" 31 ], 32 "env": { 33 "HOME":"${userHome}" , 34 "ANDROID_HOST_OUT":"${workspaceFolder}../../../../out/host/linux-x86" , 35 "ANDROID_SOONG_HOST_OUT":"${workspaceFolder}../../../../out/host/linux-x86" , 36 "ANDROID_PRODUCT_OUT":"${workspaceFolder}../../../../out/target/product/vsoc_x86_64" , 37 } 38 } 39 ], 40} 41