At first my directory folder looked like this
─myproject
│ ├───readme.md
│ ├───win_readme.md
│ ├───linux_readme.md
│ ├───.gclient
│ ├───tools
│ │ └───xxx.patch
│ ├───src
│ │ └───DEPS
I now change the directory structure to
|─myproject
│ ├───readme.md
│ ├───win_readme.md
│ ├───linux_readme.md
│ ├───tools
│ │ └───xxx.patch
│ ├───src
│ ├───DEPS
|─.gclient
I moved the deps and gclient files to the previous level respectively,At the same time, I modified the path in the deps file from src/xx to myproject/src/xx.
Now execute sync to generate location_tags.json and report an error.
It should have read the myproject\src\chrome\VERSION file, but after I changed the DEPS file and directory, it read myproject\chrome\VERSION without src.
how can i solve this problem