diff options
Diffstat (limited to 'chromium/docs/ios/xcode_tips.md')
-rw-r--r-- | chromium/docs/ios/xcode_tips.md | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/chromium/docs/ios/xcode_tips.md b/chromium/docs/ios/xcode_tips.md index 0e643693dce..63b11367899 100644 --- a/chromium/docs/ios/xcode_tips.md +++ b/chromium/docs/ios/xcode_tips.md @@ -5,8 +5,9 @@ to develop Chrome for iOS. ## Background -### .xcworkspace and .xcproject +### .xcworkspace and .xcodeproj +* Open all.xcworkspace only. * Generated from BUILD.gn files. * Don't make changes to it as it is a "fake" representation of the project - changes will not be committed @@ -15,6 +16,10 @@ to develop Chrome for iOS. * Added BUILD.gn files/`source_sets` need to be referenced from other ones as a `dep` in order for it to be shown in xcode. +Warning: *do not open the `.xcodeproj` as this file does not configure the +"Legacy Build System". If you do open this file, many things won't work +properly (clicking on an error won't open the corresponding file, ...).* + ### Adding new files * Create new files with `tools/boilerplate.py` |