node-gyp/gyp/tools
DeeDeeG 707927cd57
feat(gyp): update gyp to v0.16.1 (#2923)
* feat(gyp): update gyp to v0.15.1

* Add Python 3.12 to tests

* Try to fix CI

* Try specifying msvs-version

* Modify the visual-studio matrix

* Fix pythonLocation var

* Fix Python tests

* Get path

* polish

* feat(gyp): update gyp to v0.16.0

* feat(gyp): update gyp to v0.16.1

* CI: Don't install Python 'packaging' module (vendored in 'gyp-next' now)

* Apply suggestions from code review

* Upgrade to actions/checkout@v4

---------

Co-authored-by: Raymond Zhao <7199958+rzhao271@users.noreply.github.com>
Co-authored-by: Christian Clauss <cclauss@me.com>
2023-10-27 17:12:14 -07:00
..
emacs feat(gyp): update gyp to v0.9.1 (#2402) 2021-05-28 01:30:57 +00:00
Xcode add gyp https://codereview.chromium.org/11368059 2012-11-14 16:40:09 -08:00
graphviz.py gyp: update gyp to v0.8.1 (#2355) 2021-03-31 15:43:58 +08:00
pretty_gyp.py feat(gyp): update gyp to v0.13.0 2022-09-24 02:17:10 +01:00
pretty_sln.py feat(gyp): update gyp to v0.16.1 (#2923) 2023-10-27 17:12:14 -07:00
pretty_vcproj.py feat(gyp): update gyp to v0.16.1 (#2923) 2023-10-27 17:12:14 -07:00
README gyp: update gyp to v0.8.0 (#2318) 2021-01-28 15:11:53 +08:00

pretty_vcproj:
  Usage: pretty_vcproj.py "c:\path\to\vcproj.vcproj" [key1=value1] [key2=value2]

  They key/value pair are used to resolve vsprops name.

  For example, if I want to diff the base.vcproj project:

  pretty_vcproj.py z:\dev\src-chrome\src\base\build\base.vcproj "$(SolutionDir)=z:\dev\src-chrome\src\chrome\\" "$(CHROMIUM_BUILD)=" "$(CHROME_BUILD_TYPE)=" > original.txt
  pretty_vcproj.py z:\dev\src-chrome\src\base\base_gyp.vcproj "$(SolutionDir)=z:\dev\src-chrome\src\chrome\\" "$(CHROMIUM_BUILD)=" "$(CHROME_BUILD_TYPE)=" > gyp.txt

  And you can use your favorite diff tool to see the changes.

  Note: In the case of base.vcproj, the original vcproj is one level up the generated one.
        I suggest you do a search and replace for '"..\' and replace it with '"' in original.txt
        before you perform the diff.