├── .gitignore ├── AUTHORS ├── DEPS ├── LICENSE ├── OWNERS ├── PRESUBMIT.py ├── README.md ├── codereview.settings ├── data └── win │ └── large-pdb-shim.cc ├── gyp ├── gyp.bat ├── gyp_main.py ├── gyptest.py ├── pylib └── gyp │ ├── MSVSNew.py │ ├── MSVSProject.py │ ├── MSVSSettings.py │ ├── MSVSSettings_test.py │ ├── MSVSToolFile.py │ ├── MSVSUserFile.py │ ├── MSVSUtil.py │ ├── MSVSVersion.py │ ├── __init__.py │ ├── common.py │ ├── common_test.py │ ├── easy_xml.py │ ├── easy_xml_test.py │ ├── flock_tool.py │ ├── generator │ ├── __init__.py │ ├── analyzer.py │ ├── cmake.py │ ├── dump_dependency_json.py │ ├── eclipse.py │ ├── gypd.py │ ├── gypsh.py │ ├── make.py │ ├── msvs.py │ ├── msvs_test.py │ ├── ninja.py │ ├── ninja_test.py │ ├── xcode.py │ └── xcode_test.py │ ├── input.py │ ├── input_test.py │ ├── mac_tool.py │ ├── msvs_emulation.py │ ├── ninja_syntax.py │ ├── simple_copy.py │ ├── win_tool.py │ ├── xcode_emulation.py │ ├── xcode_ninja.py │ ├── xcodeproj_file.py │ └── xml_fix.py ├── samples ├── samples └── samples.bat ├── setup.py ├── test ├── actions-bare │ ├── gyptest-bare.py │ └── src │ │ ├── bare.gyp │ │ └── bare.py ├── actions-depfile │ ├── depfile.gyp │ ├── gyptest-all.py │ ├── input.txt │ └── touch.py ├── actions-multiple-outputs-with-dependencies │ ├── gyptest-action.py │ └── src │ │ ├── action.gyp │ │ └── rcopy.py ├── actions-multiple-outputs │ ├── gyptest-multiple-outputs.py │ └── src │ │ ├── multiple-outputs.gyp │ │ └── touch.py ├── actions-multiple │ ├── gyptest-all.py │ └── src │ │ ├── actions.gyp │ │ ├── copyfile.py │ │ ├── filter.py │ │ ├── foo.c │ │ ├── input.txt │ │ └── main.c ├── actions-none │ ├── gyptest-none.py │ └── src │ │ ├── fake_cross.py │ │ ├── foo.cc │ │ └── none_with_source_files.gyp ├── actions-subdir │ ├── gyptest-action.py │ └── src │ │ ├── make-file.py │ │ ├── none.gyp │ │ └── subdir │ │ ├── make-subdir-file.py │ │ └── subdir.gyp ├── actions │ ├── generated-header │ │ ├── action.py │ │ ├── main.cc │ │ └── test.gyp │ ├── gyptest-all.py │ ├── gyptest-default.py │ ├── gyptest-errors.py │ ├── gyptest-generated-header.py │ └── src │ │ ├── action_missing_name.gyp │ │ ├── actions.gyp │ │ ├── confirm-dep-files.py │ │ ├── subdir1 │ │ ├── counter.py │ │ ├── executable.gyp │ │ ├── make-prog1.py │ │ ├── make-prog2.py │ │ └── program.c │ │ ├── subdir2 │ │ ├── make-file.py │ │ └── none.gyp │ │ └── subdir3 │ │ ├── generate_main.py │ │ └── null_input.gyp ├── additional-targets │ ├── gyptest-additional.py │ └── src │ │ ├── all.gyp │ │ └── dir1 │ │ ├── actions.gyp │ │ ├── emit.py │ │ └── lib1.c ├── analyzer │ ├── common.gypi │ ├── gyptest-analyzer.py │ ├── static_library_test.gyp │ ├── subdir │ │ ├── subdir.gyp │ │ └── subdir2 │ │ │ └── subdir2.gyp │ ├── subdir2 │ │ ├── subdir.gyp │ │ └── subdir.includes.gypi │ ├── test.gyp │ ├── test2.gyp │ ├── test2.includes.gypi │ ├── test2.includes.includes.gypi │ ├── test2.toplevel_includes.gypi │ ├── test3.gyp │ ├── test4.gyp │ └── test5.gyp ├── arflags │ ├── gyptest-arflags.py │ ├── lib.cc │ └── test.gyp ├── assembly │ ├── gyptest-assembly.py │ ├── gyptest-override.py │ └── src │ │ ├── as.bat │ │ ├── assembly.gyp │ │ ├── lib1.S │ │ ├── lib1.c │ │ ├── override.gyp │ │ ├── override_asm.asm │ │ └── program.c ├── build-option │ ├── gyptest-build.py │ ├── hello.c │ └── hello.gyp ├── builddir │ ├── gyptest-all.py │ ├── gyptest-default.py │ └── src │ │ ├── builddir.gypi │ │ ├── func1.c │ │ ├── func2.c │ │ ├── func3.c │ │ ├── func4.c │ │ ├── func5.c │ │ ├── prog1.c │ │ ├── prog1.gyp │ │ └── subdir2 │ │ ├── prog2.c │ │ ├── prog2.gyp │ │ └── subdir3 │ │ ├── prog3.c │ │ ├── prog3.gyp │ │ └── subdir4 │ │ ├── prog4.c │ │ ├── prog4.gyp │ │ └── subdir5 │ │ ├── prog5.c │ │ └── prog5.gyp ├── cflags │ ├── cflags.c │ ├── cflags.gyp │ └── gyptest-cflags.py ├── compilable │ ├── gyptest-headers.py │ └── src │ │ ├── headers.gyp │ │ ├── lib1.cpp │ │ ├── lib1.hpp │ │ └── program.cpp ├── compiler-override │ ├── compiler-exe.gyp │ ├── compiler-global-settings.gyp.in │ ├── compiler-host.gyp │ ├── compiler-shared-lib.gyp │ ├── cxxtest.cc │ ├── gyptest-compiler-env-toolchain.py │ ├── gyptest-compiler-env.py │ ├── gyptest-compiler-global-settings.py │ ├── my_cc.py │ ├── my_cxx.py │ ├── my_ld.py │ ├── my_nm.py │ ├── my_readelf.py │ └── test.c ├── conditions │ └── elseif │ │ ├── elseif.gyp │ │ ├── elseif_bad1.gyp │ │ ├── elseif_bad2.gyp │ │ ├── elseif_bad3.gyp │ │ ├── elseif_conditions.gypi │ │ ├── gyptest_elseif.py │ │ └── program.cc ├── configurations │ ├── basics │ │ ├── configurations.c │ │ ├── configurations.gyp │ │ └── gyptest-configurations.py │ ├── inheritance │ │ ├── configurations.c │ │ ├── configurations.gyp │ │ ├── duplicates.gyp │ │ ├── duplicates.gypd.golden │ │ ├── gyptest-duplicates.py │ │ └── gyptest-inheritance.py │ ├── invalid │ │ ├── actions.gyp │ │ ├── all_dependent_settings.gyp │ │ ├── configurations.gyp │ │ ├── dependencies.gyp │ │ ├── direct_dependent_settings.gyp │ │ ├── gyptest-configurations.py │ │ ├── libraries.gyp │ │ ├── link_settings.gyp │ │ ├── sources.gyp │ │ ├── standalone_static_library.gyp │ │ ├── target_name.gyp │ │ └── type.gyp │ ├── target_platform │ │ ├── configurations.gyp │ │ ├── front.c │ │ ├── gyptest-target_platform.py │ │ ├── left.c │ │ └── right.c │ └── x64 │ │ ├── configurations.c │ │ ├── configurations.gyp │ │ └── gyptest-x86.py ├── copies │ ├── gyptest-all.py │ ├── gyptest-attribs.py │ ├── gyptest-default.py │ ├── gyptest-samedir.py │ ├── gyptest-slash.py │ ├── gyptest-sourceless-shared-lib.py │ ├── gyptest-updir.py │ └── src │ │ ├── copies-attribs.gyp │ │ ├── copies-samedir.gyp │ │ ├── copies-slash.gyp │ │ ├── copies-sourceless-shared-lib.gyp │ │ ├── copies-updir.gyp │ │ ├── copies.gyp │ │ ├── directory │ │ ├── file3 │ │ ├── file4 │ │ └── subdir │ │ │ └── file5 │ │ ├── executable-file.sh │ │ ├── file1 │ │ ├── file2 │ │ ├── foo.c │ │ └── parentdir │ │ └── subdir │ │ └── file6 ├── custom-generator │ ├── gyptest-custom-generator.py │ ├── mygenerator.py │ └── test.gyp ├── cxxflags │ ├── cxxflags.cc │ ├── cxxflags.gyp │ └── gyptest-cxxflags.py ├── defines-escaping │ ├── defines-escaping.c │ ├── defines-escaping.gyp │ └── gyptest-defines-escaping.py ├── defines │ ├── defines-env.gyp │ ├── defines.c │ ├── defines.gyp │ ├── gyptest-define-override.py │ ├── gyptest-defines-env-regyp.py │ ├── gyptest-defines-env.py │ └── gyptest-defines.py ├── dependencies │ ├── a.c │ ├── adso │ │ ├── all_dependent_settings_order.gyp │ │ └── write_args.py │ ├── b │ │ ├── b.c │ │ ├── b.gyp │ │ └── b3.c │ ├── c │ │ ├── c.c │ │ ├── c.gyp │ │ └── d.c │ ├── double_dependency.gyp │ ├── double_dependent.gyp │ ├── extra_targets.gyp │ ├── gyptest-all-dependent-settings-order.py │ ├── gyptest-double-dependency.py │ ├── gyptest-extra-targets.py │ ├── gyptest-indirect-module-dependency.py │ ├── gyptest-lib-only.py │ ├── gyptest-none-traversal.py │ ├── gyptest-sharedlib-linksettings.py │ ├── lib_only.gyp │ ├── main.c │ ├── module-dep │ │ ├── a.cc │ │ ├── dll.cc │ │ ├── exe.cc │ │ └── indirect-module-dependency.gyp │ ├── none_traversal.gyp │ └── sharedlib-linksettings │ │ ├── program.c │ │ ├── sharedlib.c │ │ ├── staticlib.c │ │ └── test.gyp ├── dependency-copy │ ├── gyptest-copy.py │ └── src │ │ ├── copies.gyp │ │ ├── file1.c │ │ └── file2.c ├── dependent-settings │ └── nested-dependent-settings │ │ ├── all-dependent-settings.gyp │ │ ├── direct-dependent-settings.gyp │ │ └── gyptest-nested-dependent-settings.py ├── determinism │ ├── determinism.gyp │ ├── empty-targets.gyp │ ├── gyptest-determinism.py │ ├── gyptest-empty-target-names.py │ ├── gyptest-needed-variables.py │ ├── gyptest-solibs.py │ ├── main.cc │ ├── needed-variables.gyp │ ├── rule.py │ ├── solib.cc │ └── solibs.gyp ├── empty-target │ ├── empty-target.gyp │ └── gyptest-empty-target.py ├── errors │ ├── dependency_cycle.gyp │ ├── duplicate_basenames.gyp │ ├── duplicate_node.gyp │ ├── duplicate_rule.gyp │ ├── duplicate_targets.gyp │ ├── error_command.gyp │ ├── file_cycle0.gyp │ ├── file_cycle1.gyp │ ├── gyptest-errors.py │ ├── missing_command.gyp │ ├── missing_dep.gyp │ └── missing_targets.gyp ├── escaping │ ├── colon │ │ └── test.gyp │ └── gyptest-colon.py ├── exclusion │ ├── exclusion.gyp │ ├── gyptest-exclusion.py │ └── hello.c ├── external-cross-compile │ ├── gyptest-cross.py │ └── src │ │ ├── bogus1.cc │ │ ├── bogus2.c │ │ ├── cross.gyp │ │ ├── cross_compile.gypi │ │ ├── fake_cross.py │ │ ├── program.cc │ │ ├── test1.cc │ │ ├── test2.c │ │ ├── test3.cc │ │ ├── test4.c │ │ └── tochar.py ├── generator-output │ ├── actions │ │ ├── actions.gyp │ │ ├── build │ │ │ └── README.txt │ │ ├── subdir1 │ │ │ ├── actions-out │ │ │ │ └── README.txt │ │ │ ├── build │ │ │ │ └── README.txt │ │ │ ├── executable.gyp │ │ │ ├── make-prog1.py │ │ │ ├── make-prog2.py │ │ │ └── program.c │ │ └── subdir2 │ │ │ ├── actions-out │ │ │ └── README.txt │ │ │ ├── build │ │ │ └── README.txt │ │ │ ├── make-file.py │ │ │ └── none.gyp │ ├── copies │ │ ├── build │ │ │ └── README.txt │ │ ├── copies-out │ │ │ └── README.txt │ │ ├── copies.gyp │ │ ├── file1 │ │ ├── file2 │ │ └── subdir │ │ │ ├── build │ │ │ └── README.txt │ │ │ ├── copies-out │ │ │ └── README.txt │ │ │ ├── file3 │ │ │ ├── file4 │ │ │ └── subdir.gyp │ ├── gyptest-actions.py │ ├── gyptest-copies.py │ ├── gyptest-depth.py │ ├── gyptest-mac-bundle.py │ ├── gyptest-relocate.py │ ├── gyptest-rules.py │ ├── gyptest-subdir2-deep.py │ ├── gyptest-symlink.py │ ├── gyptest-top-all.py │ ├── mac-bundle │ │ ├── Info.plist │ │ ├── app.order │ │ ├── header.h │ │ ├── main.c │ │ ├── resource.sb │ │ └── test.gyp │ ├── rules │ │ ├── build │ │ │ └── README.txt │ │ ├── copy-file.py │ │ ├── rules.gyp │ │ ├── subdir1 │ │ │ ├── build │ │ │ │ └── README.txt │ │ │ ├── define3.in0 │ │ │ ├── define4.in0 │ │ │ ├── executable.gyp │ │ │ ├── function1.in1 │ │ │ ├── function2.in1 │ │ │ └── program.c │ │ └── subdir2 │ │ │ ├── build │ │ │ └── README.txt │ │ │ ├── file1.in0 │ │ │ ├── file2.in0 │ │ │ ├── file3.in1 │ │ │ ├── file4.in1 │ │ │ ├── none.gyp │ │ │ └── rules-out │ │ │ └── README.txt │ └── src │ │ ├── build │ │ └── README.txt │ │ ├── inc.h │ │ ├── inc1 │ │ └── include1.h │ │ ├── prog1.c │ │ ├── prog1.gyp │ │ ├── subdir2 │ │ ├── build │ │ │ └── README.txt │ │ ├── deeper │ │ │ ├── build │ │ │ │ └── README.txt │ │ │ ├── deeper.c │ │ │ ├── deeper.gyp │ │ │ └── deeper.h │ │ ├── inc2 │ │ │ └── include2.h │ │ ├── prog2.c │ │ └── prog2.gyp │ │ ├── subdir3 │ │ ├── build │ │ │ └── README.txt │ │ ├── inc3 │ │ │ └── include3.h │ │ ├── prog3.c │ │ └── prog3.gyp │ │ └── symroot.gypi ├── gyp-defines │ ├── defines.gyp │ ├── echo.py │ ├── gyptest-multiple-values.py │ └── gyptest-regyp.py ├── hard_dependency │ ├── gyptest-exported-hard-dependency.py │ ├── gyptest-no-exported-hard-dependency.py │ └── src │ │ ├── a.c │ │ ├── a.h │ │ ├── b.c │ │ ├── b.h │ │ ├── c.c │ │ ├── c.h │ │ ├── d.c │ │ ├── emit.py │ │ └── hard_dependency.gyp ├── hello │ ├── gyptest-all.py │ ├── gyptest-default.py │ ├── gyptest-disable-regyp.py │ ├── gyptest-regyp-output.py │ ├── gyptest-regyp.py │ ├── gyptest-target.py │ ├── hello.c │ ├── hello.gyp │ ├── hello2.c │ └── hello2.gyp ├── home_dot_gyp │ ├── gyptest-home-includes-config-arg.py │ ├── gyptest-home-includes-config-env.py │ ├── gyptest-home-includes-regyp.py │ ├── gyptest-home-includes.py │ ├── home │ │ └── .gyp │ │ │ └── include.gypi │ ├── home2 │ │ ├── .gyp │ │ │ └── include.gypi │ │ └── .gyp_new │ │ │ └── include.gypi │ └── src │ │ ├── all.gyp │ │ └── printfoo.c ├── include_dirs │ ├── gyptest-all.py │ ├── gyptest-default.py │ └── src │ │ ├── inc.h │ │ ├── inc1 │ │ └── include1.h │ │ ├── includes.c │ │ ├── includes.gyp │ │ ├── shadow1 │ │ └── shadow.h │ │ ├── shadow2 │ │ └── shadow.h │ │ └── subdir │ │ ├── inc.h │ │ ├── inc2 │ │ └── include2.h │ │ ├── subdir_includes.c │ │ └── subdir_includes.gyp ├── intermediate_dir │ ├── gyptest-intermediate-dir.py │ └── src │ │ ├── script.py │ │ ├── shared_infile.txt │ │ ├── test.gyp │ │ └── test2.gyp ├── ios │ ├── app-bundle │ │ ├── TestApp │ │ │ ├── English.lproj │ │ │ │ ├── InfoPlist-error.strings │ │ │ │ ├── InfoPlist.strings │ │ │ │ ├── LanguageMap.plist │ │ │ │ ├── MainMenu.xib │ │ │ │ └── Main_iPhone.storyboard │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── image.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── super_sylvain.png │ │ │ │ │ ├── super_sylvain@2x.png │ │ │ │ │ └── super_sylvain@3x.png │ │ │ ├── TestApp-Info.plist │ │ │ ├── check_no_signature.py │ │ │ ├── main.m │ │ │ ├── only-compile-in-32-bits.m │ │ │ └── only-compile-in-64-bits.m │ │ ├── test-archs.gyp │ │ ├── test-assets-catalog.gyp │ │ ├── test-crosscompile.gyp │ │ ├── test-device.gyp │ │ ├── test.gyp │ │ └── tool_main.cc │ ├── copies-with-xcode-envvars │ │ ├── Info.plist │ │ ├── copies-with-xcode-envvars.gyp │ │ ├── empty.c │ │ ├── file0 │ │ ├── file1 │ │ ├── file10 │ │ ├── file11 │ │ ├── file2 │ │ ├── file3 │ │ ├── file4 │ │ ├── file5 │ │ ├── file6 │ │ ├── file7 │ │ ├── file8 │ │ └── file9 │ ├── deployment-target │ │ ├── check-version-min.c │ │ └── deployment-target.gyp │ ├── extension │ │ ├── ActionExtension │ │ │ ├── ActionViewController.h │ │ │ ├── ActionViewController.m │ │ │ ├── Info.plist │ │ │ └── MainInterface.storyboard │ │ ├── ExtensionContainer │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Base.lproj │ │ │ │ └── Main.storyboard │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ └── main.m │ │ └── extension.gyp │ ├── framework │ │ ├── framework.gyp │ │ └── iOSFramework │ │ │ ├── Info.plist │ │ │ ├── Thing.h │ │ │ ├── Thing.m │ │ │ └── iOSFramework.h │ ├── gyptest-app-ios-assets-catalog.py │ ├── gyptest-app-ios.py │ ├── gyptest-archs.py │ ├── gyptest-copies-with-xcode-envvars.py │ ├── gyptest-crosscompile.py │ ├── gyptest-deployment-target.py │ ├── gyptest-extension.py │ ├── gyptest-framework.py │ ├── gyptest-per-config-settings.py │ ├── gyptest-watch.py │ ├── gyptest-xcode-ninja.py │ ├── watch │ │ ├── WatchApp │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ └── Interface.storyboard │ │ ├── WatchContainer │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Base.lproj │ │ │ │ └── Main.storyboard │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ └── main.m │ │ ├── WatchKitExtension │ │ │ ├── Images.xcassets │ │ │ │ └── MyImage.imageset │ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── InterfaceController.h │ │ │ ├── InterfaceController.m │ │ │ └── MainInterface.storyboard │ │ └── watch.gyp │ └── xctests │ │ ├── App │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ │ ├── AppTests │ │ ├── AppTests.m │ │ └── Info.plist │ │ ├── gyptest-xctests.py │ │ └── xctests.gyp ├── lib │ ├── README.txt │ ├── TestCmd.py │ ├── TestCommon.py │ ├── TestGyp.py │ ├── TestMac.py │ └── TestWin.py ├── library │ ├── gyptest-shared-obj-install-path.py │ ├── gyptest-shared.py │ ├── gyptest-static.py │ └── src │ │ ├── lib1.c │ │ ├── lib1_moveable.c │ │ ├── lib2.c │ │ ├── lib2_moveable.c │ │ ├── library.gyp │ │ ├── program.c │ │ └── shared_dependency.gyp ├── library_dirs │ ├── gyptest-library-dirs.py │ └── subdir │ │ ├── README.txt │ │ ├── hello.cc │ │ ├── mylib.cc │ │ ├── mylib.h │ │ ├── test-win.gyp │ │ └── test.gyp ├── link-dependency │ ├── gyptest-link-dependency.py │ ├── main.c │ ├── mymalloc.c │ └── test.gyp ├── link-objects │ ├── base.c │ ├── extra.c │ ├── gyptest-all.py │ └── link-objects.gyp ├── linux │ ├── gyptest-implicit-rpath.py │ ├── gyptest-ldflags-duplicates.py │ ├── gyptest-ldflags-from-environment.py │ ├── gyptest-target-rpath.py │ ├── implicit-rpath │ │ ├── file.c │ │ ├── main.c │ │ └── test.gyp │ ├── ldflags-duplicates │ │ ├── check-ldflags.py │ │ ├── lib1.c │ │ ├── lib2.c │ │ ├── main.c │ │ └── test.gyp │ ├── ldflags-from-environment │ │ ├── main.c │ │ └── test.gyp │ └── target-rpath │ │ ├── file.c │ │ ├── main.c │ │ └── test.gyp ├── mac │ ├── action-envvars │ │ └── action │ │ │ ├── action.gyp │ │ │ └── action.sh │ ├── app-bundle │ │ ├── TestApp │ │ │ ├── English.lproj │ │ │ │ ├── InfoPlist-error.strings │ │ │ │ ├── InfoPlist.strings │ │ │ │ ├── MainMenu.xib │ │ │ │ ├── utf-16be.strings │ │ │ │ └── utf-16le.strings │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── image.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── super_sylvain.png │ │ │ │ │ ├── super_sylvain@2x.png │ │ │ │ │ └── super_sylvain@3x.png │ │ │ ├── TestApp-Info.plist │ │ │ ├── TestAppAppDelegate.h │ │ │ ├── TestAppAppDelegate.m │ │ │ └── main.m │ │ ├── empty.c │ │ ├── test-assets-catalog.gyp │ │ ├── test-error.gyp │ │ └── test.gyp │ ├── archs │ │ ├── empty_main.cc │ │ ├── file.mm │ │ ├── file_a.cc │ │ ├── file_a.h │ │ ├── file_b.cc │ │ ├── file_b.h │ │ ├── file_c.cc │ │ ├── file_d.cc │ │ ├── header.h │ │ ├── my_file.cc │ │ ├── my_main_file.cc │ │ ├── test-archs-multiarch.gyp │ │ ├── test-archs-x86_64.gyp │ │ ├── test-dependencies.gyp │ │ ├── test-no-archs.gyp │ │ └── test-valid-archs.gyp │ ├── bundle-resources │ │ ├── change.sh │ │ ├── executable-file.sh │ │ ├── secret.txt │ │ └── test.gyp │ ├── cflags │ │ ├── ccfile.cc │ │ ├── ccfile_withcflags.cc │ │ ├── cfile.c │ │ ├── cppfile.cpp │ │ ├── cppfile_withcflags.cpp │ │ ├── cxxfile.cxx │ │ ├── cxxfile_withcflags.cxx │ │ ├── mfile.m │ │ ├── mmfile.mm │ │ ├── mmfile_withcflags.mm │ │ └── test.gyp │ ├── clang-cxx-language-standard │ │ ├── c++11.cc │ │ ├── c++98.cc │ │ └── clang-cxx-language-standard.gyp │ ├── clang-cxx-library │ │ ├── clang-cxx-library.gyp │ │ ├── libc++.cc │ │ └── libstdc++.cc │ ├── copies-with-xcode-envvars │ │ ├── copies-with-xcode-envvars.gyp │ │ ├── empty.c │ │ ├── file0 │ │ ├── file1 │ │ ├── file10 │ │ ├── file11 │ │ ├── file2 │ │ ├── file3 │ │ ├── file4 │ │ ├── file5 │ │ ├── file6 │ │ ├── file7 │ │ ├── file8 │ │ └── file9 │ ├── copy-dylib │ │ ├── empty.c │ │ └── test.gyp │ ├── debuginfo │ │ ├── file.c │ │ └── test.gyp │ ├── depend-on-bundle │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ ├── Info.plist │ │ ├── bundle.c │ │ ├── executable.c │ │ └── test.gyp │ ├── deployment-target │ │ ├── check-version-min.c │ │ └── deployment-target.gyp │ ├── framework-dirs │ │ ├── calculate.c │ │ └── framework-dirs.gyp │ ├── framework-headers │ │ ├── myframework.h │ │ ├── myframework.m │ │ └── test.gyp │ ├── framework │ │ ├── TestFramework │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ ├── Info.plist │ │ │ ├── ObjCVector.h │ │ │ ├── ObjCVector.mm │ │ │ ├── ObjCVectorInternal.h │ │ │ └── TestFramework_Prefix.pch │ │ ├── empty.c │ │ └── framework.gyp │ ├── global-settings │ │ └── src │ │ │ ├── dir1 │ │ │ └── dir1.gyp │ │ │ └── dir2 │ │ │ ├── dir2.gyp │ │ │ └── file.txt │ ├── gyptest-action-envvars.py │ ├── gyptest-app-assets-catalog.py │ ├── gyptest-app-error.py │ ├── gyptest-app.py │ ├── gyptest-archs.py │ ├── gyptest-bundle-resources.py │ ├── gyptest-cflags.py │ ├── gyptest-clang-cxx-language-standard.py │ ├── gyptest-clang-cxx-library.py │ ├── gyptest-copies-with-xcode-envvars.py │ ├── gyptest-copies.py │ ├── gyptest-copy-dylib.py │ ├── gyptest-debuginfo.py │ ├── gyptest-depend-on-bundle.py │ ├── gyptest-deployment-target.py │ ├── gyptest-framework-dirs.py │ ├── gyptest-framework-headers.py │ ├── gyptest-framework.py │ ├── gyptest-global-settings.py │ ├── gyptest-identical-name.py │ ├── gyptest-infoplist-process.py │ ├── gyptest-installname.py │ ├── gyptest-kext.py │ ├── gyptest-ldflags-passed-to-libtool.py │ ├── gyptest-ldflags.py │ ├── gyptest-libraries.py │ ├── gyptest-libtool-zero.py │ ├── gyptest-loadable-module-bundle-product-extension.py │ ├── gyptest-loadable-module.py │ ├── gyptest-lto.py │ ├── gyptest-missing-cfbundlesignature.py │ ├── gyptest-non-strs-flattened-to-env.py │ ├── gyptest-objc-arc.py │ ├── gyptest-objc-gc.py │ ├── gyptest-postbuild-copy-bundle.py │ ├── gyptest-postbuild-defaults.py │ ├── gyptest-postbuild-fail.py │ ├── gyptest-postbuild-multiple-configurations.py │ ├── gyptest-postbuild-static-library.py │ ├── gyptest-postbuild.py │ ├── gyptest-prefixheader.py │ ├── gyptest-rebuild.py │ ├── gyptest-rpath.py │ ├── gyptest-sdkroot.py │ ├── gyptest-sourceless-module.py │ ├── gyptest-strip-default.py │ ├── gyptest-strip.py │ ├── gyptest-swift-library.py │ ├── gyptest-type-envvars.py │ ├── gyptest-unicode-settings.py │ ├── gyptest-xcode-env-order.py │ ├── gyptest-xcode-gcc-clang.py │ ├── gyptest-xcode-gcc.py │ ├── gyptest-xcode-support-actions.py │ ├── gyptest-xctest.py │ ├── gyptest-xcuitest.py │ ├── identical-name │ │ ├── proxy │ │ │ ├── proxy.cc │ │ │ ├── proxy.gyp │ │ │ └── testlib │ │ │ │ ├── testlib.cc │ │ │ │ └── testlib.gyp │ │ ├── test-should-fail.gyp │ │ ├── test.gyp │ │ ├── test.gypi │ │ └── testlib │ │ │ ├── main.cc │ │ │ ├── testlib.gyp │ │ │ └── void.cc │ ├── infoplist-process │ │ ├── Info.plist │ │ ├── main.c │ │ ├── test1.gyp │ │ ├── test2.gyp │ │ └── test3.gyp │ ├── installname │ │ ├── Info.plist │ │ ├── file.c │ │ ├── main.c │ │ └── test.gyp │ ├── kext │ │ ├── GypKext │ │ │ ├── GypKext-Info.plist │ │ │ └── GypKext.c │ │ └── kext.gyp │ ├── ldflags-libtool │ │ ├── file.c │ │ └── test.gyp │ ├── ldflags │ │ └── subdirectory │ │ │ ├── Info.plist │ │ │ ├── file.c │ │ │ ├── symbol_list.def │ │ │ └── test.gyp │ ├── libraries │ │ └── subdir │ │ │ ├── README.txt │ │ │ ├── hello.cc │ │ │ ├── mylib.c │ │ │ └── test.gyp │ ├── libtool-zero │ │ ├── mylib.c │ │ └── test.gyp │ ├── loadable-module-bundle-product-extension │ │ ├── src.cc │ │ └── test.gyp │ ├── loadable-module │ │ ├── Info.plist │ │ ├── module.c │ │ └── test.gyp │ ├── lto │ │ ├── asmfile.S │ │ ├── ccfile.cc │ │ ├── cfile.c │ │ ├── mfile.m │ │ ├── mmfile.mm │ │ └── test.gyp │ ├── missing-cfbundlesignature │ │ ├── Info.plist │ │ ├── Other-Info.plist │ │ ├── Third-Info.plist │ │ ├── file.c │ │ └── test.gyp │ ├── non-strs-flattened-to-env │ │ ├── Info.plist │ │ ├── main.c │ │ └── test.gyp │ ├── objc-arc │ │ ├── c-file.c │ │ ├── cc-file.cc │ │ ├── m-file-arc-weak.m │ │ ├── m-file-no-arc.m │ │ ├── m-file.m │ │ ├── mm-file-arc-weak.mm │ │ ├── mm-file-no-arc.mm │ │ ├── mm-file.mm │ │ └── test.gyp │ ├── objc-gc │ │ ├── c-file.c │ │ ├── cc-file.cc │ │ ├── main.m │ │ ├── needs-gc-mm.mm │ │ ├── needs-gc.m │ │ └── test.gyp │ ├── postbuild-copy-bundle │ │ ├── Framework-Info.plist │ │ ├── TestApp-Info.plist │ │ ├── copied.txt │ │ ├── empty.c │ │ ├── main.c │ │ ├── postbuild-copy-framework.sh │ │ ├── resource_file.sb │ │ └── test.gyp │ ├── postbuild-defaults │ │ ├── Info.plist │ │ ├── main.c │ │ ├── postbuild-defaults.sh │ │ └── test.gyp │ ├── postbuild-fail │ │ ├── file.c │ │ ├── postbuild-fail.sh │ │ ├── test.gyp │ │ ├── touch-dynamic.sh │ │ └── touch-static.sh │ ├── postbuild-multiple-configurations │ │ ├── main.c │ │ ├── postbuild-touch-file.sh │ │ └── test.gyp │ ├── postbuild-static-library │ │ ├── empty.c │ │ ├── postbuild-touch-file.sh │ │ └── test.gyp │ ├── postbuilds │ │ ├── copy.sh │ │ ├── file.c │ │ ├── file_g.c │ │ ├── file_h.c │ │ ├── script │ │ │ ├── shared_library_postbuild.sh │ │ │ └── static_library_postbuild.sh │ │ ├── subdirectory │ │ │ ├── copied_file.txt │ │ │ └── nested_target.gyp │ │ └── test.gyp │ ├── prefixheader │ │ ├── file.c │ │ ├── file.cc │ │ ├── file.m │ │ ├── file.mm │ │ ├── header.h │ │ └── test.gyp │ ├── rebuild │ │ ├── TestApp-Info.plist │ │ ├── delay-touch.sh │ │ ├── empty.c │ │ ├── main.c │ │ └── test.gyp │ ├── rpath │ │ ├── file.c │ │ ├── main.c │ │ └── test.gyp │ ├── sdkroot │ │ ├── file.cc │ │ ├── test.gyp │ │ └── test_shorthand.sh │ ├── sourceless-module │ │ ├── empty.c │ │ ├── empty.txt │ │ ├── fun.c │ │ └── test.gyp │ ├── strip │ │ ├── file.c │ │ ├── main.c │ │ ├── strip.saves │ │ ├── subdirectory │ │ │ ├── nested_file.c │ │ │ ├── nested_strip.saves │ │ │ ├── subdirectory.gyp │ │ │ └── test_reading_save_file_from_postbuild.sh │ │ ├── test-defaults.gyp │ │ └── test.gyp │ ├── swift-library │ │ ├── Info.plist │ │ ├── file.swift │ │ └── test.gyp │ ├── type_envvars │ │ ├── file.c │ │ ├── test.gyp │ │ ├── test_bundle_executable.sh │ │ ├── test_bundle_loadable_module.sh │ │ ├── test_bundle_shared_library.sh │ │ ├── test_check_sdkroot.sh │ │ ├── test_nonbundle_executable.sh │ │ ├── test_nonbundle_loadable_module.sh │ │ ├── test_nonbundle_none.sh │ │ ├── test_nonbundle_shared_library.sh │ │ └── test_nonbundle_static_library.sh │ ├── unicode-settings │ │ ├── file.cc │ │ ├── test.gyp │ │ └── test_bundle_display_name.sh │ ├── xcode-env-order │ │ ├── Info.plist │ │ ├── file.ext1 │ │ ├── file.ext2 │ │ ├── file.ext3 │ │ ├── main.c │ │ └── test.gyp │ ├── xcode-gcc │ │ ├── aliasing.cc │ │ ├── test-clang.gyp │ │ ├── test.gyp │ │ ├── valid_c.c │ │ ├── valid_cc.cc │ │ ├── valid_m.m │ │ ├── valid_mm.mm │ │ ├── warn_about_invalid_offsetof_macro.cc │ │ └── warn_about_missing_newline.c │ ├── xcode-support-actions │ │ ├── source.c │ │ └── test.gyp │ ├── xctest │ │ ├── MyClass.h │ │ ├── MyClass.m │ │ ├── TestCase.m │ │ ├── resource.txt │ │ ├── test.gyp │ │ └── test.xcodeproj │ │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── classes.xcscheme │ └── xcuitest │ │ ├── Info.plist │ │ ├── MyAppDelegate.h │ │ ├── MyAppDelegate.m │ │ ├── TestCase.m │ │ ├── main.m │ │ ├── resource.txt │ │ └── test.gyp ├── make │ ├── dependencies.gyp │ ├── gyptest-dependencies.py │ ├── gyptest-noload.py │ ├── main.cc │ ├── main.h │ └── noload │ │ ├── all.gyp │ │ ├── lib │ │ ├── shared.c │ │ ├── shared.gyp │ │ └── shared.h │ │ └── main.c ├── make_global_settings │ ├── ar │ │ ├── gyptest-make_global_settings_ar.py │ │ └── make_global_settings_ar.gyp │ ├── basics │ │ ├── gyptest-make_global_settings.py │ │ └── make_global_settings.gyp │ ├── env-wrapper │ │ ├── gyptest-wrapper.py │ │ └── wrapper.gyp │ ├── full-toolchain │ │ ├── bar.cc │ │ ├── foo.c │ │ ├── gyptest-make_global_settings.py │ │ ├── make_global_settings.gyp │ │ ├── my_nm.py │ │ └── my_readelf.py │ ├── ld │ │ ├── gyptest-make_global_settings_ld.py │ │ └── make_global_settings_ld.gyp │ └── wrapper │ │ ├── gyptest-wrapper.py │ │ └── wrapper.gyp ├── many-actions │ ├── file0 │ ├── file1 │ ├── file2 │ ├── file3 │ ├── file4 │ ├── gyptest-many-actions-unsorted.py │ ├── gyptest-many-actions.py │ ├── many-actions-unsorted.gyp │ └── many-actions.gyp ├── module │ ├── gyptest-default.py │ └── src │ │ ├── lib1.c │ │ ├── lib2.c │ │ ├── module.gyp │ │ └── program.c ├── msvs │ ├── buildevents │ │ ├── buildevents.gyp │ │ ├── gyptest-msbuild-supports-prepostbuild.py │ │ ├── gyptest-ninja-warnings.py │ │ └── main.cc │ ├── config_attrs │ │ ├── gyptest-config_attrs.py │ │ ├── hello.c │ │ └── hello.gyp │ ├── express │ │ ├── base │ │ │ └── base.gyp │ │ ├── express.gyp │ │ └── gyptest-express.py │ ├── external_builder │ │ ├── external.gyp │ │ ├── external_builder.py │ │ ├── gyptest-all.py │ │ ├── hello.cpp │ │ ├── hello.z │ │ ├── msbuild_action.py │ │ └── msbuild_rule.py │ ├── filters │ │ ├── filters.gyp │ │ ├── gyptest-filters-2008.py │ │ └── gyptest-filters-2010.py │ ├── list_excluded │ │ ├── gyptest-all.py │ │ ├── hello.cpp │ │ ├── hello_exclude.gyp │ │ └── hello_mac.cpp │ ├── missing_sources │ │ ├── gyptest-missing.py │ │ └── hello_missing.gyp │ ├── multiple_actions_error_handling │ │ ├── action_fail.py │ │ ├── action_succeed.py │ │ ├── actions.gyp │ │ └── gyptest.py │ ├── props │ │ ├── AppName.props │ │ ├── AppName.vsprops │ │ ├── gyptest-props.py │ │ ├── hello.c │ │ └── hello.gyp │ ├── rules_stdout_stderr │ │ ├── dummy.bar │ │ ├── dummy.foo │ │ ├── gyptest-rules-stdout-stderr.py │ │ ├── rule_stderr.py │ │ ├── rule_stdout.py │ │ └── rules-stdout-stderr.gyp │ ├── shared_output │ │ ├── common.gypi │ │ ├── gyptest-shared_output.py │ │ ├── hello.c │ │ ├── hello.gyp │ │ └── there │ │ │ ├── there.c │ │ │ └── there.gyp │ └── uldi2010 │ │ ├── gyptest-all.py │ │ ├── hello.c │ │ ├── hello.gyp │ │ └── hello2.c ├── multiple-targets │ ├── gyptest-all.py │ ├── gyptest-default.py │ └── src │ │ ├── common.c │ │ ├── multiple.gyp │ │ ├── prog1.c │ │ └── prog2.c ├── ninja │ ├── action-rule-hash │ │ ├── gyptest-action-rule-hash.py │ │ └── subdir │ │ │ ├── action-rule-hash.gyp │ │ │ └── emit.py │ ├── action_dependencies │ │ ├── gyptest-action-dependencies.py │ │ └── src │ │ │ ├── a.c │ │ │ ├── a.h │ │ │ ├── action_dependencies.gyp │ │ │ ├── b.c │ │ │ ├── b.h │ │ │ ├── c.c │ │ │ ├── c.h │ │ │ └── emit.py │ ├── chained-dependency │ │ ├── chained-dependency.gyp │ │ ├── chained.c │ │ └── gyptest-chained-dependency.py │ ├── empty-and-non-empty-duplicate-name │ │ ├── gyptest-empty-and-non-empty-duplicate-name.py │ │ ├── subdir │ │ │ └── included.gyp │ │ └── test.gyp │ ├── normalize-paths-win │ │ ├── gyptest-normalize-paths.py │ │ ├── hello.cc │ │ └── normalize-paths.gyp │ ├── s-needs-no-depfiles │ │ ├── empty.s │ │ ├── gyptest-s-needs-no-depfiles.py │ │ └── s-needs-no-depfiles.gyp │ ├── solibs_avoid_relinking │ │ ├── gyptest-solibs-avoid-relinking.py │ │ ├── main.cc │ │ ├── solib.cc │ │ └── solibs_avoid_relinking.gyp │ ├── use-console │ │ ├── foo.bar │ │ ├── gyptest-use-console.py │ │ └── use-console.gyp │ └── use-custom-environment-files │ │ ├── gyptest-use-custom-environment-files.py │ │ ├── use-custom-environment-files.cc │ │ └── use-custom-environment-files.gyp ├── no-cpp │ ├── gyptest-no-cpp.py │ └── src │ │ ├── call-f-main.c │ │ ├── empty-main.c │ │ ├── f.cc │ │ └── test.gyp ├── no-output │ ├── gyptest-no-output.py │ └── src │ │ └── nooutput.gyp ├── product │ ├── gyptest-product.py │ ├── hello.c │ └── product.gyp ├── prune_targets │ ├── gyptest-prune-targets.py │ ├── lib1.cc │ ├── lib2.cc │ ├── lib3.cc │ ├── lib_indirect.cc │ ├── program.cc │ ├── test1.gyp │ └── test2.gyp ├── relative │ ├── foo │ │ ├── a │ │ │ ├── a.cc │ │ │ ├── a.gyp │ │ │ └── c │ │ │ │ ├── c.cc │ │ │ │ └── c.gyp │ │ └── b │ │ │ ├── b.cc │ │ │ └── b.gyp │ └── gyptest-default.py ├── rename │ ├── filecase │ │ ├── file.c │ │ ├── test-casesensitive.gyp │ │ └── test.gyp │ └── gyptest-filecase.py ├── restat │ ├── gyptest-restat.py │ └── src │ │ ├── create_intermediate.py │ │ ├── restat.gyp │ │ └── touch.py ├── rules-dirname │ ├── gyptest-dirname.py │ └── src │ │ ├── actions.gyp │ │ ├── copy-file.py │ │ └── subdir │ │ ├── a │ │ └── b │ │ │ ├── c.gencc │ │ │ └── c.printvars │ │ ├── foo │ │ └── bar │ │ │ ├── baz.gencc │ │ │ └── baz.printvars │ │ ├── input-rule-dirname.gyp │ │ ├── main.cc │ │ ├── nodir.gencc │ │ └── printvars.py ├── rules-rebuild │ ├── gyptest-all.py │ ├── gyptest-default.py │ └── src │ │ ├── main.c │ │ ├── make-sources.py │ │ ├── prog1.in │ │ ├── prog2.in │ │ └── same_target.gyp ├── rules-use-built-dependencies │ ├── gyptest-use-built-dependencies.py │ └── src │ │ ├── main.cc │ │ └── use-built-dependencies-rule.gyp ├── rules-variables │ ├── gyptest-rules-variables.py │ └── src │ │ ├── input_ext.c │ │ ├── input_name │ │ └── test.c │ │ ├── input_path │ │ └── subdir │ │ │ └── test.c │ │ ├── subdir │ │ ├── input_dirname.c │ │ └── test.c │ │ ├── test.input_root.c │ │ └── variables.gyp ├── rules │ ├── gyptest-all.py │ ├── gyptest-default.py │ ├── gyptest-input-root.py │ ├── gyptest-special-variables.py │ └── src │ │ ├── actions.gyp │ │ ├── an_asm.S │ │ ├── as.bat │ │ ├── copy-file.py │ │ ├── external │ │ ├── external.gyp │ │ ├── file1.in │ │ └── file2.in │ │ ├── input-root.gyp │ │ ├── noaction │ │ ├── file1.in │ │ └── no_action_with_rules_fails.gyp │ │ ├── rule.py │ │ ├── somefile.ext │ │ ├── special-variables.gyp │ │ ├── subdir1 │ │ ├── executable.gyp │ │ ├── function1.in │ │ ├── function2.in │ │ └── program.c │ │ ├── subdir2 │ │ ├── both_rule_and_action_input.gyp │ │ ├── file1.in │ │ ├── file2.in │ │ ├── never_used.gyp │ │ ├── no_action.gyp │ │ ├── no_inputs.gyp │ │ ├── none.gyp │ │ └── program.c │ │ ├── subdir3 │ │ ├── executable2.gyp │ │ ├── function3.in │ │ └── program.c │ │ └── subdir4 │ │ ├── asm-function.assem │ │ ├── build-asm.gyp │ │ └── program.c ├── same-gyp-name │ ├── gyptest-all.py │ ├── gyptest-default.py │ ├── gyptest-library.py │ ├── library │ │ ├── one │ │ │ └── sub.gyp │ │ ├── test.gyp │ │ └── two │ │ │ └── sub.gyp │ └── src │ │ ├── all.gyp │ │ ├── subdir1 │ │ ├── executable.gyp │ │ └── main1.cc │ │ └── subdir2 │ │ ├── executable.gyp │ │ └── main2.cc ├── same-rule-output-file-name │ ├── gyptest-all.py │ └── src │ │ ├── subdir1 │ │ └── subdir1.gyp │ │ ├── subdir2 │ │ └── subdir2.gyp │ │ ├── subdirs.gyp │ │ └── touch.py ├── same-source-file-name │ ├── gyptest-all.py │ ├── gyptest-default.py │ ├── gyptest-pass-executable.py │ ├── gyptest-pass-shared.py │ ├── gyptest-static.py │ └── src │ │ ├── all.gyp │ │ ├── double-executable.gyp │ │ ├── double-shared.gyp │ │ ├── double-static.gyp │ │ ├── func.c │ │ ├── prog1.c │ │ ├── prog2.c │ │ ├── prog3.c │ │ ├── subdir1 │ │ └── func.c │ │ └── subdir2 │ │ └── func.c ├── same-target-name-different-directory │ ├── gyptest-all.py │ └── src │ │ ├── subdir1 │ │ └── subdir1.gyp │ │ ├── subdir2 │ │ └── subdir2.gyp │ │ ├── subdirs.gyp │ │ └── touch.py ├── same-target-name │ ├── gyptest-same-target-name.py │ └── src │ │ ├── all.gyp │ │ ├── executable1.gyp │ │ └── executable2.gyp ├── sanitize-rule-names │ ├── blah.S │ ├── gyptest-sanitize-rule-names.py │ ├── hello.cc │ ├── sanitize-rule-names.gyp │ └── script.py ├── self-dependency │ ├── common.gypi │ ├── dep.gyp │ ├── gyptest-self-dependency.py │ └── self_dependency.gyp ├── sibling │ ├── gyptest-all.py │ ├── gyptest-relocate.py │ └── src │ │ ├── build │ │ └── all.gyp │ │ ├── prog1 │ │ ├── prog1.c │ │ └── prog1.gyp │ │ └── prog2 │ │ ├── prog2.c │ │ └── prog2.gyp ├── small │ └── gyptest-small.py ├── standalone-static-library │ ├── gyptest-standalone-static-library.py │ ├── invalid.gyp │ ├── mylib.c │ ├── mylib.gyp │ └── prog.c ├── standalone │ ├── gyptest-standalone.py │ └── standalone.gyp ├── subdirectory │ ├── gyptest-SYMROOT-all.py │ ├── gyptest-SYMROOT-default.py │ ├── gyptest-subdir-all.py │ ├── gyptest-subdir-default.py │ ├── gyptest-subdir2-deep.py │ ├── gyptest-top-all.py │ ├── gyptest-top-default.py │ └── src │ │ ├── prog1.c │ │ ├── prog1.gyp │ │ ├── subdir │ │ ├── prog2.c │ │ ├── prog2.gyp │ │ └── subdir2 │ │ │ ├── prog3.c │ │ │ └── prog3.gyp │ │ └── symroot.gypi ├── symlinks │ ├── gyptest-symlinks.py │ ├── hello.c │ └── hello.gyp ├── target │ ├── gyptest-target.py │ ├── hello.c │ └── target.gyp ├── toolsets │ ├── gyptest-toolsets.py │ ├── main.cc │ ├── toolsets.cc │ ├── toolsets.gyp │ └── toolsets_shared.cc ├── toplevel-dir │ ├── gyptest-toplevel-dir.py │ └── src │ │ ├── sub1 │ │ ├── main.gyp │ │ └── prog1.c │ │ └── sub2 │ │ ├── prog2.c │ │ └── prog2.gyp ├── variables │ ├── commands │ │ ├── commands-repeated.gyp │ │ ├── commands-repeated.gyp.stdout │ │ ├── commands-repeated.gypd.golden │ │ ├── commands.gyp │ │ ├── commands.gyp.ignore-env.stdout │ │ ├── commands.gyp.stdout │ │ ├── commands.gypd.golden │ │ ├── commands.gypi │ │ ├── gyptest-commands-ignore-env.py │ │ ├── gyptest-commands-repeated-multidir.py │ │ ├── gyptest-commands-repeated.py │ │ ├── gyptest-commands.py │ │ ├── repeated_multidir │ │ │ ├── dir_1 │ │ │ │ └── test_1.gyp │ │ │ ├── dir_2 │ │ │ │ └── test_2.gyp │ │ │ ├── main.gyp │ │ │ ├── print_cwd_basename.py │ │ │ └── repeated_command_common.gypi │ │ ├── test.py │ │ └── update_golden │ ├── empty │ │ ├── empty.gyp │ │ ├── empty.gypi │ │ └── gyptest-empty.py │ ├── filelist │ │ ├── filelist.gyp.stdout │ │ ├── filelist.gypd.golden │ │ ├── gyptest-filelist-golden.py │ │ ├── gyptest-filelist.py │ │ ├── src │ │ │ ├── dummy.py │ │ │ ├── filelist.gyp │ │ │ └── filelist2.gyp │ │ └── update_golden │ ├── latelate │ │ ├── gyptest-latelate.py │ │ └── src │ │ │ ├── latelate.gyp │ │ │ └── program.cc │ └── variable-in-path │ │ ├── C1 │ │ └── hello.cc │ │ ├── gyptest-variable-in-path.py │ │ └── variable-in-path.gyp ├── win │ ├── asm-files │ │ ├── asm-files.gyp │ │ ├── b.s │ │ ├── c.S │ │ └── hello.cc │ ├── batch-file-action │ │ ├── batch-file-action.gyp │ │ ├── infile │ │ └── somecmd.bat │ ├── command-quote │ │ ├── a.S │ │ ├── bat with spaces.bat │ │ ├── command-quote.gyp │ │ ├── go.bat │ │ └── subdir │ │ │ └── and │ │ │ └── another │ │ │ └── in-subdir.gyp │ ├── compiler-flags │ │ ├── additional-include-dirs.cc │ │ ├── additional-include-dirs.gyp │ │ ├── additional-options.cc │ │ ├── additional-options.gyp │ │ ├── analysis.gyp │ │ ├── buffer-security-check.gyp │ │ ├── buffer-security.cc │ │ ├── calling-convention-cdecl.def │ │ ├── calling-convention-fastcall.def │ │ ├── calling-convention-stdcall.def │ │ ├── calling-convention-vectorcall.def │ │ ├── calling-convention.cc │ │ ├── calling-convention.gyp │ │ ├── character-set-mbcs.cc │ │ ├── character-set-unicode.cc │ │ ├── character-set.gyp │ │ ├── compile-as-managed.cc │ │ ├── compile-as-managed.gyp │ │ ├── compile-as-winrt.cc │ │ ├── compile-as-winrt.gyp │ │ ├── debug-format.gyp │ │ ├── default-char-is-unsigned.cc │ │ ├── default-char-is-unsigned.gyp │ │ ├── disable-specific-warnings.cc │ │ ├── disable-specific-warnings.gyp │ │ ├── enable-enhanced-instruction-set.cc │ │ ├── enable-enhanced-instruction-set.gyp │ │ ├── exception-handling-on.cc │ │ ├── exception-handling.gyp │ │ ├── floating-point-model-fast.cc │ │ ├── floating-point-model-precise.cc │ │ ├── floating-point-model-strict.cc │ │ ├── floating-point-model.gyp │ │ ├── force-include-files-with-precompiled.cc │ │ ├── force-include-files.cc │ │ ├── force-include-files.gyp │ │ ├── function-level-linking.cc │ │ ├── function-level-linking.gyp │ │ ├── hello.cc │ │ ├── optimizations.gyp │ │ ├── pdbname-override.gyp │ │ ├── pdbname.cc │ │ ├── pdbname.gyp │ │ ├── precomp.cc │ │ ├── rtti-on.cc │ │ ├── rtti.gyp │ │ ├── runtime-checks.cc │ │ ├── runtime-checks.gyp │ │ ├── runtime-library-md.cc │ │ ├── runtime-library-mdd.cc │ │ ├── runtime-library-mt.cc │ │ ├── runtime-library-mtd.cc │ │ ├── runtime-library.gyp │ │ ├── spectre-mitigation.gyp │ │ ├── subdir │ │ │ └── header.h │ │ ├── treat-wchar-t-as-built-in-type.gyp │ │ ├── treat-wchar-t-as-built-in-type1.cc │ │ ├── treat-wchar-t-as-built-in-type2.cc │ │ ├── uninit.cc │ │ ├── warning-as-error.cc │ │ ├── warning-as-error.gyp │ │ ├── warning-level.gyp │ │ ├── warning-level1.cc │ │ ├── warning-level2.cc │ │ ├── warning-level3.cc │ │ └── warning-level4.cc │ ├── enable-winrt │ │ ├── dllmain.cc │ │ └── enable-winrt.gyp │ ├── generator-output-different-drive │ │ ├── gyptest-generator-output-different-drive.py │ │ ├── prog.c │ │ └── prog.gyp │ ├── gyptest-asm-files.py │ ├── gyptest-cl-additional-include-dirs.py │ ├── gyptest-cl-additional-options.py │ ├── gyptest-cl-analysis.py │ ├── gyptest-cl-buffer-security-check.py │ ├── gyptest-cl-calling-convention.py │ ├── gyptest-cl-character-set.py │ ├── gyptest-cl-compile-as-managed.py │ ├── gyptest-cl-compile-as-winrt.py │ ├── gyptest-cl-debug-format.py │ ├── gyptest-cl-default-char-is-unsigned.py │ ├── gyptest-cl-disable-specific-warnings.py │ ├── gyptest-cl-enable-enhanced-instruction-set.py │ ├── gyptest-cl-exception-handling.py │ ├── gyptest-cl-floating-point-model.py │ ├── gyptest-cl-force-include-files.py │ ├── gyptest-cl-function-level-linking.py │ ├── gyptest-cl-optimizations.py │ ├── gyptest-cl-pdbname-override.py │ ├── gyptest-cl-pdbname.py │ ├── gyptest-cl-rtti.py │ ├── gyptest-cl-runtime-checks.py │ ├── gyptest-cl-runtime-library.py │ ├── gyptest-cl-treat-wchar-t-as-built-in-type.py │ ├── gyptest-cl-warning-as-error.py │ ├── gyptest-cl-warning-level.py │ ├── gyptest-command-quote.py │ ├── gyptest-crosscompile-ar.py │ ├── gyptest-lib-ltcg.py │ ├── gyptest-link-additional-deps.py │ ├── gyptest-link-additional-options.py │ ├── gyptest-link-aslr.py │ ├── gyptest-link-base-address.py │ ├── gyptest-link-debug-info.py │ ├── gyptest-link-default-libs.py │ ├── gyptest-link-deffile.py │ ├── gyptest-link-defrelink.py │ ├── gyptest-link-delay-load-dlls.py │ ├── gyptest-link-embed-manifest.py │ ├── gyptest-link-enable-uac.py │ ├── gyptest-link-enable-winrt-app-revision.py │ ├── gyptest-link-enable-winrt-target-platform-version.py │ ├── gyptest-link-enable-winrt.py │ ├── gyptest-link-entrypointsymbol.py │ ├── gyptest-link-fixed-base.py │ ├── gyptest-link-force-symbol-reference.py │ ├── gyptest-link-generate-manifest.py │ ├── gyptest-link-incremental.py │ ├── gyptest-link-large-address-aware.py │ ├── gyptest-link-large-pdb.py │ ├── gyptest-link-library-adjust.py │ ├── gyptest-link-library-directories.py │ ├── gyptest-link-ltcg.py │ ├── gyptest-link-mapfile.py │ ├── gyptest-link-nodefaultlib.py │ ├── gyptest-link-noimportlib.py │ ├── gyptest-link-nxcompat.py │ ├── gyptest-link-opt-icf.py │ ├── gyptest-link-opt-ref.py │ ├── gyptest-link-ordering.py │ ├── gyptest-link-outputfile.py │ ├── gyptest-link-pdb-no-output.py │ ├── gyptest-link-pdb-output.py │ ├── gyptest-link-pdb.py │ ├── gyptest-link-pgo.py │ ├── gyptest-link-profile.py │ ├── gyptest-link-restat-importlib.py │ ├── gyptest-link-safeseh.py │ ├── gyptest-link-shard.py │ ├── gyptest-link-stacksize.py │ ├── gyptest-link-subsystem.py │ ├── gyptest-link-target-machine.py │ ├── gyptest-link-tsaware.py │ ├── gyptest-link-uldi-depending-on-module.py │ ├── gyptest-link-uldi.py │ ├── gyptest-link-unsupported-manifest.py │ ├── gyptest-link-update-manifest.py │ ├── gyptest-link-warnings-as-errors.py │ ├── gyptest-long-command-line.py │ ├── gyptest-macro-projectname.py │ ├── gyptest-macro-targetext.py │ ├── gyptest-macro-targetfilename.py │ ├── gyptest-macro-targetname.py │ ├── gyptest-macro-targetpath.py │ ├── gyptest-macro-vcinstalldir.py │ ├── gyptest-macros-containing-gyp.py │ ├── gyptest-macros-in-inputs-and-outputs.py │ ├── gyptest-midl-excluded.py │ ├── gyptest-midl-includedirs.py │ ├── gyptest-midl-rules.py │ ├── gyptest-ml-safeseh.py │ ├── gyptest-quoting-commands.py │ ├── gyptest-rc-build.py │ ├── gyptest-sys.py │ ├── gyptest-system-include.py │ ├── idl-excluded │ │ ├── bad.idl │ │ ├── copy-file.py │ │ ├── idl-excluded.gyp │ │ └── program.cc │ ├── idl-includedirs │ │ ├── hello.cc │ │ ├── idl-includedirs.gyp │ │ └── subdir │ │ │ ├── bar.idl │ │ │ └── foo.idl │ ├── idl-rules │ │ ├── Window.idl │ │ ├── basic-idl.gyp │ │ ├── history_indexer.idl │ │ ├── history_indexer_user.cc │ │ └── idl_compiler.py │ ├── importlib │ │ ├── dll_no_exports.cc │ │ ├── has-exports.cc │ │ ├── hello.cc │ │ ├── importlib.gyp │ │ └── noimplib.gyp │ ├── large-pdb │ │ ├── dllmain.cc │ │ ├── large-pdb.gyp │ │ └── main.cc │ ├── lib-crosscompile │ │ ├── answer.cc │ │ ├── answer.h │ │ └── use_host_ar.gyp │ ├── lib-flags │ │ ├── answer.cc │ │ ├── answer.h │ │ └── ltcg.gyp │ ├── linker-flags │ │ ├── a │ │ │ ├── x.cc │ │ │ └── z.cc │ │ ├── additional-deps.cc │ │ ├── additional-deps.gyp │ │ ├── additional-options.gyp │ │ ├── aslr.gyp │ │ ├── b │ │ │ └── y.cc │ │ ├── base-address.gyp │ │ ├── debug-info.gyp │ │ ├── deffile-multiple.gyp │ │ ├── deffile.cc │ │ ├── deffile.def │ │ ├── deffile.gyp │ │ ├── delay-load-dlls.gyp │ │ ├── delay-load.cc │ │ ├── embed-manifest.gyp │ │ ├── enable-uac.gyp │ │ ├── entrypointsymbol.cc │ │ ├── entrypointsymbol.gyp │ │ ├── extra.manifest │ │ ├── extra2.manifest │ │ ├── fixed-base.gyp │ │ ├── force-symbol-reference.gyp │ │ ├── generate-manifest.gyp │ │ ├── hello.cc │ │ ├── incremental.gyp │ │ ├── inline_test.cc │ │ ├── inline_test.h │ │ ├── inline_test_main.cc │ │ ├── large-address-aware.gyp │ │ ├── library-adjust.cc │ │ ├── library-adjust.gyp │ │ ├── library-directories-define.cc │ │ ├── library-directories-reference.cc │ │ ├── library-directories.gyp │ │ ├── link-ordering.gyp │ │ ├── link-warning.cc │ │ ├── ltcg.gyp │ │ ├── main-crt.c │ │ ├── manifest-in-comment.cc │ │ ├── mapfile.cc │ │ ├── mapfile.gyp │ │ ├── no-default-libs.cc │ │ ├── no-default-libs.gyp │ │ ├── nodefaultlib.cc │ │ ├── nodefaultlib.gyp │ │ ├── nxcompat.gyp │ │ ├── opt-icf.cc │ │ ├── opt-icf.gyp │ │ ├── opt-ref.cc │ │ ├── opt-ref.gyp │ │ ├── outputfile.gyp │ │ ├── pdb-output.gyp │ │ ├── pgo.gyp │ │ ├── profile.gyp │ │ ├── program-database.gyp │ │ ├── safeseh.gyp │ │ ├── safeseh_hello.cc │ │ ├── safeseh_zero.asm │ │ ├── safeseh_zero64.asm │ │ ├── stacksize.gyp │ │ ├── subdir │ │ │ └── library.gyp │ │ ├── subsystem-windows.cc │ │ ├── subsystem.gyp │ │ ├── target-machine.gyp │ │ ├── tsaware.gyp │ │ ├── unsupported-manifest.gyp │ │ ├── update_pgd.py │ │ ├── warn-as-error.gyp │ │ ├── x.cc │ │ ├── y.cc │ │ └── z.cc │ ├── long-command-line │ │ ├── function.cc │ │ ├── hello.cc │ │ └── long-command-line.gyp │ ├── ml-safeseh │ │ ├── a.asm │ │ ├── hello.cc │ │ └── ml-safeseh.gyp │ ├── precompiled │ │ ├── gyptest-all.py │ │ ├── hello.c │ │ ├── hello.gyp │ │ ├── hello2.c │ │ └── precomp.c │ ├── rc-build │ │ ├── Resource.h │ │ ├── hello.cpp │ │ ├── hello.gyp │ │ ├── hello.h │ │ ├── hello.ico │ │ ├── hello.rc │ │ ├── hello3.rc │ │ ├── small.ico │ │ ├── subdir │ │ │ ├── hello2.rc │ │ │ └── include.h │ │ └── targetver.h │ ├── shard │ │ ├── hello.cc │ │ ├── hello1.cc │ │ ├── hello2.cc │ │ ├── hello3.cc │ │ ├── hello4.cc │ │ ├── shard.gyp │ │ └── shard_ref.gyp │ ├── system-include │ │ ├── bar │ │ │ └── header.h │ │ ├── common │ │ │ └── commonheader.h │ │ ├── foo │ │ │ └── header.h │ │ ├── main.cc │ │ └── test.gyp │ ├── uldi │ │ ├── a.cc │ │ ├── b.cc │ │ ├── dll.cc │ │ ├── exe.cc │ │ ├── main.cc │ │ ├── uldi-depending-on-module.gyp │ │ └── uldi.gyp │ ├── vs-macros │ │ ├── as.py │ │ ├── containing-gyp.gyp │ │ ├── do_stuff.py │ │ ├── hello.cc │ │ ├── input-output-macros.gyp │ │ ├── input.S │ │ ├── projectname.gyp │ │ ├── stuff.blah │ │ ├── targetext.gyp │ │ ├── targetfilename.gyp │ │ ├── targetname.gyp │ │ ├── targetpath.gyp │ │ ├── test_exists.py │ │ └── vcinstalldir.gyp │ ├── win-driver-target-type │ │ ├── win-driver-target-type.c │ │ ├── win-driver-target-type.gyp │ │ ├── win-driver-target-type.h │ │ └── win-driver-target-type.rc │ ├── win-tool │ │ ├── copies_readonly_files.gyp │ │ └── gyptest-win-tool-handles-readonly-files.py │ ├── winrt-app-type-revision │ │ ├── dllmain.cc │ │ └── winrt-app-type-revison.gyp │ └── winrt-target-platform-version │ │ ├── dllmain.cc │ │ └── winrt-target-platform-version.gyp └── xcode-ninja │ └── list_excluded │ ├── gyptest-all.py │ ├── hello.cpp │ ├── hello_exclude.gyp │ └── hello_excluded.cpp └── tools ├── README ├── Xcode ├── README └── Specifications │ ├── gyp.pbfilespec │ └── gyp.xclangspec ├── emacs ├── README ├── gyp-tests.el ├── gyp.el ├── run-unit-tests.sh └── testdata │ ├── media.gyp │ └── media.gyp.fontified ├── graphviz.py ├── pretty_gyp.py ├── pretty_sln.py └── pretty_vcproj.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/AUTHORS -------------------------------------------------------------------------------- /DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/DEPS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/LICENSE -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /PRESUBMIT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/PRESUBMIT.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/README.md -------------------------------------------------------------------------------- /codereview.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/codereview.settings -------------------------------------------------------------------------------- /data/win/large-pdb-shim.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/data/win/large-pdb-shim.cc -------------------------------------------------------------------------------- /gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/gyp -------------------------------------------------------------------------------- /gyp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/gyp.bat -------------------------------------------------------------------------------- /gyp_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/gyp_main.py -------------------------------------------------------------------------------- /gyptest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/gyptest.py -------------------------------------------------------------------------------- /pylib/gyp/MSVSNew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/MSVSNew.py -------------------------------------------------------------------------------- /pylib/gyp/MSVSProject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/MSVSProject.py -------------------------------------------------------------------------------- /pylib/gyp/MSVSSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/MSVSSettings.py -------------------------------------------------------------------------------- /pylib/gyp/MSVSSettings_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/MSVSSettings_test.py -------------------------------------------------------------------------------- /pylib/gyp/MSVSToolFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/MSVSToolFile.py -------------------------------------------------------------------------------- /pylib/gyp/MSVSUserFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/MSVSUserFile.py -------------------------------------------------------------------------------- /pylib/gyp/MSVSUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/MSVSUtil.py -------------------------------------------------------------------------------- /pylib/gyp/MSVSVersion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/MSVSVersion.py -------------------------------------------------------------------------------- /pylib/gyp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/__init__.py -------------------------------------------------------------------------------- /pylib/gyp/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/common.py -------------------------------------------------------------------------------- /pylib/gyp/common_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/common_test.py -------------------------------------------------------------------------------- /pylib/gyp/easy_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/easy_xml.py -------------------------------------------------------------------------------- /pylib/gyp/easy_xml_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/easy_xml_test.py -------------------------------------------------------------------------------- /pylib/gyp/flock_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/flock_tool.py -------------------------------------------------------------------------------- /pylib/gyp/generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pylib/gyp/generator/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/generator/analyzer.py -------------------------------------------------------------------------------- /pylib/gyp/generator/cmake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/generator/cmake.py -------------------------------------------------------------------------------- /pylib/gyp/generator/eclipse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/generator/eclipse.py -------------------------------------------------------------------------------- /pylib/gyp/generator/gypd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/generator/gypd.py -------------------------------------------------------------------------------- /pylib/gyp/generator/gypsh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/generator/gypsh.py -------------------------------------------------------------------------------- /pylib/gyp/generator/make.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/generator/make.py -------------------------------------------------------------------------------- /pylib/gyp/generator/msvs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/generator/msvs.py -------------------------------------------------------------------------------- /pylib/gyp/generator/msvs_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/generator/msvs_test.py -------------------------------------------------------------------------------- /pylib/gyp/generator/ninja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/generator/ninja.py -------------------------------------------------------------------------------- /pylib/gyp/generator/ninja_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/generator/ninja_test.py -------------------------------------------------------------------------------- /pylib/gyp/generator/xcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/generator/xcode.py -------------------------------------------------------------------------------- /pylib/gyp/generator/xcode_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/generator/xcode_test.py -------------------------------------------------------------------------------- /pylib/gyp/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/input.py -------------------------------------------------------------------------------- /pylib/gyp/input_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/input_test.py -------------------------------------------------------------------------------- /pylib/gyp/mac_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/mac_tool.py -------------------------------------------------------------------------------- /pylib/gyp/msvs_emulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/msvs_emulation.py -------------------------------------------------------------------------------- /pylib/gyp/ninja_syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/ninja_syntax.py -------------------------------------------------------------------------------- /pylib/gyp/simple_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/simple_copy.py -------------------------------------------------------------------------------- /pylib/gyp/win_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/win_tool.py -------------------------------------------------------------------------------- /pylib/gyp/xcode_emulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/xcode_emulation.py -------------------------------------------------------------------------------- /pylib/gyp/xcode_ninja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/xcode_ninja.py -------------------------------------------------------------------------------- /pylib/gyp/xcodeproj_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/xcodeproj_file.py -------------------------------------------------------------------------------- /pylib/gyp/xml_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/pylib/gyp/xml_fix.py -------------------------------------------------------------------------------- /samples/samples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/samples/samples -------------------------------------------------------------------------------- /samples/samples.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/samples/samples.bat -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/setup.py -------------------------------------------------------------------------------- /test/actions-bare/gyptest-bare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/actions-bare/gyptest-bare.py -------------------------------------------------------------------------------- /test/actions-bare/src/bare.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/actions-bare/src/bare.gyp -------------------------------------------------------------------------------- /test/actions-bare/src/bare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/actions-bare/src/bare.py -------------------------------------------------------------------------------- /test/actions-depfile/depfile.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/actions-depfile/depfile.gyp -------------------------------------------------------------------------------- /test/actions-depfile/gyptest-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/actions-depfile/gyptest-all.py -------------------------------------------------------------------------------- /test/actions-depfile/input.txt: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /test/actions-depfile/touch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/actions-depfile/touch.py -------------------------------------------------------------------------------- /test/actions-multiple/gyptest-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/actions-multiple/gyptest-all.py -------------------------------------------------------------------------------- /test/actions-multiple/src/actions.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/actions-multiple/src/actions.gyp -------------------------------------------------------------------------------- /test/actions-multiple/src/copyfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/actions-multiple/src/copyfile.py -------------------------------------------------------------------------------- /test/actions-multiple/src/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/actions-multiple/src/filter.py -------------------------------------------------------------------------------- /test/actions-multiple/src/foo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/actions-multiple/src/foo.c -------------------------------------------------------------------------------- /test/actions-multiple/src/input.txt: -------------------------------------------------------------------------------- 1 | hello there 2 | -------------------------------------------------------------------------------- /test/actions-multiple/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/actions-multiple/src/main.c -------------------------------------------------------------------------------- /test/actions-none/gyptest-none.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/actions-none/gyptest-none.py -------------------------------------------------------------------------------- /test/actions-none/src/fake_cross.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/actions-none/src/fake_cross.py -------------------------------------------------------------------------------- /test/actions-none/src/foo.cc: -------------------------------------------------------------------------------- 1 | foo.cc 2 | -------------------------------------------------------------------------------- /test/actions-subdir/gyptest-action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/actions-subdir/gyptest-action.py -------------------------------------------------------------------------------- /test/actions-subdir/src/make-file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/actions-subdir/src/make-file.py -------------------------------------------------------------------------------- /test/actions-subdir/src/none.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/actions-subdir/src/none.gyp -------------------------------------------------------------------------------- /test/actions/generated-header/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/actions/generated-header/main.cc -------------------------------------------------------------------------------- /test/actions/gyptest-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/actions/gyptest-all.py -------------------------------------------------------------------------------- /test/actions/gyptest-default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/actions/gyptest-default.py -------------------------------------------------------------------------------- /test/actions/gyptest-errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/actions/gyptest-errors.py -------------------------------------------------------------------------------- /test/actions/src/actions.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/actions/src/actions.gyp -------------------------------------------------------------------------------- /test/actions/src/confirm-dep-files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/actions/src/confirm-dep-files.py -------------------------------------------------------------------------------- /test/actions/src/subdir1/counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/actions/src/subdir1/counter.py -------------------------------------------------------------------------------- /test/actions/src/subdir1/program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/actions/src/subdir1/program.c -------------------------------------------------------------------------------- /test/actions/src/subdir2/make-file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/actions/src/subdir2/make-file.py -------------------------------------------------------------------------------- /test/actions/src/subdir2/none.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/actions/src/subdir2/none.gyp -------------------------------------------------------------------------------- /test/additional-targets/src/all.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/additional-targets/src/all.gyp -------------------------------------------------------------------------------- /test/analyzer/common.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/analyzer/common.gypi -------------------------------------------------------------------------------- /test/analyzer/gyptest-analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/analyzer/gyptest-analyzer.py -------------------------------------------------------------------------------- /test/analyzer/static_library_test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/analyzer/static_library_test.gyp -------------------------------------------------------------------------------- /test/analyzer/subdir/subdir.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/analyzer/subdir/subdir.gyp -------------------------------------------------------------------------------- /test/analyzer/subdir2/subdir.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/analyzer/subdir2/subdir.gyp -------------------------------------------------------------------------------- /test/analyzer/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/analyzer/test.gyp -------------------------------------------------------------------------------- /test/analyzer/test2.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/analyzer/test2.gyp -------------------------------------------------------------------------------- /test/analyzer/test2.includes.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/analyzer/test2.includes.gypi -------------------------------------------------------------------------------- /test/analyzer/test3.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/analyzer/test3.gyp -------------------------------------------------------------------------------- /test/analyzer/test4.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/analyzer/test4.gyp -------------------------------------------------------------------------------- /test/analyzer/test5.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/analyzer/test5.gyp -------------------------------------------------------------------------------- /test/arflags/gyptest-arflags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/arflags/gyptest-arflags.py -------------------------------------------------------------------------------- /test/arflags/lib.cc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/arflags/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/arflags/test.gyp -------------------------------------------------------------------------------- /test/assembly/gyptest-assembly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/assembly/gyptest-assembly.py -------------------------------------------------------------------------------- /test/assembly/gyptest-override.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/assembly/gyptest-override.py -------------------------------------------------------------------------------- /test/assembly/src/as.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | :: Mock windows assembler. 3 | cl /MD /c %1 /Fo"%2" 4 | 5 | -------------------------------------------------------------------------------- /test/assembly/src/assembly.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/assembly/src/assembly.gyp -------------------------------------------------------------------------------- /test/assembly/src/lib1.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/assembly/src/lib1.S -------------------------------------------------------------------------------- /test/assembly/src/lib1.c: -------------------------------------------------------------------------------- 1 | int lib1_function(void) { 2 | return 42; 3 | } 4 | -------------------------------------------------------------------------------- /test/assembly/src/override.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/assembly/src/override.gyp -------------------------------------------------------------------------------- /test/assembly/src/override_asm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/assembly/src/override_asm.asm -------------------------------------------------------------------------------- /test/assembly/src/program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/assembly/src/program.c -------------------------------------------------------------------------------- /test/build-option/gyptest-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/build-option/gyptest-build.py -------------------------------------------------------------------------------- /test/build-option/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/build-option/hello.c -------------------------------------------------------------------------------- /test/build-option/hello.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/build-option/hello.gyp -------------------------------------------------------------------------------- /test/builddir/gyptest-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/builddir/gyptest-all.py -------------------------------------------------------------------------------- /test/builddir/gyptest-default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/builddir/gyptest-default.py -------------------------------------------------------------------------------- /test/builddir/src/builddir.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/builddir/src/builddir.gypi -------------------------------------------------------------------------------- /test/builddir/src/func1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/builddir/src/func1.c -------------------------------------------------------------------------------- /test/builddir/src/func2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/builddir/src/func2.c -------------------------------------------------------------------------------- /test/builddir/src/func3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/builddir/src/func3.c -------------------------------------------------------------------------------- /test/builddir/src/func4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/builddir/src/func4.c -------------------------------------------------------------------------------- /test/builddir/src/func5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/builddir/src/func5.c -------------------------------------------------------------------------------- /test/builddir/src/prog1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/builddir/src/prog1.c -------------------------------------------------------------------------------- /test/builddir/src/prog1.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/builddir/src/prog1.gyp -------------------------------------------------------------------------------- /test/builddir/src/subdir2/prog2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/builddir/src/subdir2/prog2.c -------------------------------------------------------------------------------- /test/builddir/src/subdir2/prog2.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/builddir/src/subdir2/prog2.gyp -------------------------------------------------------------------------------- /test/cflags/cflags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/cflags/cflags.c -------------------------------------------------------------------------------- /test/cflags/cflags.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/cflags/cflags.gyp -------------------------------------------------------------------------------- /test/cflags/gyptest-cflags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/cflags/gyptest-cflags.py -------------------------------------------------------------------------------- /test/compilable/gyptest-headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/compilable/gyptest-headers.py -------------------------------------------------------------------------------- /test/compilable/src/headers.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/compilable/src/headers.gyp -------------------------------------------------------------------------------- /test/compilable/src/lib1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/compilable/src/lib1.cpp -------------------------------------------------------------------------------- /test/compilable/src/lib1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/compilable/src/lib1.hpp -------------------------------------------------------------------------------- /test/compilable/src/program.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/compilable/src/program.cpp -------------------------------------------------------------------------------- /test/compiler-override/cxxtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/compiler-override/cxxtest.cc -------------------------------------------------------------------------------- /test/compiler-override/my_cc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/compiler-override/my_cc.py -------------------------------------------------------------------------------- /test/compiler-override/my_cxx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/compiler-override/my_cxx.py -------------------------------------------------------------------------------- /test/compiler-override/my_ld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/compiler-override/my_ld.py -------------------------------------------------------------------------------- /test/compiler-override/my_nm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/compiler-override/my_nm.py -------------------------------------------------------------------------------- /test/compiler-override/my_readelf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/compiler-override/my_readelf.py -------------------------------------------------------------------------------- /test/compiler-override/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/compiler-override/test.c -------------------------------------------------------------------------------- /test/conditions/elseif/elseif.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/conditions/elseif/elseif.gyp -------------------------------------------------------------------------------- /test/conditions/elseif/program.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/conditions/elseif/program.cc -------------------------------------------------------------------------------- /test/configurations/invalid/type.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/configurations/invalid/type.gyp -------------------------------------------------------------------------------- /test/configurations/target_platform/left.c: -------------------------------------------------------------------------------- 1 | const char *message(void) { 2 | return "left"; 3 | } 4 | -------------------------------------------------------------------------------- /test/configurations/target_platform/right.c: -------------------------------------------------------------------------------- 1 | const char *message(void) { 2 | return "right"; 3 | } 4 | -------------------------------------------------------------------------------- /test/copies/gyptest-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/copies/gyptest-all.py -------------------------------------------------------------------------------- /test/copies/gyptest-attribs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/copies/gyptest-attribs.py -------------------------------------------------------------------------------- /test/copies/gyptest-default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/copies/gyptest-default.py -------------------------------------------------------------------------------- /test/copies/gyptest-samedir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/copies/gyptest-samedir.py -------------------------------------------------------------------------------- /test/copies/gyptest-slash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/copies/gyptest-slash.py -------------------------------------------------------------------------------- /test/copies/gyptest-updir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/copies/gyptest-updir.py -------------------------------------------------------------------------------- /test/copies/src/copies-attribs.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/copies/src/copies-attribs.gyp -------------------------------------------------------------------------------- /test/copies/src/copies-samedir.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/copies/src/copies-samedir.gyp -------------------------------------------------------------------------------- /test/copies/src/copies-slash.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/copies/src/copies-slash.gyp -------------------------------------------------------------------------------- /test/copies/src/copies-updir.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/copies/src/copies-updir.gyp -------------------------------------------------------------------------------- /test/copies/src/copies.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/copies/src/copies.gyp -------------------------------------------------------------------------------- /test/copies/src/directory/file3: -------------------------------------------------------------------------------- 1 | file3 contents 2 | -------------------------------------------------------------------------------- /test/copies/src/directory/file4: -------------------------------------------------------------------------------- 1 | file4 contents 2 | -------------------------------------------------------------------------------- /test/copies/src/directory/subdir/file5: -------------------------------------------------------------------------------- 1 | file5 contents 2 | -------------------------------------------------------------------------------- /test/copies/src/executable-file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/copies/src/executable-file.sh -------------------------------------------------------------------------------- /test/copies/src/file1: -------------------------------------------------------------------------------- 1 | file1 contents 2 | -------------------------------------------------------------------------------- /test/copies/src/file2: -------------------------------------------------------------------------------- 1 | file2 contents 2 | -------------------------------------------------------------------------------- /test/copies/src/foo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/copies/src/foo.c -------------------------------------------------------------------------------- /test/copies/src/parentdir/subdir/file6: -------------------------------------------------------------------------------- 1 | file6 contents 2 | -------------------------------------------------------------------------------- /test/custom-generator/mygenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/custom-generator/mygenerator.py -------------------------------------------------------------------------------- /test/custom-generator/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/custom-generator/test.gyp -------------------------------------------------------------------------------- /test/cxxflags/cxxflags.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/cxxflags/cxxflags.cc -------------------------------------------------------------------------------- /test/cxxflags/cxxflags.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/cxxflags/cxxflags.gyp -------------------------------------------------------------------------------- /test/cxxflags/gyptest-cxxflags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/cxxflags/gyptest-cxxflags.py -------------------------------------------------------------------------------- /test/defines/defines-env.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/defines/defines-env.gyp -------------------------------------------------------------------------------- /test/defines/defines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/defines/defines.c -------------------------------------------------------------------------------- /test/defines/defines.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/defines/defines.gyp -------------------------------------------------------------------------------- /test/defines/gyptest-defines-env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/defines/gyptest-defines-env.py -------------------------------------------------------------------------------- /test/defines/gyptest-defines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/defines/gyptest-defines.py -------------------------------------------------------------------------------- /test/dependencies/a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/dependencies/a.c -------------------------------------------------------------------------------- /test/dependencies/adso/write_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/dependencies/adso/write_args.py -------------------------------------------------------------------------------- /test/dependencies/b/b.c: -------------------------------------------------------------------------------- 1 | int funcB() { 2 | return 2; 3 | } 4 | -------------------------------------------------------------------------------- /test/dependencies/b/b.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/dependencies/b/b.gyp -------------------------------------------------------------------------------- /test/dependencies/b/b3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/dependencies/b/b3.c -------------------------------------------------------------------------------- /test/dependencies/c/c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/dependencies/c/c.c -------------------------------------------------------------------------------- /test/dependencies/c/c.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/dependencies/c/c.gyp -------------------------------------------------------------------------------- /test/dependencies/c/d.c: -------------------------------------------------------------------------------- 1 | int funcD() { 2 | return 4; 3 | } 4 | -------------------------------------------------------------------------------- /test/dependencies/extra_targets.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/dependencies/extra_targets.gyp -------------------------------------------------------------------------------- /test/dependencies/gyptest-lib-only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/dependencies/gyptest-lib-only.py -------------------------------------------------------------------------------- /test/dependencies/lib_only.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/dependencies/lib_only.gyp -------------------------------------------------------------------------------- /test/dependencies/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/dependencies/main.c -------------------------------------------------------------------------------- /test/dependencies/module-dep/a.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/dependencies/module-dep/a.cc -------------------------------------------------------------------------------- /test/dependencies/module-dep/dll.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/dependencies/module-dep/dll.cc -------------------------------------------------------------------------------- /test/dependencies/module-dep/exe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/dependencies/module-dep/exe.cc -------------------------------------------------------------------------------- /test/dependencies/none_traversal.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/dependencies/none_traversal.gyp -------------------------------------------------------------------------------- /test/dependency-copy/gyptest-copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/dependency-copy/gyptest-copy.py -------------------------------------------------------------------------------- /test/dependency-copy/src/copies.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/dependency-copy/src/copies.gyp -------------------------------------------------------------------------------- /test/determinism/determinism.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/determinism/determinism.gyp -------------------------------------------------------------------------------- /test/determinism/empty-targets.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/determinism/empty-targets.gyp -------------------------------------------------------------------------------- /test/determinism/gyptest-solibs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/determinism/gyptest-solibs.py -------------------------------------------------------------------------------- /test/determinism/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/determinism/main.cc -------------------------------------------------------------------------------- /test/determinism/needed-variables.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/determinism/needed-variables.gyp -------------------------------------------------------------------------------- /test/determinism/rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/determinism/rule.py -------------------------------------------------------------------------------- /test/determinism/solib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/determinism/solib.cc -------------------------------------------------------------------------------- /test/determinism/solibs.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/determinism/solibs.gyp -------------------------------------------------------------------------------- /test/empty-target/empty-target.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/empty-target/empty-target.gyp -------------------------------------------------------------------------------- /test/errors/dependency_cycle.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/errors/dependency_cycle.gyp -------------------------------------------------------------------------------- /test/errors/duplicate_basenames.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/errors/duplicate_basenames.gyp -------------------------------------------------------------------------------- /test/errors/duplicate_node.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/errors/duplicate_node.gyp -------------------------------------------------------------------------------- /test/errors/duplicate_rule.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/errors/duplicate_rule.gyp -------------------------------------------------------------------------------- /test/errors/duplicate_targets.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/errors/duplicate_targets.gyp -------------------------------------------------------------------------------- /test/errors/error_command.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/errors/error_command.gyp -------------------------------------------------------------------------------- /test/errors/file_cycle0.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/errors/file_cycle0.gyp -------------------------------------------------------------------------------- /test/errors/file_cycle1.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/errors/file_cycle1.gyp -------------------------------------------------------------------------------- /test/errors/gyptest-errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/errors/gyptest-errors.py -------------------------------------------------------------------------------- /test/errors/missing_command.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/errors/missing_command.gyp -------------------------------------------------------------------------------- /test/errors/missing_dep.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/errors/missing_dep.gyp -------------------------------------------------------------------------------- /test/errors/missing_targets.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/errors/missing_targets.gyp -------------------------------------------------------------------------------- /test/escaping/colon/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/escaping/colon/test.gyp -------------------------------------------------------------------------------- /test/escaping/gyptest-colon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/escaping/gyptest-colon.py -------------------------------------------------------------------------------- /test/exclusion/exclusion.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/exclusion/exclusion.gyp -------------------------------------------------------------------------------- /test/exclusion/gyptest-exclusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/exclusion/gyptest-exclusion.py -------------------------------------------------------------------------------- /test/exclusion/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/exclusion/hello.c -------------------------------------------------------------------------------- /test/external-cross-compile/src/bogus1.cc: -------------------------------------------------------------------------------- 1 | From bogus1.cc 2 | -------------------------------------------------------------------------------- /test/external-cross-compile/src/bogus2.c: -------------------------------------------------------------------------------- 1 | From bogus2.c 2 | -------------------------------------------------------------------------------- /test/external-cross-compile/src/test1.cc: -------------------------------------------------------------------------------- 1 | From test1.cc 2 | -------------------------------------------------------------------------------- /test/external-cross-compile/src/test2.c: -------------------------------------------------------------------------------- 1 | From test2.c 2 | -------------------------------------------------------------------------------- /test/external-cross-compile/src/test3.cc: -------------------------------------------------------------------------------- 1 | From test3.cc 2 | -------------------------------------------------------------------------------- /test/external-cross-compile/src/test4.c: -------------------------------------------------------------------------------- 1 | From test4.c 2 | -------------------------------------------------------------------------------- /test/generator-output/copies/file1: -------------------------------------------------------------------------------- 1 | file1 contents 2 | -------------------------------------------------------------------------------- /test/generator-output/copies/file2: -------------------------------------------------------------------------------- 1 | file2 contents 2 | -------------------------------------------------------------------------------- /test/generator-output/copies/subdir/file3: -------------------------------------------------------------------------------- 1 | file3 contents 2 | -------------------------------------------------------------------------------- /test/generator-output/copies/subdir/file4: -------------------------------------------------------------------------------- 1 | file4 contents 2 | -------------------------------------------------------------------------------- /test/generator-output/mac-bundle/app.order: -------------------------------------------------------------------------------- 1 | _main 2 | -------------------------------------------------------------------------------- /test/generator-output/mac-bundle/header.h: -------------------------------------------------------------------------------- 1 | int f(); 2 | -------------------------------------------------------------------------------- /test/generator-output/mac-bundle/main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /test/generator-output/mac-bundle/resource.sb: -------------------------------------------------------------------------------- 1 | A text file. 2 | -------------------------------------------------------------------------------- /test/generator-output/rules/rules.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/generator-output/rules/rules.gyp -------------------------------------------------------------------------------- /test/generator-output/rules/subdir2/file1.in0: -------------------------------------------------------------------------------- 1 | Hello from file1.in0 2 | -------------------------------------------------------------------------------- /test/generator-output/rules/subdir2/file2.in0: -------------------------------------------------------------------------------- 1 | Hello from file2.in0 2 | -------------------------------------------------------------------------------- /test/generator-output/rules/subdir2/file3.in1: -------------------------------------------------------------------------------- 1 | Hello from file3.in1 2 | -------------------------------------------------------------------------------- /test/generator-output/rules/subdir2/file4.in1: -------------------------------------------------------------------------------- 1 | Hello from file4.in1 2 | -------------------------------------------------------------------------------- /test/generator-output/src/inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/generator-output/src/inc.h -------------------------------------------------------------------------------- /test/generator-output/src/inc1/include1.h: -------------------------------------------------------------------------------- 1 | #define INCLUDE1_STRING "inc1/include1.h" 2 | -------------------------------------------------------------------------------- /test/generator-output/src/prog1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/generator-output/src/prog1.c -------------------------------------------------------------------------------- /test/generator-output/src/prog1.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/generator-output/src/prog1.gyp -------------------------------------------------------------------------------- /test/generator-output/src/subdir2/inc2/include2.h: -------------------------------------------------------------------------------- 1 | #define INCLUDE2_STRING "inc2/include2.h" 2 | -------------------------------------------------------------------------------- /test/generator-output/src/subdir3/inc3/include3.h: -------------------------------------------------------------------------------- 1 | #define INCLUDE3_STRING "inc3/include3.h" 2 | -------------------------------------------------------------------------------- /test/gyp-defines/defines.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/gyp-defines/defines.gyp -------------------------------------------------------------------------------- /test/gyp-defines/echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/gyp-defines/echo.py -------------------------------------------------------------------------------- /test/gyp-defines/gyptest-regyp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/gyp-defines/gyptest-regyp.py -------------------------------------------------------------------------------- /test/hard_dependency/src/a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/hard_dependency/src/a.c -------------------------------------------------------------------------------- /test/hard_dependency/src/a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/hard_dependency/src/a.h -------------------------------------------------------------------------------- /test/hard_dependency/src/b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/hard_dependency/src/b.c -------------------------------------------------------------------------------- /test/hard_dependency/src/b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/hard_dependency/src/b.h -------------------------------------------------------------------------------- /test/hard_dependency/src/c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/hard_dependency/src/c.c -------------------------------------------------------------------------------- /test/hard_dependency/src/c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/hard_dependency/src/c.h -------------------------------------------------------------------------------- /test/hard_dependency/src/d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/hard_dependency/src/d.c -------------------------------------------------------------------------------- /test/hard_dependency/src/emit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/hard_dependency/src/emit.py -------------------------------------------------------------------------------- /test/hello/gyptest-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/hello/gyptest-all.py -------------------------------------------------------------------------------- /test/hello/gyptest-default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/hello/gyptest-default.py -------------------------------------------------------------------------------- /test/hello/gyptest-disable-regyp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/hello/gyptest-disable-regyp.py -------------------------------------------------------------------------------- /test/hello/gyptest-regyp-output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/hello/gyptest-regyp-output.py -------------------------------------------------------------------------------- /test/hello/gyptest-regyp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/hello/gyptest-regyp.py -------------------------------------------------------------------------------- /test/hello/gyptest-target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/hello/gyptest-target.py -------------------------------------------------------------------------------- /test/hello/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/hello/hello.c -------------------------------------------------------------------------------- /test/hello/hello.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/hello/hello.gyp -------------------------------------------------------------------------------- /test/hello/hello2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/hello/hello2.c -------------------------------------------------------------------------------- /test/hello/hello2.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/hello/hello2.gyp -------------------------------------------------------------------------------- /test/home_dot_gyp/src/all.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/home_dot_gyp/src/all.gyp -------------------------------------------------------------------------------- /test/home_dot_gyp/src/printfoo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/home_dot_gyp/src/printfoo.c -------------------------------------------------------------------------------- /test/include_dirs/gyptest-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/include_dirs/gyptest-all.py -------------------------------------------------------------------------------- /test/include_dirs/gyptest-default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/include_dirs/gyptest-default.py -------------------------------------------------------------------------------- /test/include_dirs/src/inc.h: -------------------------------------------------------------------------------- 1 | #define INC_STRING "inc.h" 2 | -------------------------------------------------------------------------------- /test/include_dirs/src/inc1/include1.h: -------------------------------------------------------------------------------- 1 | #define INCLUDE1_STRING "include1.h" 2 | -------------------------------------------------------------------------------- /test/include_dirs/src/includes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/include_dirs/src/includes.c -------------------------------------------------------------------------------- /test/include_dirs/src/includes.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/include_dirs/src/includes.gyp -------------------------------------------------------------------------------- /test/include_dirs/src/subdir/inc.h: -------------------------------------------------------------------------------- 1 | #define INC_STRING "subdir/inc.h" 2 | -------------------------------------------------------------------------------- /test/intermediate_dir/src/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/intermediate_dir/src/script.py -------------------------------------------------------------------------------- /test/intermediate_dir/src/shared_infile.txt: -------------------------------------------------------------------------------- 1 | dummy input 2 | -------------------------------------------------------------------------------- /test/intermediate_dir/src/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/intermediate_dir/src/test.gyp -------------------------------------------------------------------------------- /test/intermediate_dir/src/test2.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/intermediate_dir/src/test2.gyp -------------------------------------------------------------------------------- /test/ios/app-bundle/TestApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/ios/app-bundle/TestApp/main.m -------------------------------------------------------------------------------- /test/ios/app-bundle/test-archs.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/ios/app-bundle/test-archs.gyp -------------------------------------------------------------------------------- /test/ios/app-bundle/test-device.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/ios/app-bundle/test-device.gyp -------------------------------------------------------------------------------- /test/ios/app-bundle/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/ios/app-bundle/test.gyp -------------------------------------------------------------------------------- /test/ios/app-bundle/tool_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/ios/app-bundle/tool_main.cc -------------------------------------------------------------------------------- /test/ios/copies-with-xcode-envvars/empty.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /test/ios/copies-with-xcode-envvars/file0: -------------------------------------------------------------------------------- 1 | file0 contents 2 | -------------------------------------------------------------------------------- /test/ios/copies-with-xcode-envvars/file1: -------------------------------------------------------------------------------- 1 | file1 contents 2 | -------------------------------------------------------------------------------- /test/ios/copies-with-xcode-envvars/file10: -------------------------------------------------------------------------------- 1 | file10 contents 2 | -------------------------------------------------------------------------------- /test/ios/copies-with-xcode-envvars/file11: -------------------------------------------------------------------------------- 1 | file11 contents 2 | -------------------------------------------------------------------------------- /test/ios/copies-with-xcode-envvars/file2: -------------------------------------------------------------------------------- 1 | file2 contents 2 | -------------------------------------------------------------------------------- /test/ios/copies-with-xcode-envvars/file3: -------------------------------------------------------------------------------- 1 | file3 contents 2 | -------------------------------------------------------------------------------- /test/ios/copies-with-xcode-envvars/file4: -------------------------------------------------------------------------------- 1 | file4 contents 2 | -------------------------------------------------------------------------------- /test/ios/copies-with-xcode-envvars/file5: -------------------------------------------------------------------------------- 1 | file5 contents 2 | -------------------------------------------------------------------------------- /test/ios/copies-with-xcode-envvars/file6: -------------------------------------------------------------------------------- 1 | file6 contents 2 | -------------------------------------------------------------------------------- /test/ios/copies-with-xcode-envvars/file7: -------------------------------------------------------------------------------- 1 | file7 contents 2 | -------------------------------------------------------------------------------- /test/ios/copies-with-xcode-envvars/file8: -------------------------------------------------------------------------------- 1 | file8 contents 2 | -------------------------------------------------------------------------------- /test/ios/copies-with-xcode-envvars/file9: -------------------------------------------------------------------------------- 1 | file9 contents 2 | -------------------------------------------------------------------------------- /test/ios/extension/extension.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/ios/extension/extension.gyp -------------------------------------------------------------------------------- /test/ios/framework/framework.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/ios/framework/framework.gyp -------------------------------------------------------------------------------- /test/ios/gyptest-app-ios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/ios/gyptest-app-ios.py -------------------------------------------------------------------------------- /test/ios/gyptest-archs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/ios/gyptest-archs.py -------------------------------------------------------------------------------- /test/ios/gyptest-crosscompile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/ios/gyptest-crosscompile.py -------------------------------------------------------------------------------- /test/ios/gyptest-deployment-target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/ios/gyptest-deployment-target.py -------------------------------------------------------------------------------- /test/ios/gyptest-extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/ios/gyptest-extension.py -------------------------------------------------------------------------------- /test/ios/gyptest-framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/ios/gyptest-framework.py -------------------------------------------------------------------------------- /test/ios/gyptest-watch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/ios/gyptest-watch.py -------------------------------------------------------------------------------- /test/ios/gyptest-xcode-ninja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/ios/gyptest-xcode-ninja.py -------------------------------------------------------------------------------- /test/ios/watch/WatchApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/ios/watch/WatchApp/Info.plist -------------------------------------------------------------------------------- /test/ios/watch/WatchContainer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/ios/watch/WatchContainer/main.m -------------------------------------------------------------------------------- /test/ios/watch/watch.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/ios/watch/watch.gyp -------------------------------------------------------------------------------- /test/ios/xctests/App/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/ios/xctests/App/AppDelegate.h -------------------------------------------------------------------------------- /test/ios/xctests/App/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/ios/xctests/App/AppDelegate.m -------------------------------------------------------------------------------- /test/ios/xctests/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/ios/xctests/App/Info.plist -------------------------------------------------------------------------------- /test/ios/xctests/App/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/ios/xctests/App/ViewController.h -------------------------------------------------------------------------------- /test/ios/xctests/App/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/ios/xctests/App/ViewController.m -------------------------------------------------------------------------------- /test/ios/xctests/App/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/ios/xctests/App/main.m -------------------------------------------------------------------------------- /test/ios/xctests/AppTests/AppTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/ios/xctests/AppTests/AppTests.m -------------------------------------------------------------------------------- /test/ios/xctests/AppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/ios/xctests/AppTests/Info.plist -------------------------------------------------------------------------------- /test/ios/xctests/gyptest-xctests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/ios/xctests/gyptest-xctests.py -------------------------------------------------------------------------------- /test/ios/xctests/xctests.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/ios/xctests/xctests.gyp -------------------------------------------------------------------------------- /test/lib/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/lib/README.txt -------------------------------------------------------------------------------- /test/lib/TestCmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/lib/TestCmd.py -------------------------------------------------------------------------------- /test/lib/TestCommon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/lib/TestCommon.py -------------------------------------------------------------------------------- /test/lib/TestGyp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/lib/TestGyp.py -------------------------------------------------------------------------------- /test/lib/TestMac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/lib/TestMac.py -------------------------------------------------------------------------------- /test/lib/TestWin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/lib/TestWin.py -------------------------------------------------------------------------------- /test/library/gyptest-shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/library/gyptest-shared.py -------------------------------------------------------------------------------- /test/library/gyptest-static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/library/gyptest-static.py -------------------------------------------------------------------------------- /test/library/src/lib1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/library/src/lib1.c -------------------------------------------------------------------------------- /test/library/src/lib1_moveable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/library/src/lib1_moveable.c -------------------------------------------------------------------------------- /test/library/src/lib2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/library/src/lib2.c -------------------------------------------------------------------------------- /test/library/src/lib2_moveable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/library/src/lib2_moveable.c -------------------------------------------------------------------------------- /test/library/src/library.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/library/src/library.gyp -------------------------------------------------------------------------------- /test/library/src/program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/library/src/program.c -------------------------------------------------------------------------------- /test/library_dirs/subdir/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/library_dirs/subdir/README.txt -------------------------------------------------------------------------------- /test/library_dirs/subdir/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/library_dirs/subdir/hello.cc -------------------------------------------------------------------------------- /test/library_dirs/subdir/mylib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/library_dirs/subdir/mylib.cc -------------------------------------------------------------------------------- /test/library_dirs/subdir/mylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/library_dirs/subdir/mylib.h -------------------------------------------------------------------------------- /test/library_dirs/subdir/test-win.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/library_dirs/subdir/test-win.gyp -------------------------------------------------------------------------------- /test/library_dirs/subdir/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/library_dirs/subdir/test.gyp -------------------------------------------------------------------------------- /test/link-dependency/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/link-dependency/main.c -------------------------------------------------------------------------------- /test/link-dependency/mymalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/link-dependency/mymalloc.c -------------------------------------------------------------------------------- /test/link-dependency/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/link-dependency/test.gyp -------------------------------------------------------------------------------- /test/link-objects/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/link-objects/base.c -------------------------------------------------------------------------------- /test/link-objects/extra.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void extra() { 4 | printf("PASS\n"); 5 | } 6 | -------------------------------------------------------------------------------- /test/link-objects/gyptest-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/link-objects/gyptest-all.py -------------------------------------------------------------------------------- /test/link-objects/link-objects.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/link-objects/link-objects.gyp -------------------------------------------------------------------------------- /test/linux/gyptest-implicit-rpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/linux/gyptest-implicit-rpath.py -------------------------------------------------------------------------------- /test/linux/gyptest-target-rpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/linux/gyptest-target-rpath.py -------------------------------------------------------------------------------- /test/linux/implicit-rpath/file.c: -------------------------------------------------------------------------------- 1 | void f() {} 2 | -------------------------------------------------------------------------------- /test/linux/implicit-rpath/main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /test/linux/implicit-rpath/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/linux/implicit-rpath/test.gyp -------------------------------------------------------------------------------- /test/linux/ldflags-duplicates/lib1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/linux/ldflags-duplicates/lib1.c -------------------------------------------------------------------------------- /test/linux/ldflags-duplicates/lib2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/linux/ldflags-duplicates/lib2.c -------------------------------------------------------------------------------- /test/linux/ldflags-duplicates/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/linux/ldflags-duplicates/main.c -------------------------------------------------------------------------------- /test/linux/target-rpath/file.c: -------------------------------------------------------------------------------- 1 | void f() {} 2 | -------------------------------------------------------------------------------- /test/linux/target-rpath/main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /test/linux/target-rpath/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/linux/target-rpath/test.gyp -------------------------------------------------------------------------------- /test/mac/app-bundle/TestApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/app-bundle/TestApp/main.m -------------------------------------------------------------------------------- /test/mac/app-bundle/empty.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mac/app-bundle/test-error.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/app-bundle/test-error.gyp -------------------------------------------------------------------------------- /test/mac/app-bundle/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/app-bundle/test.gyp -------------------------------------------------------------------------------- /test/mac/archs/empty_main.cc: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /test/mac/archs/file.mm: -------------------------------------------------------------------------------- 1 | MyInt f() { return 0; } 2 | -------------------------------------------------------------------------------- /test/mac/archs/file_a.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/archs/file_a.cc -------------------------------------------------------------------------------- /test/mac/archs/file_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/archs/file_a.h -------------------------------------------------------------------------------- /test/mac/archs/file_b.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/archs/file_b.cc -------------------------------------------------------------------------------- /test/mac/archs/file_b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/archs/file_b.h -------------------------------------------------------------------------------- /test/mac/archs/file_c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/archs/file_c.cc -------------------------------------------------------------------------------- /test/mac/archs/file_d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/archs/file_d.cc -------------------------------------------------------------------------------- /test/mac/archs/header.h: -------------------------------------------------------------------------------- 1 | typedef int MyInt; 2 | -------------------------------------------------------------------------------- /test/mac/archs/my_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/archs/my_file.cc -------------------------------------------------------------------------------- /test/mac/archs/my_main_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/archs/my_main_file.cc -------------------------------------------------------------------------------- /test/mac/archs/test-archs-x86_64.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/archs/test-archs-x86_64.gyp -------------------------------------------------------------------------------- /test/mac/archs/test-dependencies.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/archs/test-dependencies.gyp -------------------------------------------------------------------------------- /test/mac/archs/test-no-archs.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/archs/test-no-archs.gyp -------------------------------------------------------------------------------- /test/mac/archs/test-valid-archs.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/archs/test-valid-archs.gyp -------------------------------------------------------------------------------- /test/mac/bundle-resources/change.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/bundle-resources/change.sh -------------------------------------------------------------------------------- /test/mac/bundle-resources/secret.txt: -------------------------------------------------------------------------------- 1 | abc 2 | -------------------------------------------------------------------------------- /test/mac/bundle-resources/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/bundle-resources/test.gyp -------------------------------------------------------------------------------- /test/mac/cflags/ccfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/cflags/ccfile.cc -------------------------------------------------------------------------------- /test/mac/cflags/ccfile_withcflags.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/cflags/ccfile_withcflags.cc -------------------------------------------------------------------------------- /test/mac/cflags/cfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/cflags/cfile.c -------------------------------------------------------------------------------- /test/mac/cflags/cppfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/cflags/cppfile.cpp -------------------------------------------------------------------------------- /test/mac/cflags/cxxfile.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/cflags/cxxfile.cxx -------------------------------------------------------------------------------- /test/mac/cflags/mfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/cflags/mfile.m -------------------------------------------------------------------------------- /test/mac/cflags/mmfile.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/cflags/mmfile.mm -------------------------------------------------------------------------------- /test/mac/cflags/mmfile_withcflags.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/cflags/mmfile_withcflags.mm -------------------------------------------------------------------------------- /test/mac/cflags/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/cflags/test.gyp -------------------------------------------------------------------------------- /test/mac/clang-cxx-library/libc++.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/clang-cxx-library/libc++.cc -------------------------------------------------------------------------------- /test/mac/copies-with-xcode-envvars/empty.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /test/mac/copies-with-xcode-envvars/file0: -------------------------------------------------------------------------------- 1 | file0 contents 2 | -------------------------------------------------------------------------------- /test/mac/copies-with-xcode-envvars/file1: -------------------------------------------------------------------------------- 1 | file1 contents 2 | -------------------------------------------------------------------------------- /test/mac/copies-with-xcode-envvars/file10: -------------------------------------------------------------------------------- 1 | file10 contents 2 | -------------------------------------------------------------------------------- /test/mac/copies-with-xcode-envvars/file11: -------------------------------------------------------------------------------- 1 | file11 contents 2 | -------------------------------------------------------------------------------- /test/mac/copies-with-xcode-envvars/file2: -------------------------------------------------------------------------------- 1 | file2 contents 2 | -------------------------------------------------------------------------------- /test/mac/copies-with-xcode-envvars/file3: -------------------------------------------------------------------------------- 1 | file3 contents 2 | -------------------------------------------------------------------------------- /test/mac/copies-with-xcode-envvars/file4: -------------------------------------------------------------------------------- 1 | file4 contents 2 | -------------------------------------------------------------------------------- /test/mac/copies-with-xcode-envvars/file5: -------------------------------------------------------------------------------- 1 | file5 contents 2 | -------------------------------------------------------------------------------- /test/mac/copies-with-xcode-envvars/file6: -------------------------------------------------------------------------------- 1 | file6 contents 2 | -------------------------------------------------------------------------------- /test/mac/copies-with-xcode-envvars/file7: -------------------------------------------------------------------------------- 1 | file7 contents 2 | -------------------------------------------------------------------------------- /test/mac/copies-with-xcode-envvars/file8: -------------------------------------------------------------------------------- 1 | file8 contents 2 | -------------------------------------------------------------------------------- /test/mac/copies-with-xcode-envvars/file9: -------------------------------------------------------------------------------- 1 | file9 contents 2 | -------------------------------------------------------------------------------- /test/mac/copy-dylib/empty.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /test/mac/copy-dylib/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/copy-dylib/test.gyp -------------------------------------------------------------------------------- /test/mac/debuginfo/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/debuginfo/file.c -------------------------------------------------------------------------------- /test/mac/debuginfo/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/debuginfo/test.gyp -------------------------------------------------------------------------------- /test/mac/depend-on-bundle/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | -------------------------------------------------------------------------------- /test/mac/depend-on-bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/depend-on-bundle/Info.plist -------------------------------------------------------------------------------- /test/mac/depend-on-bundle/bundle.c: -------------------------------------------------------------------------------- 1 | int f() { return 42; } 2 | -------------------------------------------------------------------------------- /test/mac/depend-on-bundle/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/depend-on-bundle/test.gyp -------------------------------------------------------------------------------- /test/mac/framework-dirs/calculate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/framework-dirs/calculate.c -------------------------------------------------------------------------------- /test/mac/framework-headers/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/framework-headers/test.gyp -------------------------------------------------------------------------------- /test/mac/framework/TestFramework/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /test/mac/framework/empty.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mac/framework/framework.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/framework/framework.gyp -------------------------------------------------------------------------------- /test/mac/global-settings/src/dir2/file.txt: -------------------------------------------------------------------------------- 1 | File. 2 | -------------------------------------------------------------------------------- /test/mac/gyptest-action-envvars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-action-envvars.py -------------------------------------------------------------------------------- /test/mac/gyptest-app-error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-app-error.py -------------------------------------------------------------------------------- /test/mac/gyptest-app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-app.py -------------------------------------------------------------------------------- /test/mac/gyptest-archs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-archs.py -------------------------------------------------------------------------------- /test/mac/gyptest-bundle-resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-bundle-resources.py -------------------------------------------------------------------------------- /test/mac/gyptest-cflags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-cflags.py -------------------------------------------------------------------------------- /test/mac/gyptest-clang-cxx-library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-clang-cxx-library.py -------------------------------------------------------------------------------- /test/mac/gyptest-copies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-copies.py -------------------------------------------------------------------------------- /test/mac/gyptest-copy-dylib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-copy-dylib.py -------------------------------------------------------------------------------- /test/mac/gyptest-debuginfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-debuginfo.py -------------------------------------------------------------------------------- /test/mac/gyptest-depend-on-bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-depend-on-bundle.py -------------------------------------------------------------------------------- /test/mac/gyptest-deployment-target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-deployment-target.py -------------------------------------------------------------------------------- /test/mac/gyptest-framework-dirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-framework-dirs.py -------------------------------------------------------------------------------- /test/mac/gyptest-framework-headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-framework-headers.py -------------------------------------------------------------------------------- /test/mac/gyptest-framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-framework.py -------------------------------------------------------------------------------- /test/mac/gyptest-global-settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-global-settings.py -------------------------------------------------------------------------------- /test/mac/gyptest-identical-name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-identical-name.py -------------------------------------------------------------------------------- /test/mac/gyptest-infoplist-process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-infoplist-process.py -------------------------------------------------------------------------------- /test/mac/gyptest-installname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-installname.py -------------------------------------------------------------------------------- /test/mac/gyptest-kext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-kext.py -------------------------------------------------------------------------------- /test/mac/gyptest-ldflags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-ldflags.py -------------------------------------------------------------------------------- /test/mac/gyptest-libraries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-libraries.py -------------------------------------------------------------------------------- /test/mac/gyptest-libtool-zero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-libtool-zero.py -------------------------------------------------------------------------------- /test/mac/gyptest-loadable-module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-loadable-module.py -------------------------------------------------------------------------------- /test/mac/gyptest-lto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-lto.py -------------------------------------------------------------------------------- /test/mac/gyptest-objc-arc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-objc-arc.py -------------------------------------------------------------------------------- /test/mac/gyptest-objc-gc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-objc-gc.py -------------------------------------------------------------------------------- /test/mac/gyptest-postbuild-fail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-postbuild-fail.py -------------------------------------------------------------------------------- /test/mac/gyptest-postbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-postbuild.py -------------------------------------------------------------------------------- /test/mac/gyptest-prefixheader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-prefixheader.py -------------------------------------------------------------------------------- /test/mac/gyptest-rebuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-rebuild.py -------------------------------------------------------------------------------- /test/mac/gyptest-rpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-rpath.py -------------------------------------------------------------------------------- /test/mac/gyptest-sdkroot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-sdkroot.py -------------------------------------------------------------------------------- /test/mac/gyptest-sourceless-module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-sourceless-module.py -------------------------------------------------------------------------------- /test/mac/gyptest-strip-default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-strip-default.py -------------------------------------------------------------------------------- /test/mac/gyptest-strip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-strip.py -------------------------------------------------------------------------------- /test/mac/gyptest-swift-library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-swift-library.py -------------------------------------------------------------------------------- /test/mac/gyptest-type-envvars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-type-envvars.py -------------------------------------------------------------------------------- /test/mac/gyptest-unicode-settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-unicode-settings.py -------------------------------------------------------------------------------- /test/mac/gyptest-xcode-env-order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-xcode-env-order.py -------------------------------------------------------------------------------- /test/mac/gyptest-xcode-gcc-clang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-xcode-gcc-clang.py -------------------------------------------------------------------------------- /test/mac/gyptest-xcode-gcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-xcode-gcc.py -------------------------------------------------------------------------------- /test/mac/gyptest-xctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-xctest.py -------------------------------------------------------------------------------- /test/mac/gyptest-xcuitest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/gyptest-xcuitest.py -------------------------------------------------------------------------------- /test/mac/identical-name/proxy/proxy.cc: -------------------------------------------------------------------------------- 1 | // Empty file 2 | 3 | -------------------------------------------------------------------------------- /test/mac/identical-name/proxy/testlib/testlib.cc: -------------------------------------------------------------------------------- 1 | // Empty file 2 | 3 | -------------------------------------------------------------------------------- /test/mac/identical-name/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/identical-name/test.gyp -------------------------------------------------------------------------------- /test/mac/identical-name/test.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/identical-name/test.gypi -------------------------------------------------------------------------------- /test/mac/identical-name/testlib/void.cc: -------------------------------------------------------------------------------- 1 | // Empty file 2 | 3 | -------------------------------------------------------------------------------- /test/mac/infoplist-process/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/infoplist-process/Info.plist -------------------------------------------------------------------------------- /test/mac/infoplist-process/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/infoplist-process/main.c -------------------------------------------------------------------------------- /test/mac/infoplist-process/test1.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/infoplist-process/test1.gyp -------------------------------------------------------------------------------- /test/mac/infoplist-process/test2.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/infoplist-process/test2.gyp -------------------------------------------------------------------------------- /test/mac/infoplist-process/test3.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/infoplist-process/test3.gyp -------------------------------------------------------------------------------- /test/mac/installname/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/installname/Info.plist -------------------------------------------------------------------------------- /test/mac/installname/file.c: -------------------------------------------------------------------------------- 1 | int f() { return 0; } 2 | -------------------------------------------------------------------------------- /test/mac/installname/main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /test/mac/installname/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/installname/test.gyp -------------------------------------------------------------------------------- /test/mac/kext/GypKext/GypKext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/kext/GypKext/GypKext.c -------------------------------------------------------------------------------- /test/mac/kext/kext.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/kext/kext.gyp -------------------------------------------------------------------------------- /test/mac/ldflags-libtool/file.c: -------------------------------------------------------------------------------- 1 | void f() {} 2 | -------------------------------------------------------------------------------- /test/mac/ldflags-libtool/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/ldflags-libtool/test.gyp -------------------------------------------------------------------------------- /test/mac/ldflags/subdirectory/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/ldflags/subdirectory/file.c -------------------------------------------------------------------------------- /test/mac/ldflags/subdirectory/symbol_list.def: -------------------------------------------------------------------------------- 1 | _f 2 | -------------------------------------------------------------------------------- /test/mac/libraries/subdir/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/libraries/subdir/README.txt -------------------------------------------------------------------------------- /test/mac/libraries/subdir/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/libraries/subdir/hello.cc -------------------------------------------------------------------------------- /test/mac/libraries/subdir/mylib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/libraries/subdir/mylib.c -------------------------------------------------------------------------------- /test/mac/libraries/subdir/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/libraries/subdir/test.gyp -------------------------------------------------------------------------------- /test/mac/libtool-zero/mylib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/libtool-zero/mylib.c -------------------------------------------------------------------------------- /test/mac/libtool-zero/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/libtool-zero/test.gyp -------------------------------------------------------------------------------- /test/mac/loadable-module/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/loadable-module/Info.plist -------------------------------------------------------------------------------- /test/mac/loadable-module/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/loadable-module/module.c -------------------------------------------------------------------------------- /test/mac/loadable-module/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/loadable-module/test.gyp -------------------------------------------------------------------------------- /test/mac/lto/asmfile.S: -------------------------------------------------------------------------------- 1 | .globl _asfun 2 | ret 3 | -------------------------------------------------------------------------------- /test/mac/lto/ccfile.cc: -------------------------------------------------------------------------------- 1 | void ccfun() {} 2 | -------------------------------------------------------------------------------- /test/mac/lto/cfile.c: -------------------------------------------------------------------------------- 1 | void cfun() {} 2 | -------------------------------------------------------------------------------- /test/mac/lto/mfile.m: -------------------------------------------------------------------------------- 1 | void mfun() {} 2 | -------------------------------------------------------------------------------- /test/mac/lto/mmfile.mm: -------------------------------------------------------------------------------- 1 | void mmfun() {} 2 | -------------------------------------------------------------------------------- /test/mac/lto/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/lto/test.gyp -------------------------------------------------------------------------------- /test/mac/missing-cfbundlesignature/file.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /test/mac/objc-arc/c-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/objc-arc/c-file.c -------------------------------------------------------------------------------- /test/mac/objc-arc/cc-file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/objc-arc/cc-file.cc -------------------------------------------------------------------------------- /test/mac/objc-arc/m-file-arc-weak.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/objc-arc/m-file-arc-weak.m -------------------------------------------------------------------------------- /test/mac/objc-arc/m-file-no-arc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/objc-arc/m-file-no-arc.m -------------------------------------------------------------------------------- /test/mac/objc-arc/m-file.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/objc-arc/m-file.m -------------------------------------------------------------------------------- /test/mac/objc-arc/mm-file-arc-weak.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/objc-arc/mm-file-arc-weak.mm -------------------------------------------------------------------------------- /test/mac/objc-arc/mm-file-no-arc.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/objc-arc/mm-file-no-arc.mm -------------------------------------------------------------------------------- /test/mac/objc-arc/mm-file.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/objc-arc/mm-file.mm -------------------------------------------------------------------------------- /test/mac/objc-arc/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/objc-arc/test.gyp -------------------------------------------------------------------------------- /test/mac/objc-gc/c-file.c: -------------------------------------------------------------------------------- 1 | void c_fun() {} 2 | -------------------------------------------------------------------------------- /test/mac/objc-gc/cc-file.cc: -------------------------------------------------------------------------------- 1 | void cc_fun() {} 2 | -------------------------------------------------------------------------------- /test/mac/objc-gc/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/objc-gc/main.m -------------------------------------------------------------------------------- /test/mac/objc-gc/needs-gc-mm.mm: -------------------------------------------------------------------------------- 1 | void objcpp_fun() { } 2 | -------------------------------------------------------------------------------- /test/mac/objc-gc/needs-gc.m: -------------------------------------------------------------------------------- 1 | void objc_fun() { } 2 | -------------------------------------------------------------------------------- /test/mac/objc-gc/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/objc-gc/test.gyp -------------------------------------------------------------------------------- /test/mac/postbuild-copy-bundle/copied.txt: -------------------------------------------------------------------------------- 1 | old copied file 2 | -------------------------------------------------------------------------------- /test/mac/postbuild-copy-bundle/empty.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mac/postbuild-copy-bundle/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/postbuild-copy-bundle/main.c -------------------------------------------------------------------------------- /test/mac/postbuild-defaults/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/postbuild-defaults/main.c -------------------------------------------------------------------------------- /test/mac/postbuild-defaults/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/postbuild-defaults/test.gyp -------------------------------------------------------------------------------- /test/mac/postbuild-fail/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/postbuild-fail/file.c -------------------------------------------------------------------------------- /test/mac/postbuild-fail/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/postbuild-fail/test.gyp -------------------------------------------------------------------------------- /test/mac/postbuilds/copy.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cp "$@" 4 | -------------------------------------------------------------------------------- /test/mac/postbuilds/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/postbuilds/file.c -------------------------------------------------------------------------------- /test/mac/postbuilds/file_g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/postbuilds/file_g.c -------------------------------------------------------------------------------- /test/mac/postbuilds/file_h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/postbuilds/file_h.c -------------------------------------------------------------------------------- /test/mac/postbuilds/subdirectory/copied_file.txt: -------------------------------------------------------------------------------- 1 | This file should be copied to the products dir. 2 | -------------------------------------------------------------------------------- /test/mac/postbuilds/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/postbuilds/test.gyp -------------------------------------------------------------------------------- /test/mac/prefixheader/file.c: -------------------------------------------------------------------------------- 1 | MyInt f() { return 0; } 2 | -------------------------------------------------------------------------------- /test/mac/prefixheader/file.cc: -------------------------------------------------------------------------------- 1 | MyInt f() { return 0; } 2 | -------------------------------------------------------------------------------- /test/mac/prefixheader/file.m: -------------------------------------------------------------------------------- 1 | MyInt f() { return 0; } 2 | -------------------------------------------------------------------------------- /test/mac/prefixheader/file.mm: -------------------------------------------------------------------------------- 1 | MyInt f() { return 0; } 2 | -------------------------------------------------------------------------------- /test/mac/prefixheader/header.h: -------------------------------------------------------------------------------- 1 | typedef int MyInt; 2 | -------------------------------------------------------------------------------- /test/mac/prefixheader/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/prefixheader/test.gyp -------------------------------------------------------------------------------- /test/mac/rebuild/TestApp-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/rebuild/TestApp-Info.plist -------------------------------------------------------------------------------- /test/mac/rebuild/delay-touch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/rebuild/delay-touch.sh -------------------------------------------------------------------------------- /test/mac/rebuild/empty.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mac/rebuild/main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /test/mac/rebuild/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/rebuild/test.gyp -------------------------------------------------------------------------------- /test/mac/rpath/file.c: -------------------------------------------------------------------------------- 1 | void f() {} 2 | -------------------------------------------------------------------------------- /test/mac/rpath/main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /test/mac/rpath/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/rpath/test.gyp -------------------------------------------------------------------------------- /test/mac/sdkroot/file.cc: -------------------------------------------------------------------------------- 1 | #include 2 | using std::map; 3 | 4 | int main() { 5 | } 6 | -------------------------------------------------------------------------------- /test/mac/sdkroot/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/sdkroot/test.gyp -------------------------------------------------------------------------------- /test/mac/sdkroot/test_shorthand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/sdkroot/test_shorthand.sh -------------------------------------------------------------------------------- /test/mac/sourceless-module/empty.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /test/mac/sourceless-module/empty.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /test/mac/sourceless-module/fun.c: -------------------------------------------------------------------------------- 1 | int f() { return 42; } 2 | -------------------------------------------------------------------------------- /test/mac/sourceless-module/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/sourceless-module/test.gyp -------------------------------------------------------------------------------- /test/mac/strip/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/strip/file.c -------------------------------------------------------------------------------- /test/mac/strip/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/strip/main.c -------------------------------------------------------------------------------- /test/mac/strip/strip.saves: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/strip/strip.saves -------------------------------------------------------------------------------- /test/mac/strip/subdirectory/nested_file.c: -------------------------------------------------------------------------------- 1 | void nested_f() {} 2 | -------------------------------------------------------------------------------- /test/mac/strip/test-defaults.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/strip/test-defaults.gyp -------------------------------------------------------------------------------- /test/mac/strip/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/strip/test.gyp -------------------------------------------------------------------------------- /test/mac/swift-library/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/swift-library/Info.plist -------------------------------------------------------------------------------- /test/mac/swift-library/file.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/swift-library/file.swift -------------------------------------------------------------------------------- /test/mac/swift-library/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/swift-library/test.gyp -------------------------------------------------------------------------------- /test/mac/type_envvars/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/type_envvars/file.c -------------------------------------------------------------------------------- /test/mac/type_envvars/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/type_envvars/test.gyp -------------------------------------------------------------------------------- /test/mac/unicode-settings/file.cc: -------------------------------------------------------------------------------- 1 | int main() { 2 | } 3 | -------------------------------------------------------------------------------- /test/mac/unicode-settings/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/unicode-settings/test.gyp -------------------------------------------------------------------------------- /test/mac/xcode-env-order/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/xcode-env-order/Info.plist -------------------------------------------------------------------------------- /test/mac/xcode-env-order/file.ext1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mac/xcode-env-order/file.ext2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mac/xcode-env-order/file.ext3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mac/xcode-env-order/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/xcode-env-order/main.c -------------------------------------------------------------------------------- /test/mac/xcode-env-order/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/xcode-env-order/test.gyp -------------------------------------------------------------------------------- /test/mac/xcode-gcc/aliasing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/xcode-gcc/aliasing.cc -------------------------------------------------------------------------------- /test/mac/xcode-gcc/test-clang.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/xcode-gcc/test-clang.gyp -------------------------------------------------------------------------------- /test/mac/xcode-gcc/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/xcode-gcc/test.gyp -------------------------------------------------------------------------------- /test/mac/xcode-gcc/valid_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/xcode-gcc/valid_c.c -------------------------------------------------------------------------------- /test/mac/xcode-gcc/valid_cc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/xcode-gcc/valid_cc.cc -------------------------------------------------------------------------------- /test/mac/xcode-gcc/valid_m.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/xcode-gcc/valid_m.m -------------------------------------------------------------------------------- /test/mac/xcode-gcc/valid_mm.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/xcode-gcc/valid_mm.mm -------------------------------------------------------------------------------- /test/mac/xcode-support-actions/source.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mac/xctest/MyClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/xctest/MyClass.h -------------------------------------------------------------------------------- /test/mac/xctest/MyClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/xctest/MyClass.m -------------------------------------------------------------------------------- /test/mac/xctest/TestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/xctest/TestCase.m -------------------------------------------------------------------------------- /test/mac/xctest/resource.txt: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /test/mac/xctest/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/xctest/test.gyp -------------------------------------------------------------------------------- /test/mac/xcuitest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/xcuitest/Info.plist -------------------------------------------------------------------------------- /test/mac/xcuitest/MyAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/xcuitest/MyAppDelegate.h -------------------------------------------------------------------------------- /test/mac/xcuitest/MyAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/xcuitest/MyAppDelegate.m -------------------------------------------------------------------------------- /test/mac/xcuitest/TestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/xcuitest/TestCase.m -------------------------------------------------------------------------------- /test/mac/xcuitest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/xcuitest/main.m -------------------------------------------------------------------------------- /test/mac/xcuitest/resource.txt: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /test/mac/xcuitest/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/mac/xcuitest/test.gyp -------------------------------------------------------------------------------- /test/make/dependencies.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/make/dependencies.gyp -------------------------------------------------------------------------------- /test/make/gyptest-dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/make/gyptest-dependencies.py -------------------------------------------------------------------------------- /test/make/gyptest-noload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/make/gyptest-noload.py -------------------------------------------------------------------------------- /test/make/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/make/main.cc -------------------------------------------------------------------------------- /test/make/main.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/make/noload/all.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/make/noload/all.gyp -------------------------------------------------------------------------------- /test/make/noload/lib/shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/make/noload/lib/shared.c -------------------------------------------------------------------------------- /test/make/noload/lib/shared.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/make/noload/lib/shared.gyp -------------------------------------------------------------------------------- /test/make/noload/lib/shared.h: -------------------------------------------------------------------------------- 1 | extern const char kSharedStr[]; 2 | -------------------------------------------------------------------------------- /test/make/noload/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/make/noload/main.c -------------------------------------------------------------------------------- /test/make_global_settings/full-toolchain/bar.cc: -------------------------------------------------------------------------------- 1 | #error Not a real source file 2 | -------------------------------------------------------------------------------- /test/make_global_settings/full-toolchain/foo.c: -------------------------------------------------------------------------------- 1 | #error Not a real source file 2 | -------------------------------------------------------------------------------- /test/many-actions/file0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/many-actions/file1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/many-actions/file2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/many-actions/file3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/many-actions/file4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/many-actions/many-actions.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/many-actions/many-actions.gyp -------------------------------------------------------------------------------- /test/module/gyptest-default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/module/gyptest-default.py -------------------------------------------------------------------------------- /test/module/src/lib1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/module/src/lib1.c -------------------------------------------------------------------------------- /test/module/src/lib2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/module/src/lib2.c -------------------------------------------------------------------------------- /test/module/src/module.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/module/src/module.gyp -------------------------------------------------------------------------------- /test/module/src/program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/module/src/program.c -------------------------------------------------------------------------------- /test/msvs/buildevents/buildevents.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/msvs/buildevents/buildevents.gyp -------------------------------------------------------------------------------- /test/msvs/buildevents/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/msvs/buildevents/main.cc -------------------------------------------------------------------------------- /test/msvs/config_attrs/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/msvs/config_attrs/hello.c -------------------------------------------------------------------------------- /test/msvs/config_attrs/hello.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/msvs/config_attrs/hello.gyp -------------------------------------------------------------------------------- /test/msvs/express/base/base.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/msvs/express/base/base.gyp -------------------------------------------------------------------------------- /test/msvs/express/express.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/msvs/express/express.gyp -------------------------------------------------------------------------------- /test/msvs/express/gyptest-express.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/msvs/express/gyptest-express.py -------------------------------------------------------------------------------- /test/msvs/external_builder/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/msvs/external_builder/hello.cpp -------------------------------------------------------------------------------- /test/msvs/external_builder/hello.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/msvs/external_builder/hello.z -------------------------------------------------------------------------------- /test/msvs/filters/filters.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/msvs/filters/filters.gyp -------------------------------------------------------------------------------- /test/msvs/list_excluded/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/msvs/list_excluded/hello.cpp -------------------------------------------------------------------------------- /test/msvs/list_excluded/hello_mac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/msvs/list_excluded/hello_mac.cpp -------------------------------------------------------------------------------- /test/msvs/props/AppName.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/msvs/props/AppName.props -------------------------------------------------------------------------------- /test/msvs/props/AppName.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/msvs/props/AppName.vsprops -------------------------------------------------------------------------------- /test/msvs/props/gyptest-props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/msvs/props/gyptest-props.py -------------------------------------------------------------------------------- /test/msvs/props/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/msvs/props/hello.c -------------------------------------------------------------------------------- /test/msvs/props/hello.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/msvs/props/hello.gyp -------------------------------------------------------------------------------- /test/msvs/shared_output/common.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/msvs/shared_output/common.gypi -------------------------------------------------------------------------------- /test/msvs/shared_output/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/msvs/shared_output/hello.c -------------------------------------------------------------------------------- /test/msvs/shared_output/hello.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/msvs/shared_output/hello.gyp -------------------------------------------------------------------------------- /test/msvs/shared_output/there/there.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/msvs/shared_output/there/there.c -------------------------------------------------------------------------------- /test/msvs/uldi2010/gyptest-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/msvs/uldi2010/gyptest-all.py -------------------------------------------------------------------------------- /test/msvs/uldi2010/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/msvs/uldi2010/hello.c -------------------------------------------------------------------------------- /test/msvs/uldi2010/hello.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/msvs/uldi2010/hello.gyp -------------------------------------------------------------------------------- /test/msvs/uldi2010/hello2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/msvs/uldi2010/hello2.c -------------------------------------------------------------------------------- /test/multiple-targets/gyptest-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/multiple-targets/gyptest-all.py -------------------------------------------------------------------------------- /test/multiple-targets/src/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/multiple-targets/src/common.c -------------------------------------------------------------------------------- /test/multiple-targets/src/prog1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/multiple-targets/src/prog1.c -------------------------------------------------------------------------------- /test/multiple-targets/src/prog2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/multiple-targets/src/prog2.c -------------------------------------------------------------------------------- /test/ninja/chained-dependency/chained.c: -------------------------------------------------------------------------------- 1 | #include "generated/header.h" 2 | 3 | int main(void) { 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /test/ninja/s-needs-no-depfiles/empty.s: -------------------------------------------------------------------------------- 1 | # This file intentionally left blank. 2 | -------------------------------------------------------------------------------- /test/ninja/use-console/foo.bar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/ninja/use-console/foo.bar -------------------------------------------------------------------------------- /test/no-cpp/gyptest-no-cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/no-cpp/gyptest-no-cpp.py -------------------------------------------------------------------------------- /test/no-cpp/src/call-f-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/no-cpp/src/call-f-main.c -------------------------------------------------------------------------------- /test/no-cpp/src/empty-main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /test/no-cpp/src/f.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/no-cpp/src/f.cc -------------------------------------------------------------------------------- /test/no-cpp/src/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/no-cpp/src/test.gyp -------------------------------------------------------------------------------- /test/no-output/gyptest-no-output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/no-output/gyptest-no-output.py -------------------------------------------------------------------------------- /test/no-output/src/nooutput.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/no-output/src/nooutput.gyp -------------------------------------------------------------------------------- /test/product/gyptest-product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/product/gyptest-product.py -------------------------------------------------------------------------------- /test/product/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/product/hello.c -------------------------------------------------------------------------------- /test/product/product.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/product/product.gyp -------------------------------------------------------------------------------- /test/prune_targets/lib1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/prune_targets/lib1.cc -------------------------------------------------------------------------------- /test/prune_targets/lib2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/prune_targets/lib2.cc -------------------------------------------------------------------------------- /test/prune_targets/lib3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/prune_targets/lib3.cc -------------------------------------------------------------------------------- /test/prune_targets/lib_indirect.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/prune_targets/lib_indirect.cc -------------------------------------------------------------------------------- /test/prune_targets/program.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/prune_targets/program.cc -------------------------------------------------------------------------------- /test/prune_targets/test1.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/prune_targets/test1.gyp -------------------------------------------------------------------------------- /test/prune_targets/test2.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/prune_targets/test2.gyp -------------------------------------------------------------------------------- /test/relative/foo/a/a.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/relative/foo/a/a.cc -------------------------------------------------------------------------------- /test/relative/foo/a/a.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/relative/foo/a/a.gyp -------------------------------------------------------------------------------- /test/relative/foo/a/c/c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/relative/foo/a/c/c.cc -------------------------------------------------------------------------------- /test/relative/foo/a/c/c.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/relative/foo/a/c/c.gyp -------------------------------------------------------------------------------- /test/relative/foo/b/b.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/relative/foo/b/b.cc -------------------------------------------------------------------------------- /test/relative/foo/b/b.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/relative/foo/b/b.gyp -------------------------------------------------------------------------------- /test/relative/gyptest-default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/relative/gyptest-default.py -------------------------------------------------------------------------------- /test/rename/filecase/file.c: -------------------------------------------------------------------------------- 1 | int main() { return 0; } 2 | -------------------------------------------------------------------------------- /test/rename/filecase/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rename/filecase/test.gyp -------------------------------------------------------------------------------- /test/rename/gyptest-filecase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rename/gyptest-filecase.py -------------------------------------------------------------------------------- /test/restat/gyptest-restat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/restat/gyptest-restat.py -------------------------------------------------------------------------------- /test/restat/src/restat.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/restat/src/restat.gyp -------------------------------------------------------------------------------- /test/restat/src/touch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/restat/src/touch.py -------------------------------------------------------------------------------- /test/rules-dirname/gyptest-dirname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules-dirname/gyptest-dirname.py -------------------------------------------------------------------------------- /test/rules-dirname/src/actions.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules-dirname/src/actions.gyp -------------------------------------------------------------------------------- /test/rules-dirname/src/copy-file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules-dirname/src/copy-file.py -------------------------------------------------------------------------------- /test/rules-dirname/src/subdir/a/b/c.printvars: -------------------------------------------------------------------------------- 1 | # Empty file for testing build rules 2 | -------------------------------------------------------------------------------- /test/rules-dirname/src/subdir/foo/bar/baz.printvars: -------------------------------------------------------------------------------- 1 | # Empty file for testing build rules 2 | -------------------------------------------------------------------------------- /test/rules-dirname/src/subdir/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules-dirname/src/subdir/main.cc -------------------------------------------------------------------------------- /test/rules-rebuild/gyptest-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules-rebuild/gyptest-all.py -------------------------------------------------------------------------------- /test/rules-rebuild/gyptest-default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules-rebuild/gyptest-default.py -------------------------------------------------------------------------------- /test/rules-rebuild/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules-rebuild/src/main.c -------------------------------------------------------------------------------- /test/rules-rebuild/src/prog1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules-rebuild/src/prog1.in -------------------------------------------------------------------------------- /test/rules-rebuild/src/prog2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules-rebuild/src/prog2.in -------------------------------------------------------------------------------- /test/rules-variables/src/input_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules-variables/src/input_ext.c -------------------------------------------------------------------------------- /test/rules/gyptest-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules/gyptest-all.py -------------------------------------------------------------------------------- /test/rules/gyptest-default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules/gyptest-default.py -------------------------------------------------------------------------------- /test/rules/gyptest-input-root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules/gyptest-input-root.py -------------------------------------------------------------------------------- /test/rules/src/actions.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules/src/actions.gyp -------------------------------------------------------------------------------- /test/rules/src/an_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules/src/an_asm.S -------------------------------------------------------------------------------- /test/rules/src/as.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules/src/as.bat -------------------------------------------------------------------------------- /test/rules/src/copy-file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules/src/copy-file.py -------------------------------------------------------------------------------- /test/rules/src/external/external.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules/src/external/external.gyp -------------------------------------------------------------------------------- /test/rules/src/external/file1.in: -------------------------------------------------------------------------------- 1 | Hello from file1.in 2 | -------------------------------------------------------------------------------- /test/rules/src/external/file2.in: -------------------------------------------------------------------------------- 1 | Hello from file2.in 2 | -------------------------------------------------------------------------------- /test/rules/src/input-root.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules/src/input-root.gyp -------------------------------------------------------------------------------- /test/rules/src/noaction/file1.in: -------------------------------------------------------------------------------- 1 | Hello from file1.in 2 | -------------------------------------------------------------------------------- /test/rules/src/rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules/src/rule.py -------------------------------------------------------------------------------- /test/rules/src/somefile.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/rules/src/special-variables.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules/src/special-variables.gyp -------------------------------------------------------------------------------- /test/rules/src/subdir1/executable.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules/src/subdir1/executable.gyp -------------------------------------------------------------------------------- /test/rules/src/subdir1/function1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules/src/subdir1/function1.in -------------------------------------------------------------------------------- /test/rules/src/subdir1/function2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules/src/subdir1/function2.in -------------------------------------------------------------------------------- /test/rules/src/subdir1/program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules/src/subdir1/program.c -------------------------------------------------------------------------------- /test/rules/src/subdir2/file1.in: -------------------------------------------------------------------------------- 1 | Hello from file1.in 2 | -------------------------------------------------------------------------------- /test/rules/src/subdir2/file2.in: -------------------------------------------------------------------------------- 1 | Hello from file2.in 2 | -------------------------------------------------------------------------------- /test/rules/src/subdir2/never_used.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules/src/subdir2/never_used.gyp -------------------------------------------------------------------------------- /test/rules/src/subdir2/no_action.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules/src/subdir2/no_action.gyp -------------------------------------------------------------------------------- /test/rules/src/subdir2/no_inputs.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules/src/subdir2/no_inputs.gyp -------------------------------------------------------------------------------- /test/rules/src/subdir2/none.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules/src/subdir2/none.gyp -------------------------------------------------------------------------------- /test/rules/src/subdir2/program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules/src/subdir2/program.c -------------------------------------------------------------------------------- /test/rules/src/subdir3/function3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules/src/subdir3/function3.in -------------------------------------------------------------------------------- /test/rules/src/subdir3/program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules/src/subdir3/program.c -------------------------------------------------------------------------------- /test/rules/src/subdir4/build-asm.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules/src/subdir4/build-asm.gyp -------------------------------------------------------------------------------- /test/rules/src/subdir4/program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/rules/src/subdir4/program.c -------------------------------------------------------------------------------- /test/same-gyp-name/gyptest-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/same-gyp-name/gyptest-all.py -------------------------------------------------------------------------------- /test/same-gyp-name/gyptest-default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/same-gyp-name/gyptest-default.py -------------------------------------------------------------------------------- /test/same-gyp-name/gyptest-library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/same-gyp-name/gyptest-library.py -------------------------------------------------------------------------------- /test/same-gyp-name/library/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/same-gyp-name/library/test.gyp -------------------------------------------------------------------------------- /test/same-gyp-name/src/all.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/same-gyp-name/src/all.gyp -------------------------------------------------------------------------------- /test/same-source-file-name/src/func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/same-source-file-name/src/func.c -------------------------------------------------------------------------------- /test/same-target-name/src/all.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/same-target-name/src/all.gyp -------------------------------------------------------------------------------- /test/sanitize-rule-names/blah.S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/sanitize-rule-names/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/sanitize-rule-names/hello.cc -------------------------------------------------------------------------------- /test/sanitize-rule-names/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/sanitize-rule-names/script.py -------------------------------------------------------------------------------- /test/self-dependency/common.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/self-dependency/common.gypi -------------------------------------------------------------------------------- /test/self-dependency/dep.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/self-dependency/dep.gyp -------------------------------------------------------------------------------- /test/sibling/gyptest-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/sibling/gyptest-all.py -------------------------------------------------------------------------------- /test/sibling/gyptest-relocate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/sibling/gyptest-relocate.py -------------------------------------------------------------------------------- /test/sibling/src/build/all.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/sibling/src/build/all.gyp -------------------------------------------------------------------------------- /test/sibling/src/prog1/prog1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/sibling/src/prog1/prog1.c -------------------------------------------------------------------------------- /test/sibling/src/prog1/prog1.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/sibling/src/prog1/prog1.gyp -------------------------------------------------------------------------------- /test/sibling/src/prog2/prog2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/sibling/src/prog2/prog2.c -------------------------------------------------------------------------------- /test/sibling/src/prog2/prog2.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/sibling/src/prog2/prog2.gyp -------------------------------------------------------------------------------- /test/small/gyptest-small.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/small/gyptest-small.py -------------------------------------------------------------------------------- /test/standalone-static-library/prog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/standalone-static-library/prog.c -------------------------------------------------------------------------------- /test/standalone/gyptest-standalone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/standalone/gyptest-standalone.py -------------------------------------------------------------------------------- /test/standalone/standalone.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/standalone/standalone.gyp -------------------------------------------------------------------------------- /test/subdirectory/gyptest-top-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/subdirectory/gyptest-top-all.py -------------------------------------------------------------------------------- /test/subdirectory/src/prog1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/subdirectory/src/prog1.c -------------------------------------------------------------------------------- /test/subdirectory/src/prog1.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/subdirectory/src/prog1.gyp -------------------------------------------------------------------------------- /test/subdirectory/src/subdir/prog2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/subdirectory/src/subdir/prog2.c -------------------------------------------------------------------------------- /test/subdirectory/src/symroot.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/subdirectory/src/symroot.gypi -------------------------------------------------------------------------------- /test/symlinks/gyptest-symlinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/symlinks/gyptest-symlinks.py -------------------------------------------------------------------------------- /test/symlinks/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/symlinks/hello.c -------------------------------------------------------------------------------- /test/symlinks/hello.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/symlinks/hello.gyp -------------------------------------------------------------------------------- /test/target/gyptest-target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/target/gyptest-target.py -------------------------------------------------------------------------------- /test/target/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/target/hello.c -------------------------------------------------------------------------------- /test/target/target.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/target/target.gyp -------------------------------------------------------------------------------- /test/toolsets/gyptest-toolsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/toolsets/gyptest-toolsets.py -------------------------------------------------------------------------------- /test/toolsets/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/toolsets/main.cc -------------------------------------------------------------------------------- /test/toolsets/toolsets.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/toolsets/toolsets.cc -------------------------------------------------------------------------------- /test/toolsets/toolsets.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/toolsets/toolsets.gyp -------------------------------------------------------------------------------- /test/toolsets/toolsets_shared.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/toolsets/toolsets_shared.cc -------------------------------------------------------------------------------- /test/toplevel-dir/src/sub1/main.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/toplevel-dir/src/sub1/main.gyp -------------------------------------------------------------------------------- /test/toplevel-dir/src/sub1/prog1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/toplevel-dir/src/sub1/prog1.c -------------------------------------------------------------------------------- /test/toplevel-dir/src/sub2/prog2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/toplevel-dir/src/sub2/prog2.c -------------------------------------------------------------------------------- /test/toplevel-dir/src/sub2/prog2.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/toplevel-dir/src/sub2/prog2.gyp -------------------------------------------------------------------------------- /test/variables/commands/commands.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/variables/commands/commands.gyp -------------------------------------------------------------------------------- /test/variables/commands/commands.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/variables/commands/commands.gypi -------------------------------------------------------------------------------- /test/variables/commands/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/variables/commands/test.py -------------------------------------------------------------------------------- /test/variables/empty/empty.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/variables/empty/empty.gyp -------------------------------------------------------------------------------- /test/variables/empty/empty.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/variables/empty/empty.gypi -------------------------------------------------------------------------------- /test/win/asm-files/asm-files.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/asm-files/asm-files.gyp -------------------------------------------------------------------------------- /test/win/asm-files/b.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/win/asm-files/c.S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/win/asm-files/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/asm-files/hello.cc -------------------------------------------------------------------------------- /test/win/batch-file-action/infile: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /test/win/command-quote/a.S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/win/command-quote/go.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/command-quote/go.bat -------------------------------------------------------------------------------- /test/win/compiler-flags/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/compiler-flags/hello.cc -------------------------------------------------------------------------------- /test/win/compiler-flags/pdbname.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/compiler-flags/pdbname.cc -------------------------------------------------------------------------------- /test/win/compiler-flags/pdbname.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/compiler-flags/pdbname.gyp -------------------------------------------------------------------------------- /test/win/compiler-flags/precomp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/compiler-flags/precomp.cc -------------------------------------------------------------------------------- /test/win/compiler-flags/rtti-on.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/compiler-flags/rtti-on.cc -------------------------------------------------------------------------------- /test/win/compiler-flags/rtti.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/compiler-flags/rtti.gyp -------------------------------------------------------------------------------- /test/win/compiler-flags/subdir/header.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/win/compiler-flags/uninit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/compiler-flags/uninit.cc -------------------------------------------------------------------------------- /test/win/enable-winrt/dllmain.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/enable-winrt/dllmain.cc -------------------------------------------------------------------------------- /test/win/gyptest-asm-files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-asm-files.py -------------------------------------------------------------------------------- /test/win/gyptest-cl-analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-cl-analysis.py -------------------------------------------------------------------------------- /test/win/gyptest-cl-debug-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-cl-debug-format.py -------------------------------------------------------------------------------- /test/win/gyptest-cl-pdbname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-cl-pdbname.py -------------------------------------------------------------------------------- /test/win/gyptest-cl-rtti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-cl-rtti.py -------------------------------------------------------------------------------- /test/win/gyptest-command-quote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-command-quote.py -------------------------------------------------------------------------------- /test/win/gyptest-crosscompile-ar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-crosscompile-ar.py -------------------------------------------------------------------------------- /test/win/gyptest-lib-ltcg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-lib-ltcg.py -------------------------------------------------------------------------------- /test/win/gyptest-link-aslr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-link-aslr.py -------------------------------------------------------------------------------- /test/win/gyptest-link-debug-info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-link-debug-info.py -------------------------------------------------------------------------------- /test/win/gyptest-link-deffile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-link-deffile.py -------------------------------------------------------------------------------- /test/win/gyptest-link-defrelink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-link-defrelink.py -------------------------------------------------------------------------------- /test/win/gyptest-link-enable-uac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-link-enable-uac.py -------------------------------------------------------------------------------- /test/win/gyptest-link-fixed-base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-link-fixed-base.py -------------------------------------------------------------------------------- /test/win/gyptest-link-large-pdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-link-large-pdb.py -------------------------------------------------------------------------------- /test/win/gyptest-link-ltcg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-link-ltcg.py -------------------------------------------------------------------------------- /test/win/gyptest-link-mapfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-link-mapfile.py -------------------------------------------------------------------------------- /test/win/gyptest-link-nxcompat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-link-nxcompat.py -------------------------------------------------------------------------------- /test/win/gyptest-link-opt-icf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-link-opt-icf.py -------------------------------------------------------------------------------- /test/win/gyptest-link-opt-ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-link-opt-ref.py -------------------------------------------------------------------------------- /test/win/gyptest-link-ordering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-link-ordering.py -------------------------------------------------------------------------------- /test/win/gyptest-link-outputfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-link-outputfile.py -------------------------------------------------------------------------------- /test/win/gyptest-link-pdb-output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-link-pdb-output.py -------------------------------------------------------------------------------- /test/win/gyptest-link-pdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-link-pdb.py -------------------------------------------------------------------------------- /test/win/gyptest-link-pgo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-link-pgo.py -------------------------------------------------------------------------------- /test/win/gyptest-link-profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-link-profile.py -------------------------------------------------------------------------------- /test/win/gyptest-link-safeseh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-link-safeseh.py -------------------------------------------------------------------------------- /test/win/gyptest-link-shard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-link-shard.py -------------------------------------------------------------------------------- /test/win/gyptest-link-stacksize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-link-stacksize.py -------------------------------------------------------------------------------- /test/win/gyptest-link-subsystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-link-subsystem.py -------------------------------------------------------------------------------- /test/win/gyptest-link-tsaware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-link-tsaware.py -------------------------------------------------------------------------------- /test/win/gyptest-link-uldi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-link-uldi.py -------------------------------------------------------------------------------- /test/win/gyptest-macro-targetext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-macro-targetext.py -------------------------------------------------------------------------------- /test/win/gyptest-midl-excluded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-midl-excluded.py -------------------------------------------------------------------------------- /test/win/gyptest-midl-rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-midl-rules.py -------------------------------------------------------------------------------- /test/win/gyptest-ml-safeseh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-ml-safeseh.py -------------------------------------------------------------------------------- /test/win/gyptest-rc-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-rc-build.py -------------------------------------------------------------------------------- /test/win/gyptest-sys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-sys.py -------------------------------------------------------------------------------- /test/win/gyptest-system-include.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/gyptest-system-include.py -------------------------------------------------------------------------------- /test/win/idl-excluded/bad.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/idl-excluded/bad.idl -------------------------------------------------------------------------------- /test/win/idl-excluded/copy-file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/idl-excluded/copy-file.py -------------------------------------------------------------------------------- /test/win/idl-excluded/program.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/idl-excluded/program.cc -------------------------------------------------------------------------------- /test/win/idl-includedirs/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/idl-includedirs/hello.cc -------------------------------------------------------------------------------- /test/win/idl-rules/Window.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/idl-rules/Window.idl -------------------------------------------------------------------------------- /test/win/idl-rules/basic-idl.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/idl-rules/basic-idl.gyp -------------------------------------------------------------------------------- /test/win/idl-rules/idl_compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/idl-rules/idl_compiler.py -------------------------------------------------------------------------------- /test/win/importlib/has-exports.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/importlib/has-exports.cc -------------------------------------------------------------------------------- /test/win/importlib/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/importlib/hello.cc -------------------------------------------------------------------------------- /test/win/importlib/importlib.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/importlib/importlib.gyp -------------------------------------------------------------------------------- /test/win/importlib/noimplib.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/importlib/noimplib.gyp -------------------------------------------------------------------------------- /test/win/large-pdb/dllmain.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/large-pdb/dllmain.cc -------------------------------------------------------------------------------- /test/win/large-pdb/large-pdb.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/large-pdb/large-pdb.gyp -------------------------------------------------------------------------------- /test/win/large-pdb/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/large-pdb/main.cc -------------------------------------------------------------------------------- /test/win/lib-crosscompile/answer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/lib-crosscompile/answer.cc -------------------------------------------------------------------------------- /test/win/lib-crosscompile/answer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/lib-crosscompile/answer.h -------------------------------------------------------------------------------- /test/win/lib-flags/answer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/lib-flags/answer.cc -------------------------------------------------------------------------------- /test/win/lib-flags/answer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/lib-flags/answer.h -------------------------------------------------------------------------------- /test/win/lib-flags/ltcg.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/lib-flags/ltcg.gyp -------------------------------------------------------------------------------- /test/win/linker-flags/a/x.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/linker-flags/a/x.cc -------------------------------------------------------------------------------- /test/win/linker-flags/a/z.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/linker-flags/a/z.cc -------------------------------------------------------------------------------- /test/win/linker-flags/aslr.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/linker-flags/aslr.gyp -------------------------------------------------------------------------------- /test/win/linker-flags/b/y.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/linker-flags/b/y.cc -------------------------------------------------------------------------------- /test/win/linker-flags/deffile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/linker-flags/deffile.cc -------------------------------------------------------------------------------- /test/win/linker-flags/deffile.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/linker-flags/deffile.def -------------------------------------------------------------------------------- /test/win/linker-flags/deffile.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/linker-flags/deffile.gyp -------------------------------------------------------------------------------- /test/win/linker-flags/delay-load.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/linker-flags/delay-load.cc -------------------------------------------------------------------------------- /test/win/linker-flags/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/linker-flags/hello.cc -------------------------------------------------------------------------------- /test/win/linker-flags/inline_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/linker-flags/inline_test.h -------------------------------------------------------------------------------- /test/win/linker-flags/ltcg.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/linker-flags/ltcg.gyp -------------------------------------------------------------------------------- /test/win/linker-flags/main-crt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/linker-flags/main-crt.c -------------------------------------------------------------------------------- /test/win/linker-flags/mapfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/linker-flags/mapfile.cc -------------------------------------------------------------------------------- /test/win/linker-flags/mapfile.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/linker-flags/mapfile.gyp -------------------------------------------------------------------------------- /test/win/linker-flags/nxcompat.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/linker-flags/nxcompat.gyp -------------------------------------------------------------------------------- /test/win/linker-flags/opt-icf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/linker-flags/opt-icf.cc -------------------------------------------------------------------------------- /test/win/linker-flags/opt-icf.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/linker-flags/opt-icf.gyp -------------------------------------------------------------------------------- /test/win/linker-flags/opt-ref.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/linker-flags/opt-ref.cc -------------------------------------------------------------------------------- /test/win/linker-flags/opt-ref.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/linker-flags/opt-ref.gyp -------------------------------------------------------------------------------- /test/win/linker-flags/pgo.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/linker-flags/pgo.gyp -------------------------------------------------------------------------------- /test/win/linker-flags/profile.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/linker-flags/profile.gyp -------------------------------------------------------------------------------- /test/win/linker-flags/safeseh.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/linker-flags/safeseh.gyp -------------------------------------------------------------------------------- /test/win/linker-flags/stacksize.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/linker-flags/stacksize.gyp -------------------------------------------------------------------------------- /test/win/linker-flags/subsystem.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/linker-flags/subsystem.gyp -------------------------------------------------------------------------------- /test/win/linker-flags/tsaware.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/linker-flags/tsaware.gyp -------------------------------------------------------------------------------- /test/win/linker-flags/update_pgd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/linker-flags/update_pgd.py -------------------------------------------------------------------------------- /test/win/linker-flags/x.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/linker-flags/x.cc -------------------------------------------------------------------------------- /test/win/linker-flags/y.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/linker-flags/y.cc -------------------------------------------------------------------------------- /test/win/linker-flags/z.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/linker-flags/z.cc -------------------------------------------------------------------------------- /test/win/long-command-line/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/long-command-line/hello.cc -------------------------------------------------------------------------------- /test/win/ml-safeseh/a.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/ml-safeseh/a.asm -------------------------------------------------------------------------------- /test/win/ml-safeseh/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/ml-safeseh/hello.cc -------------------------------------------------------------------------------- /test/win/ml-safeseh/ml-safeseh.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/ml-safeseh/ml-safeseh.gyp -------------------------------------------------------------------------------- /test/win/precompiled/gyptest-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/precompiled/gyptest-all.py -------------------------------------------------------------------------------- /test/win/precompiled/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/precompiled/hello.c -------------------------------------------------------------------------------- /test/win/precompiled/hello.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/precompiled/hello.gyp -------------------------------------------------------------------------------- /test/win/precompiled/hello2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/precompiled/hello2.c -------------------------------------------------------------------------------- /test/win/precompiled/precomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/precompiled/precomp.c -------------------------------------------------------------------------------- /test/win/rc-build/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/rc-build/Resource.h -------------------------------------------------------------------------------- /test/win/rc-build/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/rc-build/hello.cpp -------------------------------------------------------------------------------- /test/win/rc-build/hello.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/rc-build/hello.gyp -------------------------------------------------------------------------------- /test/win/rc-build/hello.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /test/win/rc-build/hello.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/rc-build/hello.ico -------------------------------------------------------------------------------- /test/win/rc-build/hello.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/rc-build/hello.rc -------------------------------------------------------------------------------- /test/win/rc-build/hello3.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/rc-build/hello3.rc -------------------------------------------------------------------------------- /test/win/rc-build/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/rc-build/small.ico -------------------------------------------------------------------------------- /test/win/rc-build/subdir/hello2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/rc-build/subdir/hello2.rc -------------------------------------------------------------------------------- /test/win/rc-build/subdir/include.h: -------------------------------------------------------------------------------- 1 | // Just exists to make sure it can be included. 2 | -------------------------------------------------------------------------------- /test/win/rc-build/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/rc-build/targetver.h -------------------------------------------------------------------------------- /test/win/shard/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/shard/hello.cc -------------------------------------------------------------------------------- /test/win/shard/hello1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/shard/hello1.cc -------------------------------------------------------------------------------- /test/win/shard/hello2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/shard/hello2.cc -------------------------------------------------------------------------------- /test/win/shard/hello3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/shard/hello3.cc -------------------------------------------------------------------------------- /test/win/shard/hello4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/shard/hello4.cc -------------------------------------------------------------------------------- /test/win/shard/shard.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/shard/shard.gyp -------------------------------------------------------------------------------- /test/win/shard/shard_ref.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/shard/shard_ref.gyp -------------------------------------------------------------------------------- /test/win/system-include/bar/header.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/win/system-include/common/commonheader.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/win/system-include/foo/header.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/win/system-include/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/system-include/main.cc -------------------------------------------------------------------------------- /test/win/system-include/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/system-include/test.gyp -------------------------------------------------------------------------------- /test/win/uldi/a.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/uldi/a.cc -------------------------------------------------------------------------------- /test/win/uldi/b.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/uldi/b.cc -------------------------------------------------------------------------------- /test/win/uldi/dll.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/uldi/dll.cc -------------------------------------------------------------------------------- /test/win/uldi/exe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/uldi/exe.cc -------------------------------------------------------------------------------- /test/win/uldi/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/uldi/main.cc -------------------------------------------------------------------------------- /test/win/uldi/uldi.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/uldi/uldi.gyp -------------------------------------------------------------------------------- /test/win/vs-macros/as.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/vs-macros/as.py -------------------------------------------------------------------------------- /test/win/vs-macros/do_stuff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/vs-macros/do_stuff.py -------------------------------------------------------------------------------- /test/win/vs-macros/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/vs-macros/hello.cc -------------------------------------------------------------------------------- /test/win/vs-macros/input.S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/win/vs-macros/projectname.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/vs-macros/projectname.gyp -------------------------------------------------------------------------------- /test/win/vs-macros/stuff.blah: -------------------------------------------------------------------------------- 1 | Random data file. 2 | -------------------------------------------------------------------------------- /test/win/vs-macros/targetext.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/vs-macros/targetext.gyp -------------------------------------------------------------------------------- /test/win/vs-macros/targetname.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/vs-macros/targetname.gyp -------------------------------------------------------------------------------- /test/win/vs-macros/targetpath.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/vs-macros/targetpath.gyp -------------------------------------------------------------------------------- /test/win/vs-macros/test_exists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/vs-macros/test_exists.py -------------------------------------------------------------------------------- /test/win/vs-macros/vcinstalldir.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/test/win/vs-macros/vcinstalldir.gyp -------------------------------------------------------------------------------- /tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/tools/README -------------------------------------------------------------------------------- /tools/Xcode/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/tools/Xcode/README -------------------------------------------------------------------------------- /tools/emacs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/tools/emacs/README -------------------------------------------------------------------------------- /tools/emacs/gyp-tests.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/tools/emacs/gyp-tests.el -------------------------------------------------------------------------------- /tools/emacs/gyp.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/tools/emacs/gyp.el -------------------------------------------------------------------------------- /tools/emacs/run-unit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/tools/emacs/run-unit-tests.sh -------------------------------------------------------------------------------- /tools/emacs/testdata/media.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/tools/emacs/testdata/media.gyp -------------------------------------------------------------------------------- /tools/graphviz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/tools/graphviz.py -------------------------------------------------------------------------------- /tools/pretty_gyp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/tools/pretty_gyp.py -------------------------------------------------------------------------------- /tools/pretty_sln.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/tools/pretty_sln.py -------------------------------------------------------------------------------- /tools/pretty_vcproj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromium/gyp/HEAD/tools/pretty_vcproj.py --------------------------------------------------------------------------------