mt-libuv 4.1.0 → 4.1.03
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/ext/Rakefile +1 -1
- data/ext/gyp/.gitignore +1 -0
- data/ext/gyp/AUTHORS +17 -0
- data/ext/gyp/DEPS +23 -0
- data/ext/gyp/LICENSE +27 -0
- data/ext/gyp/OWNERS +1 -0
- data/ext/gyp/PRESUBMIT.py +125 -0
- data/ext/gyp/README.md +5 -0
- data/ext/gyp/buildbot/buildbot_run.py +138 -0
- data/ext/gyp/buildbot/commit_queue/OWNERS +6 -0
- data/ext/gyp/buildbot/commit_queue/README +3 -0
- data/ext/gyp/buildbot/commit_queue/cq_config.json +15 -0
- data/ext/gyp/buildbot/travis-checkout.sh +27 -0
- data/ext/gyp/buildbot/travis-test.sh +12 -0
- data/ext/gyp/codereview.settings +6 -0
- data/ext/gyp/data/win/large-pdb-shim.cc +12 -0
- data/ext/gyp/gyp +8 -0
- data/ext/gyp/gyp.bat +5 -0
- data/ext/gyp/gyp_main.py +16 -0
- data/ext/gyp/gyptest.py +243 -0
- data/ext/gyp/pylib/gyp/MSVSNew.py +353 -0
- data/ext/gyp/pylib/gyp/MSVSProject.py +208 -0
- data/ext/gyp/pylib/gyp/MSVSSettings.py +1106 -0
- data/ext/gyp/pylib/gyp/MSVSSettings_test.py +1486 -0
- data/ext/gyp/pylib/gyp/MSVSToolFile.py +58 -0
- data/ext/gyp/pylib/gyp/MSVSUserFile.py +147 -0
- data/ext/gyp/pylib/gyp/MSVSUtil.py +271 -0
- data/ext/gyp/pylib/gyp/MSVSVersion.py +504 -0
- data/ext/gyp/pylib/gyp/__init__.py +555 -0
- data/ext/gyp/pylib/gyp/common.py +619 -0
- data/ext/gyp/pylib/gyp/common_test.py +73 -0
- data/ext/gyp/pylib/gyp/easy_xml.py +170 -0
- data/ext/gyp/pylib/gyp/easy_xml_test.py +106 -0
- data/ext/gyp/pylib/gyp/flock_tool.py +54 -0
- data/ext/gyp/pylib/gyp/generator/__init__.py +0 -0
- data/ext/gyp/pylib/gyp/generator/analyzer.py +744 -0
- data/ext/gyp/pylib/gyp/generator/cmake.py +1256 -0
- data/ext/gyp/pylib/gyp/generator/dump_dependency_json.py +101 -0
- data/ext/gyp/pylib/gyp/generator/eclipse.py +425 -0
- data/ext/gyp/pylib/gyp/generator/gypd.py +94 -0
- data/ext/gyp/pylib/gyp/generator/gypsh.py +56 -0
- data/ext/gyp/pylib/gyp/generator/make.py +2260 -0
- data/ext/gyp/pylib/gyp/generator/msvs.py +3537 -0
- data/ext/gyp/pylib/gyp/generator/msvs_test.py +40 -0
- data/ext/gyp/pylib/gyp/generator/ninja.py +2500 -0
- data/ext/gyp/pylib/gyp/generator/ninja_test.py +46 -0
- data/ext/gyp/pylib/gyp/generator/xcode.py +1302 -0
- data/ext/gyp/pylib/gyp/generator/xcode_test.py +23 -0
- data/ext/gyp/pylib/gyp/input.py +2908 -0
- data/ext/gyp/pylib/gyp/input_test.py +90 -0
- data/ext/gyp/pylib/gyp/mac_tool.py +721 -0
- data/ext/gyp/pylib/gyp/msvs_emulation.py +1112 -0
- data/ext/gyp/pylib/gyp/ninja_syntax.py +168 -0
- data/ext/gyp/pylib/gyp/simple_copy.py +57 -0
- data/ext/gyp/pylib/gyp/win_tool.py +326 -0
- data/ext/gyp/pylib/gyp/xcode_emulation.py +1800 -0
- data/ext/gyp/pylib/gyp/xcode_ninja.py +289 -0
- data/ext/gyp/pylib/gyp/xcodeproj_file.py +2995 -0
- data/ext/gyp/pylib/gyp/xml_fix.py +68 -0
- data/ext/gyp/samples/samples +83 -0
- data/ext/gyp/samples/samples.bat +5 -0
- data/ext/gyp/setup.py +19 -0
- data/ext/gyp/test/actions/generated-header/action.py +11 -0
- data/ext/gyp/test/actions/generated-header/main.cc +7 -0
- data/ext/gyp/test/actions/generated-header/test.gyp +34 -0
- data/ext/gyp/test/actions/gyptest-all.py +101 -0
- data/ext/gyp/test/actions/gyptest-default.py +68 -0
- data/ext/gyp/test/actions/gyptest-errors.py +24 -0
- data/ext/gyp/test/actions/gyptest-generated-header.py +38 -0
- data/ext/gyp/test/actions/src/action_missing_name.gyp +24 -0
- data/ext/gyp/test/actions/src/actions.gyp +114 -0
- data/ext/gyp/test/actions/src/confirm-dep-files.py +21 -0
- data/ext/gyp/test/actions/src/subdir1/counter.py +44 -0
- data/ext/gyp/test/actions/src/subdir1/executable.gyp +74 -0
- data/ext/gyp/test/actions/src/subdir1/make-prog1.py +20 -0
- data/ext/gyp/test/actions/src/subdir1/make-prog2.py +20 -0
- data/ext/gyp/test/actions/src/subdir1/program.c +12 -0
- data/ext/gyp/test/actions/src/subdir2/make-file.py +11 -0
- data/ext/gyp/test/actions/src/subdir2/none.gyp +33 -0
- data/ext/gyp/test/actions/src/subdir3/generate_main.py +21 -0
- data/ext/gyp/test/actions/src/subdir3/null_input.gyp +29 -0
- data/ext/gyp/test/actions-bare/gyptest-bare.py +24 -0
- data/ext/gyp/test/actions-bare/src/bare.gyp +25 -0
- data/ext/gyp/test/actions-bare/src/bare.py +11 -0
- data/ext/gyp/test/actions-depfile/depfile.gyp +42 -0
- data/ext/gyp/test/actions-depfile/gyptest-all.py +30 -0
- data/ext/gyp/test/actions-depfile/input.txt +1 -0
- data/ext/gyp/test/actions-depfile/touch.py +18 -0
- data/ext/gyp/test/actions-multiple/gyptest-all.py +72 -0
- data/ext/gyp/test/actions-multiple/src/actions.gyp +226 -0
- data/ext/gyp/test/actions-multiple/src/copyfile.py +9 -0
- data/ext/gyp/test/actions-multiple/src/filter.py +12 -0
- data/ext/gyp/test/actions-multiple/src/foo.c +11 -0
- data/ext/gyp/test/actions-multiple/src/input.txt +1 -0
- data/ext/gyp/test/actions-multiple/src/main.c +22 -0
- data/ext/gyp/test/actions-multiple-outputs/gyptest-multiple-outputs.py +45 -0
- data/ext/gyp/test/actions-multiple-outputs/src/multiple-outputs.gyp +23 -0
- data/ext/gyp/test/actions-multiple-outputs/src/touch.py +16 -0
- data/ext/gyp/test/actions-multiple-outputs-with-dependencies/gyptest-action.py +45 -0
- data/ext/gyp/test/actions-multiple-outputs-with-dependencies/src/action.gyp +28 -0
- data/ext/gyp/test/actions-multiple-outputs-with-dependencies/src/rcopy.py +20 -0
- data/ext/gyp/test/actions-none/gyptest-none.py +24 -0
- data/ext/gyp/test/actions-none/src/fake_cross.py +12 -0
- data/ext/gyp/test/actions-none/src/foo.cc +1 -0
- data/ext/gyp/test/actions-none/src/none_with_source_files.gyp +35 -0
- data/ext/gyp/test/actions-subdir/gyptest-action.py +26 -0
- data/ext/gyp/test/actions-subdir/src/make-file.py +11 -0
- data/ext/gyp/test/actions-subdir/src/none.gyp +31 -0
- data/ext/gyp/test/actions-subdir/src/subdir/make-subdir-file.py +11 -0
- data/ext/gyp/test/actions-subdir/src/subdir/subdir.gyp +28 -0
- data/ext/gyp/test/additional-targets/gyptest-additional.py +63 -0
- data/ext/gyp/test/additional-targets/src/all.gyp +13 -0
- data/ext/gyp/test/additional-targets/src/dir1/actions.gyp +56 -0
- data/ext/gyp/test/additional-targets/src/dir1/emit.py +11 -0
- data/ext/gyp/test/additional-targets/src/dir1/lib1.c +6 -0
- data/ext/gyp/test/analyzer/common.gypi +6 -0
- data/ext/gyp/test/analyzer/gyptest-analyzer.py +427 -0
- data/ext/gyp/test/analyzer/static_library_test.gyp +34 -0
- data/ext/gyp/test/analyzer/subdir/subdir.gyp +36 -0
- data/ext/gyp/test/analyzer/subdir/subdir2/subdir2.gyp +15 -0
- data/ext/gyp/test/analyzer/subdir2/subdir.gyp +18 -0
- data/ext/gyp/test/analyzer/subdir2/subdir.includes.gypi +9 -0
- data/ext/gyp/test/analyzer/test.gyp +114 -0
- data/ext/gyp/test/analyzer/test2.gyp +25 -0
- data/ext/gyp/test/analyzer/test2.includes.gypi +13 -0
- data/ext/gyp/test/analyzer/test2.includes.includes.gypi +9 -0
- data/ext/gyp/test/analyzer/test2.toplevel_includes.gypi +15 -0
- data/ext/gyp/test/analyzer/test3.gyp +77 -0
- data/ext/gyp/test/analyzer/test4.gyp +80 -0
- data/ext/gyp/test/analyzer/test5.gyp +25 -0
- data/ext/gyp/test/arflags/gyptest-arflags.py +26 -0
- data/ext/gyp/test/arflags/lib.cc +0 -0
- data/ext/gyp/test/arflags/test.gyp +10 -0
- data/ext/gyp/test/assembly/gyptest-assembly.py +31 -0
- data/ext/gyp/test/assembly/gyptest-override.py +24 -0
- data/ext/gyp/test/assembly/src/as.bat +4 -0
- data/ext/gyp/test/assembly/src/assembly.gyp +62 -0
- data/ext/gyp/test/assembly/src/lib1.S +15 -0
- data/ext/gyp/test/assembly/src/lib1.c +3 -0
- data/ext/gyp/test/assembly/src/override.gyp +34 -0
- data/ext/gyp/test/assembly/src/override_asm.asm +8 -0
- data/ext/gyp/test/assembly/src/program.c +12 -0
- data/ext/gyp/test/build-option/gyptest-build.py +27 -0
- data/ext/gyp/test/build-option/hello.c +13 -0
- data/ext/gyp/test/build-option/hello.gyp +15 -0
- data/ext/gyp/test/builddir/gyptest-all.py +85 -0
- data/ext/gyp/test/builddir/gyptest-default.py +85 -0
- data/ext/gyp/test/builddir/src/builddir.gypi +18 -0
- data/ext/gyp/test/builddir/src/func1.c +6 -0
- data/ext/gyp/test/builddir/src/func2.c +6 -0
- data/ext/gyp/test/builddir/src/func3.c +6 -0
- data/ext/gyp/test/builddir/src/func4.c +6 -0
- data/ext/gyp/test/builddir/src/func5.c +6 -0
- data/ext/gyp/test/builddir/src/prog1.c +10 -0
- data/ext/gyp/test/builddir/src/prog1.gyp +30 -0
- data/ext/gyp/test/builddir/src/subdir2/prog2.c +10 -0
- data/ext/gyp/test/builddir/src/subdir2/prog2.gyp +19 -0
- data/ext/gyp/test/builddir/src/subdir2/subdir3/prog3.c +10 -0
- data/ext/gyp/test/builddir/src/subdir2/subdir3/prog3.gyp +19 -0
- data/ext/gyp/test/builddir/src/subdir2/subdir3/subdir4/prog4.c +10 -0
- data/ext/gyp/test/builddir/src/subdir2/subdir3/subdir4/prog4.gyp +19 -0
- data/ext/gyp/test/builddir/src/subdir2/subdir3/subdir4/subdir5/prog5.c +10 -0
- data/ext/gyp/test/builddir/src/subdir2/subdir3/subdir4/subdir5/prog5.gyp +19 -0
- data/ext/gyp/test/cflags/cflags.c +15 -0
- data/ext/gyp/test/cflags/cflags.gyp +23 -0
- data/ext/gyp/test/cflags/gyptest-cflags.py +75 -0
- data/ext/gyp/test/compilable/gyptest-headers.py +29 -0
- data/ext/gyp/test/compilable/src/headers.gyp +26 -0
- data/ext/gyp/test/compilable/src/lib1.cpp +7 -0
- data/ext/gyp/test/compilable/src/lib1.hpp +6 -0
- data/ext/gyp/test/compilable/src/program.cpp +9 -0
- data/ext/gyp/test/compiler-override/compiler-exe.gyp +16 -0
- data/ext/gyp/test/compiler-override/compiler-global-settings.gyp.in +34 -0
- data/ext/gyp/test/compiler-override/compiler-host.gyp +17 -0
- data/ext/gyp/test/compiler-override/compiler-shared-lib.gyp +16 -0
- data/ext/gyp/test/compiler-override/cxxtest.cc +7 -0
- data/ext/gyp/test/compiler-override/gyptest-compiler-env-toolchain.py +78 -0
- data/ext/gyp/test/compiler-override/gyptest-compiler-env.py +110 -0
- data/ext/gyp/test/compiler-override/gyptest-compiler-global-settings.py +82 -0
- data/ext/gyp/test/compiler-override/my_cc.py +7 -0
- data/ext/gyp/test/compiler-override/my_cxx.py +7 -0
- data/ext/gyp/test/compiler-override/my_ld.py +7 -0
- data/ext/gyp/test/compiler-override/my_nm.py +9 -0
- data/ext/gyp/test/compiler-override/my_readelf.py +9 -0
- data/ext/gyp/test/compiler-override/test.c +7 -0
- data/ext/gyp/test/conditions/elseif/elseif.gyp +43 -0
- data/ext/gyp/test/conditions/elseif/elseif_bad1.gyp +20 -0
- data/ext/gyp/test/conditions/elseif/elseif_bad2.gyp +22 -0
- data/ext/gyp/test/conditions/elseif/elseif_bad3.gyp +23 -0
- data/ext/gyp/test/conditions/elseif/elseif_conditions.gypi +15 -0
- data/ext/gyp/test/conditions/elseif/gyptest_elseif.py +33 -0
- data/ext/gyp/test/conditions/elseif/program.cc +10 -0
- data/ext/gyp/test/configurations/basics/configurations.c +15 -0
- data/ext/gyp/test/configurations/basics/configurations.gyp +32 -0
- data/ext/gyp/test/configurations/basics/gyptest-configurations.py +29 -0
- data/ext/gyp/test/configurations/inheritance/configurations.c +21 -0
- data/ext/gyp/test/configurations/inheritance/configurations.gyp +40 -0
- data/ext/gyp/test/configurations/inheritance/duplicates.gyp +27 -0
- data/ext/gyp/test/configurations/inheritance/duplicates.gypd.golden +12 -0
- data/ext/gyp/test/configurations/inheritance/gyptest-duplicates.py +36 -0
- data/ext/gyp/test/configurations/inheritance/gyptest-inheritance.py +33 -0
- data/ext/gyp/test/configurations/invalid/actions.gyp +18 -0
- data/ext/gyp/test/configurations/invalid/all_dependent_settings.gyp +18 -0
- data/ext/gyp/test/configurations/invalid/configurations.gyp +18 -0
- data/ext/gyp/test/configurations/invalid/dependencies.gyp +18 -0
- data/ext/gyp/test/configurations/invalid/direct_dependent_settings.gyp +18 -0
- data/ext/gyp/test/configurations/invalid/gyptest-configurations.py +36 -0
- data/ext/gyp/test/configurations/invalid/libraries.gyp +18 -0
- data/ext/gyp/test/configurations/invalid/link_settings.gyp +18 -0
- data/ext/gyp/test/configurations/invalid/sources.gyp +18 -0
- data/ext/gyp/test/configurations/invalid/standalone_static_library.gyp +17 -0
- data/ext/gyp/test/configurations/invalid/target_name.gyp +18 -0
- data/ext/gyp/test/configurations/invalid/type.gyp +18 -0
- data/ext/gyp/test/configurations/target_platform/configurations.gyp +58 -0
- data/ext/gyp/test/configurations/target_platform/front.c +8 -0
- data/ext/gyp/test/configurations/target_platform/gyptest-target_platform.py +40 -0
- data/ext/gyp/test/configurations/target_platform/left.c +3 -0
- data/ext/gyp/test/configurations/target_platform/right.c +3 -0
- data/ext/gyp/test/configurations/x64/configurations.c +12 -0
- data/ext/gyp/test/configurations/x64/configurations.gyp +38 -0
- data/ext/gyp/test/configurations/x64/gyptest-x86.py +31 -0
- data/ext/gyp/test/copies/gyptest-all.py +42 -0
- data/ext/gyp/test/copies/gyptest-attribs.py +41 -0
- data/ext/gyp/test/copies/gyptest-default.py +42 -0
- data/ext/gyp/test/copies/gyptest-samedir.py +28 -0
- data/ext/gyp/test/copies/gyptest-slash.py +39 -0
- data/ext/gyp/test/copies/gyptest-sourceless-shared-lib.py +20 -0
- data/ext/gyp/test/copies/gyptest-updir.py +32 -0
- data/ext/gyp/test/copies/src/copies-attribs.gyp +20 -0
- data/ext/gyp/test/copies/src/copies-samedir.gyp +37 -0
- data/ext/gyp/test/copies/src/copies-slash.gyp +36 -0
- data/ext/gyp/test/copies/src/copies-sourceless-shared-lib.gyp +27 -0
- data/ext/gyp/test/copies/src/copies-updir.gyp +21 -0
- data/ext/gyp/test/copies/src/copies.gyp +70 -0
- data/ext/gyp/test/copies/src/directory/file3 +1 -0
- data/ext/gyp/test/copies/src/directory/file4 +1 -0
- data/ext/gyp/test/copies/src/directory/subdir/file5 +1 -0
- data/ext/gyp/test/copies/src/executable-file.sh +3 -0
- data/ext/gyp/test/copies/src/file1 +1 -0
- data/ext/gyp/test/copies/src/file2 +1 -0
- data/ext/gyp/test/copies/src/foo.c +13 -0
- data/ext/gyp/test/copies/src/parentdir/subdir/file6 +1 -0
- data/ext/gyp/test/custom-generator/gyptest-custom-generator.py +18 -0
- data/ext/gyp/test/custom-generator/mygenerator.py +14 -0
- data/ext/gyp/test/custom-generator/test.gyp +15 -0
- data/ext/gyp/test/cxxflags/cxxflags.cc +15 -0
- data/ext/gyp/test/cxxflags/cxxflags.gyp +15 -0
- data/ext/gyp/test/cxxflags/gyptest-cxxflags.py +45 -0
- data/ext/gyp/test/defines/defines-env.gyp +22 -0
- data/ext/gyp/test/defines/defines.c +23 -0
- data/ext/gyp/test/defines/defines.gyp +38 -0
- data/ext/gyp/test/defines/gyptest-define-override.py +43 -0
- data/ext/gyp/test/defines/gyptest-defines-env-regyp.py +51 -0
- data/ext/gyp/test/defines/gyptest-defines-env.py +85 -0
- data/ext/gyp/test/defines/gyptest-defines.py +39 -0
- data/ext/gyp/test/defines-escaping/defines-escaping.c +11 -0
- data/ext/gyp/test/defines-escaping/defines-escaping.gyp +19 -0
- data/ext/gyp/test/defines-escaping/gyptest-defines-escaping.py +184 -0
- data/ext/gyp/test/dependencies/a.c +9 -0
- data/ext/gyp/test/dependencies/adso/all_dependent_settings_order.gyp +45 -0
- data/ext/gyp/test/dependencies/adso/write_args.py +11 -0
- data/ext/gyp/test/dependencies/b/b.c +3 -0
- data/ext/gyp/test/dependencies/b/b.gyp +22 -0
- data/ext/gyp/test/dependencies/b/b3.c +9 -0
- data/ext/gyp/test/dependencies/c/c.c +4 -0
- data/ext/gyp/test/dependencies/c/c.gyp +22 -0
- data/ext/gyp/test/dependencies/c/d.c +3 -0
- data/ext/gyp/test/dependencies/double_dependency.gyp +23 -0
- data/ext/gyp/test/dependencies/double_dependent.gyp +12 -0
- data/ext/gyp/test/dependencies/extra_targets.gyp +18 -0
- data/ext/gyp/test/dependencies/gyptest-all-dependent-settings-order.py +19 -0
- data/ext/gyp/test/dependencies/gyptest-double-dependency.py +19 -0
- data/ext/gyp/test/dependencies/gyptest-extra-targets.py +22 -0
- data/ext/gyp/test/dependencies/gyptest-indirect-module-dependency.py +22 -0
- data/ext/gyp/test/dependencies/gyptest-lib-only.py +39 -0
- data/ext/gyp/test/dependencies/gyptest-none-traversal.py +25 -0
- data/ext/gyp/test/dependencies/gyptest-sharedlib-linksettings.py +21 -0
- data/ext/gyp/test/dependencies/lib_only.gyp +16 -0
- data/ext/gyp/test/dependencies/main.c +14 -0
- data/ext/gyp/test/dependencies/module-dep/a.cc +7 -0
- data/ext/gyp/test/dependencies/module-dep/dll.cc +9 -0
- data/ext/gyp/test/dependencies/module-dep/exe.cc +7 -0
- data/ext/gyp/test/dependencies/module-dep/indirect-module-dependency.gyp +37 -0
- data/ext/gyp/test/dependencies/none_traversal.gyp +46 -0
- data/ext/gyp/test/dependencies/sharedlib-linksettings/program.c +25 -0
- data/ext/gyp/test/dependencies/sharedlib-linksettings/sharedlib.c +16 -0
- data/ext/gyp/test/dependencies/sharedlib-linksettings/staticlib.c +24 -0
- data/ext/gyp/test/dependencies/sharedlib-linksettings/test.gyp +37 -0
- data/ext/gyp/test/dependency-copy/gyptest-copy.py +26 -0
- data/ext/gyp/test/dependency-copy/src/copies.gyp +25 -0
- data/ext/gyp/test/dependency-copy/src/file1.c +7 -0
- data/ext/gyp/test/dependency-copy/src/file2.c +7 -0
- data/ext/gyp/test/dependent-settings/nested-dependent-settings/all-dependent-settings.gyp +19 -0
- data/ext/gyp/test/dependent-settings/nested-dependent-settings/direct-dependent-settings.gyp +19 -0
- data/ext/gyp/test/dependent-settings/nested-dependent-settings/gyptest-nested-dependent-settings.py +18 -0
- data/ext/gyp/test/determinism/determinism.gyp +59 -0
- data/ext/gyp/test/determinism/empty-targets.gyp +32 -0
- data/ext/gyp/test/determinism/gyptest-determinism.py +30 -0
- data/ext/gyp/test/determinism/gyptest-empty-target-names.py +30 -0
- data/ext/gyp/test/determinism/gyptest-needed-variables.py +30 -0
- data/ext/gyp/test/determinism/gyptest-solibs.py +37 -0
- data/ext/gyp/test/determinism/main.cc +5 -0
- data/ext/gyp/test/determinism/needed-variables.gyp +33 -0
- data/ext/gyp/test/determinism/rule.py +8 -0
- data/ext/gyp/test/determinism/solib.cc +8 -0
- data/ext/gyp/test/determinism/solibs.gyp +32 -0
- data/ext/gyp/test/empty-target/empty-target.gyp +12 -0
- data/ext/gyp/test/empty-target/gyptest-empty-target.py +18 -0
- data/ext/gyp/test/errors/dependency_cycle.gyp +23 -0
- data/ext/gyp/test/errors/duplicate_basenames.gyp +13 -0
- data/ext/gyp/test/errors/duplicate_node.gyp +12 -0
- data/ext/gyp/test/errors/duplicate_rule.gyp +22 -0
- data/ext/gyp/test/errors/duplicate_targets.gyp +14 -0
- data/ext/gyp/test/errors/error_command.gyp +12 -0
- data/ext/gyp/test/errors/file_cycle0.gyp +17 -0
- data/ext/gyp/test/errors/file_cycle1.gyp +13 -0
- data/ext/gyp/test/errors/gyptest-errors.py +80 -0
- data/ext/gyp/test/errors/missing_command.gyp +12 -0
- data/ext/gyp/test/errors/missing_dep.gyp +15 -0
- data/ext/gyp/test/errors/missing_targets.gyp +8 -0
- data/ext/gyp/test/escaping/colon/test.gyp +21 -0
- data/ext/gyp/test/escaping/gyptest-colon.py +51 -0
- data/ext/gyp/test/exclusion/exclusion.gyp +23 -0
- data/ext/gyp/test/exclusion/gyptest-exclusion.py +22 -0
- data/ext/gyp/test/exclusion/hello.c +15 -0
- data/ext/gyp/test/external-cross-compile/gyptest-cross.py +31 -0
- data/ext/gyp/test/external-cross-compile/src/bogus1.cc +1 -0
- data/ext/gyp/test/external-cross-compile/src/bogus2.c +1 -0
- data/ext/gyp/test/external-cross-compile/src/cross.gyp +83 -0
- data/ext/gyp/test/external-cross-compile/src/cross_compile.gypi +23 -0
- data/ext/gyp/test/external-cross-compile/src/fake_cross.py +18 -0
- data/ext/gyp/test/external-cross-compile/src/program.cc +16 -0
- data/ext/gyp/test/external-cross-compile/src/test1.cc +1 -0
- data/ext/gyp/test/external-cross-compile/src/test2.c +1 -0
- data/ext/gyp/test/external-cross-compile/src/test3.cc +1 -0
- data/ext/gyp/test/external-cross-compile/src/test4.c +1 -0
- data/ext/gyp/test/external-cross-compile/src/tochar.py +13 -0
- data/ext/gyp/test/generator-output/actions/actions.gyp +16 -0
- data/ext/gyp/test/generator-output/actions/build/README.txt +4 -0
- data/ext/gyp/test/generator-output/actions/subdir1/actions-out/README.txt +4 -0
- data/ext/gyp/test/generator-output/actions/subdir1/build/README.txt +4 -0
- data/ext/gyp/test/generator-output/actions/subdir1/executable.gyp +44 -0
- data/ext/gyp/test/generator-output/actions/subdir1/make-prog1.py +20 -0
- data/ext/gyp/test/generator-output/actions/subdir1/make-prog2.py +20 -0
- data/ext/gyp/test/generator-output/actions/subdir1/program.c +12 -0
- data/ext/gyp/test/generator-output/actions/subdir2/actions-out/README.txt +4 -0
- data/ext/gyp/test/generator-output/actions/subdir2/build/README.txt +4 -0
- data/ext/gyp/test/generator-output/actions/subdir2/make-file.py +11 -0
- data/ext/gyp/test/generator-output/actions/subdir2/none.gyp +31 -0
- data/ext/gyp/test/generator-output/copies/build/README.txt +4 -0
- data/ext/gyp/test/generator-output/copies/copies-out/README.txt +4 -0
- data/ext/gyp/test/generator-output/copies/copies.gyp +50 -0
- data/ext/gyp/test/generator-output/copies/file1 +1 -0
- data/ext/gyp/test/generator-output/copies/file2 +1 -0
- data/ext/gyp/test/generator-output/copies/subdir/build/README.txt +4 -0
- data/ext/gyp/test/generator-output/copies/subdir/copies-out/README.txt +4 -0
- data/ext/gyp/test/generator-output/copies/subdir/file3 +1 -0
- data/ext/gyp/test/generator-output/copies/subdir/file4 +1 -0
- data/ext/gyp/test/generator-output/copies/subdir/subdir.gyp +32 -0
- data/ext/gyp/test/generator-output/gyptest-actions.py +57 -0
- data/ext/gyp/test/generator-output/gyptest-copies.py +59 -0
- data/ext/gyp/test/generator-output/gyptest-depth.py +58 -0
- data/ext/gyp/test/generator-output/gyptest-mac-bundle.py +33 -0
- data/ext/gyp/test/generator-output/gyptest-relocate.py +59 -0
- data/ext/gyp/test/generator-output/gyptest-rules.py +58 -0
- data/ext/gyp/test/generator-output/gyptest-subdir2-deep.py +36 -0
- data/ext/gyp/test/generator-output/gyptest-symlink.py +44 -0
- data/ext/gyp/test/generator-output/gyptest-top-all.py +53 -0
- data/ext/gyp/test/generator-output/mac-bundle/Info.plist +32 -0
- data/ext/gyp/test/generator-output/mac-bundle/app.order +1 -0
- data/ext/gyp/test/generator-output/mac-bundle/header.h +1 -0
- data/ext/gyp/test/generator-output/mac-bundle/main.c +1 -0
- data/ext/gyp/test/generator-output/mac-bundle/resource.sb +1 -0
- data/ext/gyp/test/generator-output/mac-bundle/test.gyp +25 -0
- data/ext/gyp/test/generator-output/rules/build/README.txt +4 -0
- data/ext/gyp/test/generator-output/rules/copy-file.py +12 -0
- data/ext/gyp/test/generator-output/rules/rules.gyp +16 -0
- data/ext/gyp/test/generator-output/rules/subdir1/build/README.txt +4 -0
- data/ext/gyp/test/generator-output/rules/subdir1/define3.in0 +1 -0
- data/ext/gyp/test/generator-output/rules/subdir1/define4.in0 +1 -0
- data/ext/gyp/test/generator-output/rules/subdir1/executable.gyp +59 -0
- data/ext/gyp/test/generator-output/rules/subdir1/function1.in1 +6 -0
- data/ext/gyp/test/generator-output/rules/subdir1/function2.in1 +6 -0
- data/ext/gyp/test/generator-output/rules/subdir1/program.c +18 -0
- data/ext/gyp/test/generator-output/rules/subdir2/build/README.txt +4 -0
- data/ext/gyp/test/generator-output/rules/subdir2/file1.in0 +1 -0
- data/ext/gyp/test/generator-output/rules/subdir2/file2.in0 +1 -0
- data/ext/gyp/test/generator-output/rules/subdir2/file3.in1 +1 -0
- data/ext/gyp/test/generator-output/rules/subdir2/file4.in1 +1 -0
- data/ext/gyp/test/generator-output/rules/subdir2/none.gyp +49 -0
- data/ext/gyp/test/generator-output/rules/subdir2/rules-out/README.txt +4 -0
- data/ext/gyp/test/generator-output/src/build/README.txt +4 -0
- data/ext/gyp/test/generator-output/src/inc.h +1 -0
- data/ext/gyp/test/generator-output/src/inc1/include1.h +1 -0
- data/ext/gyp/test/generator-output/src/prog1.c +18 -0
- data/ext/gyp/test/generator-output/src/prog1.gyp +28 -0
- data/ext/gyp/test/generator-output/src/subdir2/build/README.txt +4 -0
- data/ext/gyp/test/generator-output/src/subdir2/deeper/build/README.txt +4 -0
- data/ext/gyp/test/generator-output/src/subdir2/deeper/deeper.c +7 -0
- data/ext/gyp/test/generator-output/src/subdir2/deeper/deeper.gyp +18 -0
- data/ext/gyp/test/generator-output/src/subdir2/deeper/deeper.h +1 -0
- data/ext/gyp/test/generator-output/src/subdir2/inc2/include2.h +1 -0
- data/ext/gyp/test/generator-output/src/subdir2/prog2.c +18 -0
- data/ext/gyp/test/generator-output/src/subdir2/prog2.gyp +28 -0
- data/ext/gyp/test/generator-output/src/subdir3/build/README.txt +4 -0
- data/ext/gyp/test/generator-output/src/subdir3/inc3/include3.h +1 -0
- data/ext/gyp/test/generator-output/src/subdir3/prog3.c +18 -0
- data/ext/gyp/test/generator-output/src/subdir3/prog3.gyp +25 -0
- data/ext/gyp/test/generator-output/src/symroot.gypi +16 -0
- data/ext/gyp/test/gyp-defines/defines.gyp +26 -0
- data/ext/gyp/test/gyp-defines/echo.py +11 -0
- data/ext/gyp/test/gyp-defines/gyptest-multiple-values.py +36 -0
- data/ext/gyp/test/gyp-defines/gyptest-regyp.py +40 -0
- data/ext/gyp/test/hard_dependency/gyptest-exported-hard-dependency.py +37 -0
- data/ext/gyp/test/hard_dependency/gyptest-no-exported-hard-dependency.py +36 -0
- data/ext/gyp/test/hard_dependency/src/a.c +9 -0
- data/ext/gyp/test/hard_dependency/src/a.h +12 -0
- data/ext/gyp/test/hard_dependency/src/b.c +9 -0
- data/ext/gyp/test/hard_dependency/src/b.h +12 -0
- data/ext/gyp/test/hard_dependency/src/c.c +10 -0
- data/ext/gyp/test/hard_dependency/src/c.h +10 -0
- data/ext/gyp/test/hard_dependency/src/d.c +9 -0
- data/ext/gyp/test/hard_dependency/src/emit.py +11 -0
- data/ext/gyp/test/hard_dependency/src/hard_dependency.gyp +78 -0
- data/ext/gyp/test/hello/gyptest-all.py +24 -0
- data/ext/gyp/test/hello/gyptest-default.py +24 -0
- data/ext/gyp/test/hello/gyptest-disable-regyp.py +32 -0
- data/ext/gyp/test/hello/gyptest-regyp-output.py +36 -0
- data/ext/gyp/test/hello/gyptest-regyp.py +32 -0
- data/ext/gyp/test/hello/gyptest-target.py +24 -0
- data/ext/gyp/test/hello/hello.c +11 -0
- data/ext/gyp/test/hello/hello.gyp +15 -0
- data/ext/gyp/test/hello/hello2.c +11 -0
- data/ext/gyp/test/hello/hello2.gyp +15 -0
- data/ext/gyp/test/home_dot_gyp/gyptest-home-includes-config-arg.py +31 -0
- data/ext/gyp/test/home_dot_gyp/gyptest-home-includes-config-env.py +33 -0
- data/ext/gyp/test/home_dot_gyp/gyptest-home-includes-regyp.py +44 -0
- data/ext/gyp/test/home_dot_gyp/gyptest-home-includes.py +30 -0
- data/ext/gyp/test/home_dot_gyp/home/.gyp/include.gypi +5 -0
- data/ext/gyp/test/home_dot_gyp/home2/.gyp/include.gypi +5 -0
- data/ext/gyp/test/home_dot_gyp/home2/.gyp_new/include.gypi +5 -0
- data/ext/gyp/test/home_dot_gyp/src/all.gyp +22 -0
- data/ext/gyp/test/home_dot_gyp/src/printfoo.c +7 -0
- data/ext/gyp/test/include_dirs/gyptest-all.py +43 -0
- data/ext/gyp/test/include_dirs/gyptest-default.py +43 -0
- data/ext/gyp/test/include_dirs/src/inc.h +1 -0
- data/ext/gyp/test/include_dirs/src/inc1/include1.h +1 -0
- data/ext/gyp/test/include_dirs/src/includes.c +19 -0
- data/ext/gyp/test/include_dirs/src/includes.gyp +27 -0
- data/ext/gyp/test/include_dirs/src/shadow1/shadow.h +1 -0
- data/ext/gyp/test/include_dirs/src/shadow2/shadow.h +1 -0
- data/ext/gyp/test/include_dirs/src/subdir/inc.h +1 -0
- data/ext/gyp/test/include_dirs/src/subdir/inc2/include2.h +1 -0
- data/ext/gyp/test/include_dirs/src/subdir/subdir_includes.c +14 -0
- data/ext/gyp/test/include_dirs/src/subdir/subdir_includes.gyp +20 -0
- data/ext/gyp/test/intermediate_dir/gyptest-intermediate-dir.py +44 -0
- data/ext/gyp/test/intermediate_dir/src/script.py +22 -0
- data/ext/gyp/test/intermediate_dir/src/shared_infile.txt +1 -0
- data/ext/gyp/test/intermediate_dir/src/test.gyp +42 -0
- data/ext/gyp/test/intermediate_dir/src/test2.gyp +42 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/English.lproj/InfoPlist-error.strings +3 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/English.lproj/InfoPlist.strings +3 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/English.lproj/LanguageMap.plist +8 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/English.lproj/MainMenu.xib +17 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/English.lproj/Main_iPhone.storyboard +27 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/Images.xcassets/AppIcon.appiconset/Contents.json +58 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/Images.xcassets/image.imageset/Contents.json +23 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain.png +0 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain@2x.png +0 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain@3x.png +0 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/TestApp-Info.plist +28 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/check_no_signature.py +13 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/main.m +13 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/only-compile-in-32-bits.m +7 -0
- data/ext/gyp/test/ios/app-bundle/TestApp/only-compile-in-64-bits.m +7 -0
- data/ext/gyp/test/ios/app-bundle/test-archs.gyp +109 -0
- data/ext/gyp/test/ios/app-bundle/test-assets-catalog.gyp +45 -0
- data/ext/gyp/test/ios/app-bundle/test-crosscompile.gyp +47 -0
- data/ext/gyp/test/ios/app-bundle/test-device.gyp +109 -0
- data/ext/gyp/test/ios/app-bundle/test.gyp +75 -0
- data/ext/gyp/test/ios/app-bundle/tool_main.cc +7 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/Info.plist +24 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/copies-with-xcode-envvars.gyp +97 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/empty.c +1 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/file0 +1 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/file1 +1 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/file10 +1 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/file11 +1 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/file2 +1 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/file3 +1 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/file4 +1 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/file5 +1 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/file6 +1 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/file7 +1 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/file8 +1 -0
- data/ext/gyp/test/ios/copies-with-xcode-envvars/file9 +1 -0
- data/ext/gyp/test/ios/deployment-target/check-version-min.c +33 -0
- data/ext/gyp/test/ios/deployment-target/deployment-target.gyp +34 -0
- data/ext/gyp/test/ios/extension/ActionExtension/ActionViewController.h +9 -0
- data/ext/gyp/test/ios/extension/ActionExtension/ActionViewController.m +31 -0
- data/ext/gyp/test/ios/extension/ActionExtension/Info.plist +42 -0
- data/ext/gyp/test/ios/extension/ActionExtension/MainInterface.storyboard +63 -0
- data/ext/gyp/test/ios/extension/ExtensionContainer/AppDelegate.h +12 -0
- data/ext/gyp/test/ios/extension/ExtensionContainer/AppDelegate.m +19 -0
- data/ext/gyp/test/ios/extension/ExtensionContainer/Base.lproj/Main.storyboard +25 -0
- data/ext/gyp/test/ios/extension/ExtensionContainer/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- data/ext/gyp/test/ios/extension/ExtensionContainer/Images.xcassets/LaunchImage.launchimage/Contents.json +51 -0
- data/ext/gyp/test/ios/extension/ExtensionContainer/Info.plist +32 -0
- data/ext/gyp/test/ios/extension/ExtensionContainer/ViewController.h +11 -0
- data/ext/gyp/test/ios/extension/ExtensionContainer/ViewController.m +24 -0
- data/ext/gyp/test/ios/extension/ExtensionContainer/main.m +13 -0
- data/ext/gyp/test/ios/extension/extension.gyp +91 -0
- data/ext/gyp/test/ios/framework/framework.gyp +43 -0
- data/ext/gyp/test/ios/framework/iOSFramework/Info.plist +26 -0
- data/ext/gyp/test/ios/framework/iOSFramework/Thing.h +10 -0
- data/ext/gyp/test/ios/framework/iOSFramework/Thing.m +22 -0
- data/ext/gyp/test/ios/framework/iOSFramework/iOSFramework.h +9 -0
- data/ext/gyp/test/ios/gyptest-app-ios-assets-catalog.py +57 -0
- data/ext/gyp/test/ios/gyptest-app-ios.py +76 -0
- data/ext/gyp/test/ios/gyptest-archs.py +62 -0
- data/ext/gyp/test/ios/gyptest-copies-with-xcode-envvars.py +65 -0
- data/ext/gyp/test/ios/gyptest-crosscompile.py +34 -0
- data/ext/gyp/test/ios/gyptest-deployment-target.py +23 -0
- data/ext/gyp/test/ios/gyptest-extension.py +51 -0
- data/ext/gyp/test/ios/gyptest-framework.py +37 -0
- data/ext/gyp/test/ios/gyptest-per-config-settings.py +190 -0
- data/ext/gyp/test/ios/gyptest-watch.py +44 -0
- data/ext/gyp/test/ios/gyptest-xcode-ninja.py +25 -0
- data/ext/gyp/test/ios/watch/WatchApp/Images.xcassets/AppIcon.appiconset/Contents.json +62 -0
- data/ext/gyp/test/ios/watch/WatchApp/Images.xcassets/LaunchImage.launchimage/Contents.json +24 -0
- data/ext/gyp/test/ios/watch/WatchApp/Info.plist +35 -0
- data/ext/gyp/test/ios/watch/WatchApp/Interface.storyboard +15 -0
- data/ext/gyp/test/ios/watch/WatchContainer/AppDelegate.h +12 -0
- data/ext/gyp/test/ios/watch/WatchContainer/AppDelegate.m +19 -0
- data/ext/gyp/test/ios/watch/WatchContainer/Base.lproj/Main.storyboard +25 -0
- data/ext/gyp/test/ios/watch/WatchContainer/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- data/ext/gyp/test/ios/watch/WatchContainer/Images.xcassets/LaunchImage.launchimage/Contents.json +51 -0
- data/ext/gyp/test/ios/watch/WatchContainer/Info.plist +32 -0
- data/ext/gyp/test/ios/watch/WatchContainer/ViewController.h +11 -0
- data/ext/gyp/test/ios/watch/WatchContainer/ViewController.m +24 -0
- data/ext/gyp/test/ios/watch/WatchContainer/main.m +13 -0
- data/ext/gyp/test/ios/watch/WatchKitExtension/Images.xcassets/MyImage.imageset/Contents.json +20 -0
- data/ext/gyp/test/ios/watch/WatchKitExtension/Info.plist +38 -0
- data/ext/gyp/test/ios/watch/WatchKitExtension/InterfaceController.h +10 -0
- data/ext/gyp/test/ios/watch/WatchKitExtension/InterfaceController.m +25 -0
- data/ext/gyp/test/ios/watch/WatchKitExtension/MainInterface.storyboard +63 -0
- data/ext/gyp/test/ios/watch/watch.gyp +105 -0
- data/ext/gyp/test/ios/xctests/App/AppDelegate.h +11 -0
- data/ext/gyp/test/ios/xctests/App/AppDelegate.m +18 -0
- data/ext/gyp/test/ios/xctests/App/Base.lproj/LaunchScreen.xib +41 -0
- data/ext/gyp/test/ios/xctests/App/Base.lproj/Main.storyboard +25 -0
- data/ext/gyp/test/ios/xctests/App/Images.xcassets/AppIcon.appiconset/Contents.json +68 -0
- data/ext/gyp/test/ios/xctests/App/Info.plist +47 -0
- data/ext/gyp/test/ios/xctests/App/ViewController.h +9 -0
- data/ext/gyp/test/ios/xctests/App/ViewController.m +21 -0
- data/ext/gyp/test/ios/xctests/App/main.m +13 -0
- data/ext/gyp/test/ios/xctests/AppTests/AppTests.m +31 -0
- data/ext/gyp/test/ios/xctests/AppTests/Info.plist +24 -0
- data/ext/gyp/test/ios/xctests/gyptest-xctests.py +49 -0
- data/ext/gyp/test/ios/xctests/xctests.gyp +74 -0
- data/ext/gyp/test/lib/README.txt +17 -0
- data/ext/gyp/test/lib/TestCmd.py +1597 -0
- data/ext/gyp/test/lib/TestCommon.py +591 -0
- data/ext/gyp/test/lib/TestGyp.py +1259 -0
- data/ext/gyp/test/lib/TestMac.py +76 -0
- data/ext/gyp/test/lib/TestWin.py +101 -0
- data/ext/gyp/test/library/gyptest-shared-obj-install-path.py +39 -0
- data/ext/gyp/test/library/gyptest-shared.py +84 -0
- data/ext/gyp/test/library/gyptest-static.py +84 -0
- data/ext/gyp/test/library/src/lib1.c +10 -0
- data/ext/gyp/test/library/src/lib1_moveable.c +10 -0
- data/ext/gyp/test/library/src/lib2.c +10 -0
- data/ext/gyp/test/library/src/lib2_moveable.c +10 -0
- data/ext/gyp/test/library/src/library.gyp +58 -0
- data/ext/gyp/test/library/src/program.c +15 -0
- data/ext/gyp/test/library/src/shared_dependency.gyp +33 -0
- data/ext/gyp/test/library_dirs/gyptest-library-dirs.py +50 -0
- data/ext/gyp/test/library_dirs/subdir/README.txt +1 -0
- data/ext/gyp/test/library_dirs/subdir/hello.cc +11 -0
- data/ext/gyp/test/library_dirs/subdir/mylib.cc +9 -0
- data/ext/gyp/test/library_dirs/subdir/mylib.h +12 -0
- data/ext/gyp/test/library_dirs/subdir/test-win.gyp +60 -0
- data/ext/gyp/test/library_dirs/subdir/test.gyp +68 -0
- data/ext/gyp/test/link-dependency/gyptest-link-dependency.py +23 -0
- data/ext/gyp/test/link-dependency/main.c +7 -0
- data/ext/gyp/test/link-dependency/mymalloc.c +12 -0
- data/ext/gyp/test/link-dependency/test.gyp +37 -0
- data/ext/gyp/test/link-objects/base.c +6 -0
- data/ext/gyp/test/link-objects/extra.c +5 -0
- data/ext/gyp/test/link-objects/gyptest-all.py +28 -0
- data/ext/gyp/test/link-objects/link-objects.gyp +24 -0
- data/ext/gyp/test/linux/gyptest-implicit-rpath.py +48 -0
- data/ext/gyp/test/linux/gyptest-ldflags-duplicates.py +22 -0
- data/ext/gyp/test/linux/gyptest-ldflags-from-environment.py +45 -0
- data/ext/gyp/test/linux/gyptest-target-rpath.py +43 -0
- data/ext/gyp/test/linux/implicit-rpath/file.c +1 -0
- data/ext/gyp/test/linux/implicit-rpath/main.c +1 -0
- data/ext/gyp/test/linux/implicit-rpath/test.gyp +47 -0
- data/ext/gyp/test/linux/ldflags-duplicates/check-ldflags.py +28 -0
- data/ext/gyp/test/linux/ldflags-duplicates/lib1.c +6 -0
- data/ext/gyp/test/linux/ldflags-duplicates/lib2.c +6 -0
- data/ext/gyp/test/linux/ldflags-duplicates/main.c +7 -0
- data/ext/gyp/test/linux/ldflags-duplicates/test.gyp +45 -0
- data/ext/gyp/test/linux/ldflags-from-environment/main.c +7 -0
- data/ext/gyp/test/linux/ldflags-from-environment/test.gyp +23 -0
- data/ext/gyp/test/linux/target-rpath/file.c +1 -0
- data/ext/gyp/test/linux/target-rpath/main.c +1 -0
- data/ext/gyp/test/linux/target-rpath/test.gyp +47 -0
- data/ext/gyp/test/mac/action-envvars/action/action.gyp +34 -0
- data/ext/gyp/test/mac/action-envvars/action/action.sh +8 -0
- data/ext/gyp/test/mac/app-bundle/TestApp/English.lproj/InfoPlist-error.strings +3 -0
- data/ext/gyp/test/mac/app-bundle/TestApp/English.lproj/InfoPlist.strings +3 -0
- data/ext/gyp/test/mac/app-bundle/TestApp/English.lproj/MainMenu.xib +4119 -0
- data/ext/gyp/test/mac/app-bundle/TestApp/English.lproj/utf-16be.strings +0 -0
- data/ext/gyp/test/mac/app-bundle/TestApp/English.lproj/utf-16le.strings +0 -0
- data/ext/gyp/test/mac/app-bundle/TestApp/Images.xcassets/AppIcon.appiconset/Contents.json +58 -0
- data/ext/gyp/test/mac/app-bundle/TestApp/Images.xcassets/image.imageset/Contents.json +23 -0
- data/ext/gyp/test/mac/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain.png +0 -0
- data/ext/gyp/test/mac/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain@2x.png +0 -0
- data/ext/gyp/test/mac/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain@3x.png +0 -0
- data/ext/gyp/test/mac/app-bundle/TestApp/TestApp-Info.plist +34 -0
- data/ext/gyp/test/mac/app-bundle/TestApp/TestAppAppDelegate.h +13 -0
- data/ext/gyp/test/mac/app-bundle/TestApp/TestAppAppDelegate.m +15 -0
- data/ext/gyp/test/mac/app-bundle/TestApp/main.m +10 -0
- data/ext/gyp/test/mac/app-bundle/empty.c +0 -0
- data/ext/gyp/test/mac/app-bundle/test-assets-catalog.gyp +43 -0
- data/ext/gyp/test/mac/app-bundle/test-error.gyp +31 -0
- data/ext/gyp/test/mac/app-bundle/test.gyp +41 -0
- data/ext/gyp/test/mac/archs/empty_main.cc +1 -0
- data/ext/gyp/test/mac/archs/file.mm +1 -0
- data/ext/gyp/test/mac/archs/file_a.cc +8 -0
- data/ext/gyp/test/mac/archs/file_a.h +10 -0
- data/ext/gyp/test/mac/archs/file_b.cc +8 -0
- data/ext/gyp/test/mac/archs/file_b.h +10 -0
- data/ext/gyp/test/mac/archs/file_c.cc +11 -0
- data/ext/gyp/test/mac/archs/file_d.cc +11 -0
- data/ext/gyp/test/mac/archs/header.h +1 -0
- data/ext/gyp/test/mac/archs/my_file.cc +4 -0
- data/ext/gyp/test/mac/archs/my_main_file.cc +9 -0
- data/ext/gyp/test/mac/archs/test-archs-multiarch.gyp +92 -0
- data/ext/gyp/test/mac/archs/test-archs-x86_64.gyp +27 -0
- data/ext/gyp/test/mac/archs/test-dependencies.gyp +92 -0
- data/ext/gyp/test/mac/archs/test-no-archs.gyp +21 -0
- data/ext/gyp/test/mac/archs/test-valid-archs.gyp +28 -0
- data/ext/gyp/test/mac/bundle-resources/change.sh +3 -0
- data/ext/gyp/test/mac/bundle-resources/executable-file.sh +3 -0
- data/ext/gyp/test/mac/bundle-resources/secret.txt +1 -0
- data/ext/gyp/test/mac/bundle-resources/test.gyp +59 -0
- data/ext/gyp/test/mac/cflags/ccfile.cc +7 -0
- data/ext/gyp/test/mac/cflags/ccfile_withcflags.cc +7 -0
- data/ext/gyp/test/mac/cflags/cfile.c +7 -0
- data/ext/gyp/test/mac/cflags/cppfile.cpp +7 -0
- data/ext/gyp/test/mac/cflags/cppfile_withcflags.cpp +7 -0
- data/ext/gyp/test/mac/cflags/cxxfile.cxx +7 -0
- data/ext/gyp/test/mac/cflags/cxxfile_withcflags.cxx +7 -0
- data/ext/gyp/test/mac/cflags/mfile.m +7 -0
- data/ext/gyp/test/mac/cflags/mmfile.mm +7 -0
- data/ext/gyp/test/mac/cflags/mmfile_withcflags.mm +7 -0
- data/ext/gyp/test/mac/cflags/test.gyp +132 -0
- data/ext/gyp/test/mac/clang-cxx-language-standard/c++11.cc +8 -0
- data/ext/gyp/test/mac/clang-cxx-language-standard/c++98.cc +24 -0
- data/ext/gyp/test/mac/clang-cxx-language-standard/clang-cxx-language-standard.gyp +30 -0
- data/ext/gyp/test/mac/clang-cxx-library/clang-cxx-library.gyp +32 -0
- data/ext/gyp/test/mac/clang-cxx-library/libc++.cc +11 -0
- data/ext/gyp/test/mac/clang-cxx-library/libstdc++.cc +11 -0
- data/ext/gyp/test/mac/copies-with-xcode-envvars/copies-with-xcode-envvars.gyp +87 -0
- data/ext/gyp/test/mac/copies-with-xcode-envvars/empty.c +1 -0
- data/ext/gyp/test/mac/copies-with-xcode-envvars/file0 +1 -0
- data/ext/gyp/test/mac/copies-with-xcode-envvars/file1 +1 -0
- data/ext/gyp/test/mac/copies-with-xcode-envvars/file10 +1 -0
- data/ext/gyp/test/mac/copies-with-xcode-envvars/file11 +1 -0
- data/ext/gyp/test/mac/copies-with-xcode-envvars/file2 +1 -0
- data/ext/gyp/test/mac/copies-with-xcode-envvars/file3 +1 -0
- data/ext/gyp/test/mac/copies-with-xcode-envvars/file4 +1 -0
- data/ext/gyp/test/mac/copies-with-xcode-envvars/file5 +1 -0
- data/ext/gyp/test/mac/copies-with-xcode-envvars/file6 +1 -0
- data/ext/gyp/test/mac/copies-with-xcode-envvars/file7 +1 -0
- data/ext/gyp/test/mac/copies-with-xcode-envvars/file8 +1 -0
- data/ext/gyp/test/mac/copies-with-xcode-envvars/file9 +1 -0
- data/ext/gyp/test/mac/copy-dylib/empty.c +1 -0
- data/ext/gyp/test/mac/copy-dylib/test.gyp +31 -0
- data/ext/gyp/test/mac/debuginfo/file.c +6 -0
- data/ext/gyp/test/mac/debuginfo/test.gyp +82 -0
- data/ext/gyp/test/mac/depend-on-bundle/English.lproj/InfoPlist.strings +1 -0
- data/ext/gyp/test/mac/depend-on-bundle/Info.plist +28 -0
- data/ext/gyp/test/mac/depend-on-bundle/bundle.c +1 -0
- data/ext/gyp/test/mac/depend-on-bundle/executable.c +4 -0
- data/ext/gyp/test/mac/depend-on-bundle/test.gyp +28 -0
- data/ext/gyp/test/mac/deployment-target/check-version-min.c +33 -0
- data/ext/gyp/test/mac/deployment-target/deployment-target.gyp +28 -0
- data/ext/gyp/test/mac/framework/TestFramework/English.lproj/InfoPlist.strings +2 -0
- data/ext/gyp/test/mac/framework/TestFramework/Info.plist +28 -0
- data/ext/gyp/test/mac/framework/TestFramework/ObjCVector.h +28 -0
- data/ext/gyp/test/mac/framework/TestFramework/ObjCVector.mm +63 -0
- data/ext/gyp/test/mac/framework/TestFramework/ObjCVectorInternal.h +9 -0
- data/ext/gyp/test/mac/framework/TestFramework/TestFramework_Prefix.pch +7 -0
- data/ext/gyp/test/mac/framework/empty.c +0 -0
- data/ext/gyp/test/mac/framework/framework.gyp +108 -0
- data/ext/gyp/test/mac/framework-dirs/calculate.c +15 -0
- data/ext/gyp/test/mac/framework-dirs/framework-dirs.gyp +21 -0
- data/ext/gyp/test/mac/framework-headers/myframework.h +8 -0
- data/ext/gyp/test/mac/framework-headers/myframework.m +8 -0
- data/ext/gyp/test/mac/framework-headers/test.gyp +44 -0
- data/ext/gyp/test/mac/global-settings/src/dir1/dir1.gyp +11 -0
- data/ext/gyp/test/mac/global-settings/src/dir2/dir2.gyp +22 -0
- data/ext/gyp/test/mac/global-settings/src/dir2/file.txt +1 -0
- data/ext/gyp/test/mac/gyptest-action-envvars.py +36 -0
- data/ext/gyp/test/mac/gyptest-app-assets-catalog.py +125 -0
- data/ext/gyp/test/mac/gyptest-app-error.py +49 -0
- data/ext/gyp/test/mac/gyptest-app.py +122 -0
- data/ext/gyp/test/mac/gyptest-archs.py +96 -0
- data/ext/gyp/test/mac/gyptest-bundle-resources.py +64 -0
- data/ext/gyp/test/mac/gyptest-cflags.py +21 -0
- data/ext/gyp/test/mac/gyptest-clang-cxx-language-standard.py +25 -0
- data/ext/gyp/test/mac/gyptest-clang-cxx-library.py +32 -0
- data/ext/gyp/test/mac/gyptest-copies-with-xcode-envvars.py +65 -0
- data/ext/gyp/test/mac/gyptest-copies.py +62 -0
- data/ext/gyp/test/mac/gyptest-copy-dylib.py +25 -0
- data/ext/gyp/test/mac/gyptest-debuginfo.py +36 -0
- data/ext/gyp/test/mac/gyptest-depend-on-bundle.py +45 -0
- data/ext/gyp/test/mac/gyptest-deployment-target.py +27 -0
- data/ext/gyp/test/mac/gyptest-framework-dirs.py +23 -0
- data/ext/gyp/test/mac/gyptest-framework-headers.py +38 -0
- data/ext/gyp/test/mac/gyptest-framework.py +80 -0
- data/ext/gyp/test/mac/gyptest-global-settings.py +33 -0
- data/ext/gyp/test/mac/gyptest-identical-name.py +45 -0
- data/ext/gyp/test/mac/gyptest-infoplist-process.py +56 -0
- data/ext/gyp/test/mac/gyptest-installname.py +85 -0
- data/ext/gyp/test/mac/gyptest-kext.py +27 -0
- data/ext/gyp/test/mac/gyptest-ldflags-passed-to-libtool.py +37 -0
- data/ext/gyp/test/mac/gyptest-ldflags.py +74 -0
- data/ext/gyp/test/mac/gyptest-libraries.py +30 -0
- data/ext/gyp/test/mac/gyptest-libtool-zero.py +26 -0
- data/ext/gyp/test/mac/gyptest-loadable-module-bundle-product-extension.py +31 -0
- data/ext/gyp/test/mac/gyptest-loadable-module.py +54 -0
- data/ext/gyp/test/mac/gyptest-lto.py +66 -0
- data/ext/gyp/test/mac/gyptest-missing-cfbundlesignature.py +34 -0
- data/ext/gyp/test/mac/gyptest-non-strs-flattened-to-env.py +38 -0
- data/ext/gyp/test/mac/gyptest-objc-arc.py +27 -0
- data/ext/gyp/test/mac/gyptest-objc-gc.py +51 -0
- data/ext/gyp/test/mac/gyptest-postbuild-copy-bundle.py +75 -0
- data/ext/gyp/test/mac/gyptest-postbuild-defaults.py +34 -0
- data/ext/gyp/test/mac/gyptest-postbuild-fail.py +71 -0
- data/ext/gyp/test/mac/gyptest-postbuild-multiple-configurations.py +26 -0
- data/ext/gyp/test/mac/gyptest-postbuild-static-library.py +28 -0
- data/ext/gyp/test/mac/gyptest-postbuild.py +53 -0
- data/ext/gyp/test/mac/gyptest-prefixheader.py +20 -0
- data/ext/gyp/test/mac/gyptest-rebuild.py +46 -0
- data/ext/gyp/test/mac/gyptest-rpath.py +50 -0
- data/ext/gyp/test/mac/gyptest-sdkroot.py +56 -0
- data/ext/gyp/test/mac/gyptest-sourceless-module.py +77 -0
- data/ext/gyp/test/mac/gyptest-strip-default.py +97 -0
- data/ext/gyp/test/mac/gyptest-strip.py +66 -0
- data/ext/gyp/test/mac/gyptest-swift-library.py +67 -0
- data/ext/gyp/test/mac/gyptest-type-envvars.py +26 -0
- data/ext/gyp/test/mac/gyptest-unicode-settings.py +20 -0
- data/ext/gyp/test/mac/gyptest-xcode-env-order.py +95 -0
- data/ext/gyp/test/mac/gyptest-xcode-gcc-clang.py +40 -0
- data/ext/gyp/test/mac/gyptest-xcode-gcc.py +60 -0
- data/ext/gyp/test/mac/gyptest-xcode-support-actions.py +25 -0
- data/ext/gyp/test/mac/gyptest-xctest.py +41 -0
- data/ext/gyp/test/mac/gyptest-xcuitest.py +39 -0
- data/ext/gyp/test/mac/identical-name/proxy/proxy.cc +2 -0
- data/ext/gyp/test/mac/identical-name/proxy/proxy.gyp +9 -0
- data/ext/gyp/test/mac/identical-name/proxy/testlib/testlib.cc +2 -0
- data/ext/gyp/test/mac/identical-name/proxy/testlib/testlib.gyp +8 -0
- data/ext/gyp/test/mac/identical-name/test-should-fail.gyp +10 -0
- data/ext/gyp/test/mac/identical-name/test.gyp +11 -0
- data/ext/gyp/test/mac/identical-name/test.gypi +7 -0
- data/ext/gyp/test/mac/identical-name/testlib/main.cc +3 -0
- data/ext/gyp/test/mac/identical-name/testlib/testlib.gyp +14 -0
- data/ext/gyp/test/mac/identical-name/testlib/void.cc +2 -0
- data/ext/gyp/test/mac/infoplist-process/Info.plist +36 -0
- data/ext/gyp/test/mac/infoplist-process/main.c +7 -0
- data/ext/gyp/test/mac/infoplist-process/test1.gyp +25 -0
- data/ext/gyp/test/mac/infoplist-process/test2.gyp +25 -0
- data/ext/gyp/test/mac/infoplist-process/test3.gyp +25 -0
- data/ext/gyp/test/mac/installname/Info.plist +28 -0
- data/ext/gyp/test/mac/installname/file.c +1 -0
- data/ext/gyp/test/mac/installname/main.c +1 -0
- data/ext/gyp/test/mac/installname/test.gyp +93 -0
- data/ext/gyp/test/mac/kext/GypKext/GypKext-Info.plist +35 -0
- data/ext/gyp/test/mac/kext/GypKext/GypKext.c +16 -0
- data/ext/gyp/test/mac/kext/kext.gyp +18 -0
- data/ext/gyp/test/mac/ldflags/subdirectory/Info.plist +8 -0
- data/ext/gyp/test/mac/ldflags/subdirectory/file.c +2 -0
- data/ext/gyp/test/mac/ldflags/subdirectory/symbol_list.def +1 -0
- data/ext/gyp/test/mac/ldflags/subdirectory/test.gyp +66 -0
- data/ext/gyp/test/mac/ldflags-libtool/file.c +1 -0
- data/ext/gyp/test/mac/ldflags-libtool/test.gyp +17 -0
- data/ext/gyp/test/mac/libraries/subdir/README.txt +1 -0
- data/ext/gyp/test/mac/libraries/subdir/hello.cc +10 -0
- data/ext/gyp/test/mac/libraries/subdir/mylib.c +7 -0
- data/ext/gyp/test/mac/libraries/subdir/test.gyp +65 -0
- data/ext/gyp/test/mac/libtool-zero/mylib.c +7 -0
- data/ext/gyp/test/mac/libtool-zero/test.gyp +18 -0
- data/ext/gyp/test/mac/loadable-module/Info.plist +26 -0
- data/ext/gyp/test/mac/loadable-module/module.c +11 -0
- data/ext/gyp/test/mac/loadable-module/test.gyp +18 -0
- data/ext/gyp/test/mac/loadable-module-bundle-product-extension/src.cc +7 -0
- data/ext/gyp/test/mac/loadable-module-bundle-product-extension/test.gyp +24 -0
- data/ext/gyp/test/mac/lto/asmfile.S +2 -0
- data/ext/gyp/test/mac/lto/ccfile.cc +1 -0
- data/ext/gyp/test/mac/lto/cfile.c +1 -0
- data/ext/gyp/test/mac/lto/mfile.m +1 -0
- data/ext/gyp/test/mac/lto/mmfile.mm +1 -0
- data/ext/gyp/test/mac/lto/test.gyp +35 -0
- data/ext/gyp/test/mac/missing-cfbundlesignature/Info.plist +10 -0
- data/ext/gyp/test/mac/missing-cfbundlesignature/Other-Info.plist +12 -0
- data/ext/gyp/test/mac/missing-cfbundlesignature/Third-Info.plist +12 -0
- data/ext/gyp/test/mac/missing-cfbundlesignature/file.c +1 -0
- data/ext/gyp/test/mac/missing-cfbundlesignature/test.gyp +34 -0
- data/ext/gyp/test/mac/non-strs-flattened-to-env/Info.plist +15 -0
- data/ext/gyp/test/mac/non-strs-flattened-to-env/main.c +7 -0
- data/ext/gyp/test/mac/non-strs-flattened-to-env/test.gyp +27 -0
- data/ext/gyp/test/mac/objc-arc/c-file.c +5 -0
- data/ext/gyp/test/mac/objc-arc/cc-file.cc +5 -0
- data/ext/gyp/test/mac/objc-arc/m-file-arc-weak.m +9 -0
- data/ext/gyp/test/mac/objc-arc/m-file-no-arc.m +9 -0
- data/ext/gyp/test/mac/objc-arc/m-file.m +9 -0
- data/ext/gyp/test/mac/objc-arc/mm-file-arc-weak.mm +9 -0
- data/ext/gyp/test/mac/objc-arc/mm-file-no-arc.mm +9 -0
- data/ext/gyp/test/mac/objc-arc/mm-file.mm +9 -0
- data/ext/gyp/test/mac/objc-arc/test.gyp +53 -0
- data/ext/gyp/test/mac/objc-gc/c-file.c +1 -0
- data/ext/gyp/test/mac/objc-gc/cc-file.cc +1 -0
- data/ext/gyp/test/mac/objc-gc/main.m +6 -0
- data/ext/gyp/test/mac/objc-gc/needs-gc-mm.mm +1 -0
- data/ext/gyp/test/mac/objc-gc/needs-gc.m +1 -0
- data/ext/gyp/test/mac/objc-gc/test.gyp +102 -0
- data/ext/gyp/test/mac/postbuild-copy-bundle/Framework-Info.plist +30 -0
- data/ext/gyp/test/mac/postbuild-copy-bundle/TestApp-Info.plist +32 -0
- data/ext/gyp/test/mac/postbuild-copy-bundle/copied.txt +1 -0
- data/ext/gyp/test/mac/postbuild-copy-bundle/empty.c +0 -0
- data/ext/gyp/test/mac/postbuild-copy-bundle/main.c +4 -0
- data/ext/gyp/test/mac/postbuild-copy-bundle/postbuild-copy-framework.sh +9 -0
- data/ext/gyp/test/mac/postbuild-copy-bundle/resource_file.sb +1 -0
- data/ext/gyp/test/mac/postbuild-copy-bundle/test.gyp +49 -0
- data/ext/gyp/test/mac/postbuild-defaults/Info.plist +13 -0
- data/ext/gyp/test/mac/postbuild-defaults/main.c +7 -0
- data/ext/gyp/test/mac/postbuild-defaults/postbuild-defaults.sh +15 -0
- data/ext/gyp/test/mac/postbuild-defaults/test.gyp +26 -0
- data/ext/gyp/test/mac/postbuild-fail/file.c +6 -0
- data/ext/gyp/test/mac/postbuild-fail/postbuild-fail.sh +6 -0
- data/ext/gyp/test/mac/postbuild-fail/test.gyp +38 -0
- data/ext/gyp/test/mac/postbuild-fail/touch-dynamic.sh +7 -0
- data/ext/gyp/test/mac/postbuild-fail/touch-static.sh +7 -0
- data/ext/gyp/test/mac/postbuild-multiple-configurations/main.c +4 -0
- data/ext/gyp/test/mac/postbuild-multiple-configurations/postbuild-touch-file.sh +7 -0
- data/ext/gyp/test/mac/postbuild-multiple-configurations/test.gyp +26 -0
- data/ext/gyp/test/mac/postbuild-static-library/empty.c +4 -0
- data/ext/gyp/test/mac/postbuild-static-library/postbuild-touch-file.sh +7 -0
- data/ext/gyp/test/mac/postbuild-static-library/test.gyp +34 -0
- data/ext/gyp/test/mac/postbuilds/copy.sh +3 -0
- data/ext/gyp/test/mac/postbuilds/file.c +4 -0
- data/ext/gyp/test/mac/postbuilds/file_g.c +4 -0
- data/ext/gyp/test/mac/postbuilds/file_h.c +4 -0
- data/ext/gyp/test/mac/postbuilds/script/shared_library_postbuild.sh +23 -0
- data/ext/gyp/test/mac/postbuilds/script/static_library_postbuild.sh +23 -0
- data/ext/gyp/test/mac/postbuilds/subdirectory/copied_file.txt +1 -0
- data/ext/gyp/test/mac/postbuilds/subdirectory/nested_target.gyp +53 -0
- data/ext/gyp/test/mac/postbuilds/test.gyp +93 -0
- data/ext/gyp/test/mac/prefixheader/file.c +1 -0
- data/ext/gyp/test/mac/prefixheader/file.cc +1 -0
- data/ext/gyp/test/mac/prefixheader/file.m +1 -0
- data/ext/gyp/test/mac/prefixheader/file.mm +1 -0
- data/ext/gyp/test/mac/prefixheader/header.h +1 -0
- data/ext/gyp/test/mac/prefixheader/test.gyp +82 -0
- data/ext/gyp/test/mac/rebuild/TestApp-Info.plist +32 -0
- data/ext/gyp/test/mac/rebuild/delay-touch.sh +6 -0
- data/ext/gyp/test/mac/rebuild/empty.c +0 -0
- data/ext/gyp/test/mac/rebuild/main.c +1 -0
- data/ext/gyp/test/mac/rebuild/test.gyp +56 -0
- data/ext/gyp/test/mac/rpath/file.c +1 -0
- data/ext/gyp/test/mac/rpath/main.c +1 -0
- data/ext/gyp/test/mac/rpath/test.gyp +48 -0
- data/ext/gyp/test/mac/sdkroot/file.cc +5 -0
- data/ext/gyp/test/mac/sdkroot/test.gyp +35 -0
- data/ext/gyp/test/mac/sdkroot/test_shorthand.sh +20 -0
- data/ext/gyp/test/mac/sourceless-module/empty.c +1 -0
- data/ext/gyp/test/mac/sourceless-module/empty.txt +2 -0
- data/ext/gyp/test/mac/sourceless-module/fun.c +1 -0
- data/ext/gyp/test/mac/sourceless-module/test.gyp +96 -0
- data/ext/gyp/test/mac/strip/file.c +22 -0
- data/ext/gyp/test/mac/strip/main.c +25 -0
- data/ext/gyp/test/mac/strip/strip.saves +5 -0
- data/ext/gyp/test/mac/strip/subdirectory/nested_file.c +1 -0
- data/ext/gyp/test/mac/strip/subdirectory/nested_strip.saves +5 -0
- data/ext/gyp/test/mac/strip/subdirectory/subdirectory.gyp +38 -0
- data/ext/gyp/test/mac/strip/subdirectory/test_reading_save_file_from_postbuild.sh +5 -0
- data/ext/gyp/test/mac/strip/test-defaults.gyp +51 -0
- data/ext/gyp/test/mac/strip/test.gyp +119 -0
- data/ext/gyp/test/mac/swift-library/Info.plist +28 -0
- data/ext/gyp/test/mac/swift-library/file.swift +9 -0
- data/ext/gyp/test/mac/swift-library/test.gyp +21 -0
- data/ext/gyp/test/mac/type_envvars/file.c +6 -0
- data/ext/gyp/test/mac/type_envvars/test.gyp +100 -0
- data/ext/gyp/test/mac/type_envvars/test_bundle_executable.sh +30 -0
- data/ext/gyp/test/mac/type_envvars/test_bundle_loadable_module.sh +35 -0
- data/ext/gyp/test/mac/type_envvars/test_bundle_shared_library.sh +38 -0
- data/ext/gyp/test/mac/type_envvars/test_check_sdkroot.sh +47 -0
- data/ext/gyp/test/mac/type_envvars/test_nonbundle_executable.sh +33 -0
- data/ext/gyp/test/mac/type_envvars/test_nonbundle_loadable_module.sh +31 -0
- data/ext/gyp/test/mac/type_envvars/test_nonbundle_none.sh +32 -0
- data/ext/gyp/test/mac/type_envvars/test_nonbundle_shared_library.sh +31 -0
- data/ext/gyp/test/mac/type_envvars/test_nonbundle_static_library.sh +31 -0
- data/ext/gyp/test/mac/unicode-settings/file.cc +2 -0
- data/ext/gyp/test/mac/unicode-settings/test.gyp +23 -0
- data/ext/gyp/test/mac/unicode-settings/test_bundle_display_name.sh +7 -0
- data/ext/gyp/test/mac/xcode-env-order/Info.plist +56 -0
- data/ext/gyp/test/mac/xcode-env-order/file.ext1 +0 -0
- data/ext/gyp/test/mac/xcode-env-order/file.ext2 +0 -0
- data/ext/gyp/test/mac/xcode-env-order/file.ext3 +0 -0
- data/ext/gyp/test/mac/xcode-env-order/main.c +7 -0
- data/ext/gyp/test/mac/xcode-env-order/test.gyp +121 -0
- data/ext/gyp/test/mac/xcode-gcc/aliasing.cc +13 -0
- data/ext/gyp/test/mac/xcode-gcc/test-clang.gyp +42 -0
- data/ext/gyp/test/mac/xcode-gcc/test.gyp +60 -0
- data/ext/gyp/test/mac/xcode-gcc/valid_c.c +8 -0
- data/ext/gyp/test/mac/xcode-gcc/valid_cc.cc +8 -0
- data/ext/gyp/test/mac/xcode-gcc/valid_m.m +8 -0
- data/ext/gyp/test/mac/xcode-gcc/valid_mm.mm +8 -0
- data/ext/gyp/test/mac/xcode-gcc/warn_about_invalid_offsetof_macro.cc +15 -0
- data/ext/gyp/test/mac/xcode-gcc/warn_about_missing_newline.c +8 -0
- data/ext/gyp/test/mac/xcode-support-actions/source.c +0 -0
- data/ext/gyp/test/mac/xcode-support-actions/test.gyp +26 -0
- data/ext/gyp/test/mac/xctest/MyClass.h +8 -0
- data/ext/gyp/test/mac/xctest/MyClass.m +8 -0
- data/ext/gyp/test/mac/xctest/TestCase.m +16 -0
- data/ext/gyp/test/mac/xctest/resource.txt +1 -0
- data/ext/gyp/test/mac/xctest/test.gyp +47 -0
- data/ext/gyp/test/mac/xctest/test.xcodeproj/xcshareddata/xcschemes/classes.xcscheme +69 -0
- data/ext/gyp/test/mac/xcuitest/Info.plist +28 -0
- data/ext/gyp/test/mac/xcuitest/MyAppDelegate.h +8 -0
- data/ext/gyp/test/mac/xcuitest/MyAppDelegate.m +19 -0
- data/ext/gyp/test/mac/xcuitest/TestCase.m +15 -0
- data/ext/gyp/test/mac/xcuitest/main.m +15 -0
- data/ext/gyp/test/mac/xcuitest/resource.txt +1 -0
- data/ext/gyp/test/mac/xcuitest/test.gyp +69 -0
- data/ext/gyp/test/make/dependencies.gyp +15 -0
- data/ext/gyp/test/make/gyptest-dependencies.py +26 -0
- data/ext/gyp/test/make/gyptest-noload.py +57 -0
- data/ext/gyp/test/make/main.cc +12 -0
- data/ext/gyp/test/make/main.h +0 -0
- data/ext/gyp/test/make/noload/all.gyp +18 -0
- data/ext/gyp/test/make/noload/lib/shared.c +3 -0
- data/ext/gyp/test/make/noload/lib/shared.gyp +16 -0
- data/ext/gyp/test/make/noload/lib/shared.h +1 -0
- data/ext/gyp/test/make/noload/main.c +9 -0
- data/ext/gyp/test/make_global_settings/ar/gyptest-make_global_settings_ar.py +126 -0
- data/ext/gyp/test/make_global_settings/ar/make_global_settings_ar.gyp +29 -0
- data/ext/gyp/test/make_global_settings/basics/gyptest-make_global_settings.py +51 -0
- data/ext/gyp/test/make_global_settings/basics/make_global_settings.gyp +17 -0
- data/ext/gyp/test/make_global_settings/env-wrapper/gyptest-wrapper.py +51 -0
- data/ext/gyp/test/make_global_settings/env-wrapper/wrapper.gyp +17 -0
- data/ext/gyp/test/make_global_settings/full-toolchain/bar.cc +1 -0
- data/ext/gyp/test/make_global_settings/full-toolchain/foo.c +1 -0
- data/ext/gyp/test/make_global_settings/full-toolchain/gyptest-make_global_settings.py +53 -0
- data/ext/gyp/test/make_global_settings/full-toolchain/make_global_settings.gyp +22 -0
- data/ext/gyp/test/make_global_settings/full-toolchain/my_nm.py +9 -0
- data/ext/gyp/test/make_global_settings/full-toolchain/my_readelf.py +9 -0
- data/ext/gyp/test/make_global_settings/ld/gyptest-make_global_settings_ld.py +130 -0
- data/ext/gyp/test/make_global_settings/ld/make_global_settings_ld.gyp +29 -0
- data/ext/gyp/test/make_global_settings/wrapper/gyptest-wrapper.py +52 -0
- data/ext/gyp/test/make_global_settings/wrapper/wrapper.gyp +21 -0
- data/ext/gyp/test/many-actions/file0 +0 -0
- data/ext/gyp/test/many-actions/file1 +0 -0
- data/ext/gyp/test/many-actions/file2 +0 -0
- data/ext/gyp/test/many-actions/file3 +0 -0
- data/ext/gyp/test/many-actions/file4 +0 -0
- data/ext/gyp/test/many-actions/gyptest-many-actions-unsorted.py +43 -0
- data/ext/gyp/test/many-actions/gyptest-many-actions.py +29 -0
- data/ext/gyp/test/many-actions/many-actions-unsorted.gyp +154 -0
- data/ext/gyp/test/many-actions/many-actions.gyp +1817 -0
- data/ext/gyp/test/module/gyptest-default.py +28 -0
- data/ext/gyp/test/module/src/lib1.c +10 -0
- data/ext/gyp/test/module/src/lib2.c +10 -0
- data/ext/gyp/test/module/src/module.gyp +53 -0
- data/ext/gyp/test/module/src/program.c +111 -0
- data/ext/gyp/test/msvs/buildevents/buildevents.gyp +14 -0
- data/ext/gyp/test/msvs/buildevents/gyptest-msbuild-supports-prepostbuild.py +24 -0
- data/ext/gyp/test/msvs/buildevents/gyptest-ninja-warnings.py +29 -0
- data/ext/gyp/test/msvs/buildevents/main.cc +5 -0
- data/ext/gyp/test/msvs/config_attrs/gyptest-config_attrs.py +41 -0
- data/ext/gyp/test/msvs/config_attrs/hello.c +11 -0
- data/ext/gyp/test/msvs/config_attrs/hello.gyp +21 -0
- data/ext/gyp/test/msvs/express/base/base.gyp +22 -0
- data/ext/gyp/test/msvs/express/express.gyp +19 -0
- data/ext/gyp/test/msvs/express/gyptest-express.py +29 -0
- data/ext/gyp/test/msvs/external_builder/external.gyp +68 -0
- data/ext/gyp/test/msvs/external_builder/external_builder.py +9 -0
- data/ext/gyp/test/msvs/external_builder/gyptest-all.py +59 -0
- data/ext/gyp/test/msvs/external_builder/hello.cpp +10 -0
- data/ext/gyp/test/msvs/external_builder/hello.z +6 -0
- data/ext/gyp/test/msvs/external_builder/msbuild_action.py +9 -0
- data/ext/gyp/test/msvs/external_builder/msbuild_rule.py +11 -0
- data/ext/gyp/test/msvs/filters/filters.gyp +47 -0
- data/ext/gyp/test/msvs/filters/gyptest-filters-2008.py +68 -0
- data/ext/gyp/test/msvs/filters/gyptest-filters-2010.py +57 -0
- data/ext/gyp/test/msvs/list_excluded/gyptest-all.py +51 -0
- data/ext/gyp/test/msvs/list_excluded/hello.cpp +10 -0
- data/ext/gyp/test/msvs/list_excluded/hello_exclude.gyp +19 -0
- data/ext/gyp/test/msvs/list_excluded/hello_mac.cpp +10 -0
- data/ext/gyp/test/msvs/missing_sources/gyptest-missing.py +43 -0
- data/ext/gyp/test/msvs/missing_sources/hello_missing.gyp +15 -0
- data/ext/gyp/test/msvs/multiple_actions_error_handling/action_fail.py +7 -0
- data/ext/gyp/test/msvs/multiple_actions_error_handling/action_succeed.py +7 -0
- data/ext/gyp/test/msvs/multiple_actions_error_handling/actions.gyp +40 -0
- data/ext/gyp/test/msvs/multiple_actions_error_handling/gyptest.py +26 -0
- data/ext/gyp/test/msvs/props/AppName.props +14 -0
- data/ext/gyp/test/msvs/props/AppName.vsprops +11 -0
- data/ext/gyp/test/msvs/props/gyptest-props.py +22 -0
- data/ext/gyp/test/msvs/props/hello.c +11 -0
- data/ext/gyp/test/msvs/props/hello.gyp +22 -0
- data/ext/gyp/test/msvs/rules_stdout_stderr/dummy.bar +5 -0
- data/ext/gyp/test/msvs/rules_stdout_stderr/dummy.foo +5 -0
- data/ext/gyp/test/msvs/rules_stdout_stderr/gyptest-rules-stdout-stderr.py +29 -0
- data/ext/gyp/test/msvs/rules_stdout_stderr/rule_stderr.py +8 -0
- data/ext/gyp/test/msvs/rules_stdout_stderr/rule_stdout.py +7 -0
- data/ext/gyp/test/msvs/rules_stdout_stderr/rules-stdout-stderr.gyp +52 -0
- data/ext/gyp/test/msvs/shared_output/common.gypi +17 -0
- data/ext/gyp/test/msvs/shared_output/gyptest-shared_output.py +41 -0
- data/ext/gyp/test/msvs/shared_output/hello.c +12 -0
- data/ext/gyp/test/msvs/shared_output/hello.gyp +21 -0
- data/ext/gyp/test/msvs/shared_output/there/there.c +12 -0
- data/ext/gyp/test/msvs/shared_output/there/there.gyp +16 -0
- data/ext/gyp/test/msvs/uldi2010/gyptest-all.py +20 -0
- data/ext/gyp/test/msvs/uldi2010/hello.c +13 -0
- data/ext/gyp/test/msvs/uldi2010/hello.gyp +26 -0
- data/ext/gyp/test/msvs/uldi2010/hello2.c +10 -0
- data/ext/gyp/test/multiple-targets/gyptest-all.py +30 -0
- data/ext/gyp/test/multiple-targets/gyptest-default.py +30 -0
- data/ext/gyp/test/multiple-targets/src/common.c +7 -0
- data/ext/gyp/test/multiple-targets/src/multiple.gyp +24 -0
- data/ext/gyp/test/multiple-targets/src/prog1.c +10 -0
- data/ext/gyp/test/multiple-targets/src/prog2.c +10 -0
- data/ext/gyp/test/ninja/action-rule-hash/gyptest-action-rule-hash.py +32 -0
- data/ext/gyp/test/ninja/action-rule-hash/subdir/action-rule-hash.gyp +29 -0
- data/ext/gyp/test/ninja/action-rule-hash/subdir/emit.py +13 -0
- data/ext/gyp/test/ninja/action_dependencies/gyptest-action-dependencies.py +64 -0
- data/ext/gyp/test/ninja/action_dependencies/src/a.c +10 -0
- data/ext/gyp/test/ninja/action_dependencies/src/a.h +13 -0
- data/ext/gyp/test/ninja/action_dependencies/src/action_dependencies.gyp +88 -0
- data/ext/gyp/test/ninja/action_dependencies/src/b.c +18 -0
- data/ext/gyp/test/ninja/action_dependencies/src/b.h +13 -0
- data/ext/gyp/test/ninja/action_dependencies/src/c.c +10 -0
- data/ext/gyp/test/ninja/action_dependencies/src/c.h +13 -0
- data/ext/gyp/test/ninja/action_dependencies/src/emit.py +11 -0
- data/ext/gyp/test/ninja/chained-dependency/chained-dependency.gyp +53 -0
- data/ext/gyp/test/ninja/chained-dependency/chained.c +5 -0
- data/ext/gyp/test/ninja/chained-dependency/gyptest-chained-dependency.py +30 -0
- data/ext/gyp/test/ninja/empty-and-non-empty-duplicate-name/gyptest-empty-and-non-empty-duplicate-name.py +23 -0
- data/ext/gyp/test/ninja/empty-and-non-empty-duplicate-name/subdir/included.gyp +19 -0
- data/ext/gyp/test/ninja/empty-and-non-empty-duplicate-name/test.gyp +19 -0
- data/ext/gyp/test/ninja/normalize-paths-win/gyptest-normalize-paths.py +46 -0
- data/ext/gyp/test/ninja/normalize-paths-win/hello.cc +7 -0
- data/ext/gyp/test/ninja/normalize-paths-win/normalize-paths.gyp +68 -0
- data/ext/gyp/test/ninja/s-needs-no-depfiles/empty.s +1 -0
- data/ext/gyp/test/ninja/s-needs-no-depfiles/gyptest-s-needs-no-depfiles.py +42 -0
- data/ext/gyp/test/ninja/s-needs-no-depfiles/s-needs-no-depfiles.gyp +13 -0
- data/ext/gyp/test/ninja/solibs_avoid_relinking/gyptest-solibs-avoid-relinking.py +48 -0
- data/ext/gyp/test/ninja/solibs_avoid_relinking/main.cc +5 -0
- data/ext/gyp/test/ninja/solibs_avoid_relinking/solib.cc +8 -0
- data/ext/gyp/test/ninja/solibs_avoid_relinking/solibs_avoid_relinking.gyp +38 -0
- data/ext/gyp/test/ninja/use-console/foo.bar +5 -0
- data/ext/gyp/test/ninja/use-console/gyptest-use-console.py +29 -0
- data/ext/gyp/test/ninja/use-console/use-console.gyp +60 -0
- data/ext/gyp/test/ninja/use-custom-environment-files/gyptest-use-custom-environment-files.py +28 -0
- data/ext/gyp/test/ninja/use-custom-environment-files/use-custom-environment-files.cc +7 -0
- data/ext/gyp/test/ninja/use-custom-environment-files/use-custom-environment-files.gyp +15 -0
- data/ext/gyp/test/no-cpp/gyptest-no-cpp.py +53 -0
- data/ext/gyp/test/no-cpp/src/call-f-main.c +2 -0
- data/ext/gyp/test/no-cpp/src/empty-main.c +1 -0
- data/ext/gyp/test/no-cpp/src/f.cc +3 -0
- data/ext/gyp/test/no-cpp/src/test.gyp +25 -0
- data/ext/gyp/test/no-output/gyptest-no-output.py +21 -0
- data/ext/gyp/test/no-output/src/nooutput.gyp +17 -0
- data/ext/gyp/test/product/gyptest-product.py +43 -0
- data/ext/gyp/test/product/hello.c +15 -0
- data/ext/gyp/test/product/product.gyp +128 -0
- data/ext/gyp/test/prune_targets/gyptest-prune-targets.py +66 -0
- data/ext/gyp/test/prune_targets/lib1.cc +6 -0
- data/ext/gyp/test/prune_targets/lib2.cc +6 -0
- data/ext/gyp/test/prune_targets/lib3.cc +6 -0
- data/ext/gyp/test/prune_targets/lib_indirect.cc +6 -0
- data/ext/gyp/test/prune_targets/program.cc +7 -0
- data/ext/gyp/test/prune_targets/test1.gyp +26 -0
- data/ext/gyp/test/prune_targets/test2.gyp +30 -0
- data/ext/gyp/test/relative/foo/a/a.cc +9 -0
- data/ext/gyp/test/relative/foo/a/a.gyp +13 -0
- data/ext/gyp/test/relative/foo/a/c/c.cc +9 -0
- data/ext/gyp/test/relative/foo/a/c/c.gyp +12 -0
- data/ext/gyp/test/relative/foo/b/b.cc +9 -0
- data/ext/gyp/test/relative/foo/b/b.gyp +9 -0
- data/ext/gyp/test/relative/gyptest-default.py +25 -0
- data/ext/gyp/test/rename/filecase/file.c +1 -0
- data/ext/gyp/test/rename/filecase/test-casesensitive.gyp +15 -0
- data/ext/gyp/test/rename/filecase/test.gyp +14 -0
- data/ext/gyp/test/rename/gyptest-filecase.py +35 -0
- data/ext/gyp/test/restat/gyptest-restat.py +31 -0
- data/ext/gyp/test/restat/src/create_intermediate.py +17 -0
- data/ext/gyp/test/restat/src/restat.gyp +50 -0
- data/ext/gyp/test/restat/src/touch.py +16 -0
- data/ext/gyp/test/rules/gyptest-all.py +84 -0
- data/ext/gyp/test/rules/gyptest-default.py +70 -0
- data/ext/gyp/test/rules/gyptest-input-root.py +26 -0
- data/ext/gyp/test/rules/gyptest-special-variables.py +18 -0
- data/ext/gyp/test/rules/src/actions.gyp +23 -0
- data/ext/gyp/test/rules/src/an_asm.S +6 -0
- data/ext/gyp/test/rules/src/as.bat +7 -0
- data/ext/gyp/test/rules/src/copy-file.py +11 -0
- data/ext/gyp/test/rules/src/external/external.gyp +66 -0
- data/ext/gyp/test/rules/src/external/file1.in +1 -0
- data/ext/gyp/test/rules/src/external/file2.in +1 -0
- data/ext/gyp/test/rules/src/input-root.gyp +24 -0
- data/ext/gyp/test/rules/src/noaction/file1.in +1 -0
- data/ext/gyp/test/rules/src/noaction/no_action_with_rules_fails.gyp +37 -0
- data/ext/gyp/test/rules/src/rule.py +17 -0
- data/ext/gyp/test/rules/src/somefile.ext +0 -0
- data/ext/gyp/test/rules/src/special-variables.gyp +34 -0
- data/ext/gyp/test/rules/src/subdir1/executable.gyp +37 -0
- data/ext/gyp/test/rules/src/subdir1/function1.in +6 -0
- data/ext/gyp/test/rules/src/subdir1/function2.in +6 -0
- data/ext/gyp/test/rules/src/subdir1/program.c +12 -0
- data/ext/gyp/test/rules/src/subdir2/both_rule_and_action_input.gyp +50 -0
- data/ext/gyp/test/rules/src/subdir2/file1.in +1 -0
- data/ext/gyp/test/rules/src/subdir2/file2.in +1 -0
- data/ext/gyp/test/rules/src/subdir2/never_used.gyp +31 -0
- data/ext/gyp/test/rules/src/subdir2/no_action.gyp +38 -0
- data/ext/gyp/test/rules/src/subdir2/no_inputs.gyp +32 -0
- data/ext/gyp/test/rules/src/subdir2/none.gyp +33 -0
- data/ext/gyp/test/rules/src/subdir2/program.c +12 -0
- data/ext/gyp/test/rules/src/subdir3/executable2.gyp +37 -0
- data/ext/gyp/test/rules/src/subdir3/function3.in +6 -0
- data/ext/gyp/test/rules/src/subdir3/program.c +10 -0
- data/ext/gyp/test/rules/src/subdir4/asm-function.assem +10 -0
- data/ext/gyp/test/rules/src/subdir4/build-asm.gyp +49 -0
- data/ext/gyp/test/rules/src/subdir4/program.c +19 -0
- data/ext/gyp/test/rules-dirname/gyptest-dirname.py +57 -0
- data/ext/gyp/test/rules-dirname/src/actions.gyp +15 -0
- data/ext/gyp/test/rules-dirname/src/copy-file.py +11 -0
- data/ext/gyp/test/rules-dirname/src/subdir/a/b/c.gencc +8 -0
- data/ext/gyp/test/rules-dirname/src/subdir/a/b/c.printvars +1 -0
- data/ext/gyp/test/rules-dirname/src/subdir/foo/bar/baz.gencc +8 -0
- data/ext/gyp/test/rules-dirname/src/subdir/foo/bar/baz.printvars +1 -0
- data/ext/gyp/test/rules-dirname/src/subdir/input-rule-dirname.gyp +140 -0
- data/ext/gyp/test/rules-dirname/src/subdir/main.cc +14 -0
- data/ext/gyp/test/rules-dirname/src/subdir/nodir.gencc +8 -0
- data/ext/gyp/test/rules-dirname/src/subdir/printvars.py +14 -0
- data/ext/gyp/test/rules-rebuild/gyptest-all.py +70 -0
- data/ext/gyp/test/rules-rebuild/gyptest-default.py +91 -0
- data/ext/gyp/test/rules-rebuild/src/main.c +12 -0
- data/ext/gyp/test/rules-rebuild/src/make-sources.py +19 -0
- data/ext/gyp/test/rules-rebuild/src/prog1.in +7 -0
- data/ext/gyp/test/rules-rebuild/src/prog2.in +7 -0
- data/ext/gyp/test/rules-rebuild/src/same_target.gyp +31 -0
- data/ext/gyp/test/rules-use-built-dependencies/gyptest-use-built-dependencies.py +23 -0
- data/ext/gyp/test/rules-use-built-dependencies/src/main.cc +17 -0
- data/ext/gyp/test/rules-use-built-dependencies/src/use-built-dependencies-rule.gyp +42 -0
- data/ext/gyp/test/rules-variables/gyptest-rules-variables.py +35 -0
- data/ext/gyp/test/rules-variables/src/input_ext.c +9 -0
- data/ext/gyp/test/rules-variables/src/input_name/test.c +9 -0
- data/ext/gyp/test/rules-variables/src/input_path/subdir/test.c +9 -0
- data/ext/gyp/test/rules-variables/src/subdir/input_dirname.c +9 -0
- data/ext/gyp/test/rules-variables/src/subdir/test.c +18 -0
- data/ext/gyp/test/rules-variables/src/test.input_root.c +9 -0
- data/ext/gyp/test/rules-variables/src/variables.gyp +40 -0
- data/ext/gyp/test/same-gyp-name/gyptest-all.py +38 -0
- data/ext/gyp/test/same-gyp-name/gyptest-default.py +38 -0
- data/ext/gyp/test/same-gyp-name/gyptest-library.py +20 -0
- data/ext/gyp/test/same-gyp-name/library/one/sub.gyp +11 -0
- data/ext/gyp/test/same-gyp-name/library/test.gyp +15 -0
- data/ext/gyp/test/same-gyp-name/library/two/sub.gyp +11 -0
- data/ext/gyp/test/same-gyp-name/src/all.gyp +16 -0
- data/ext/gyp/test/same-gyp-name/src/subdir1/executable.gyp +15 -0
- data/ext/gyp/test/same-gyp-name/src/subdir1/main1.cc +6 -0
- data/ext/gyp/test/same-gyp-name/src/subdir2/executable.gyp +15 -0
- data/ext/gyp/test/same-gyp-name/src/subdir2/main2.cc +6 -0
- data/ext/gyp/test/same-rule-output-file-name/gyptest-all.py +23 -0
- data/ext/gyp/test/same-rule-output-file-name/src/subdir1/subdir1.gyp +30 -0
- data/ext/gyp/test/same-rule-output-file-name/src/subdir2/subdir2.gyp +30 -0
- data/ext/gyp/test/same-rule-output-file-name/src/subdirs.gyp +16 -0
- data/ext/gyp/test/same-rule-output-file-name/src/touch.py +11 -0
- data/ext/gyp/test/same-source-file-name/gyptest-all.py +34 -0
- data/ext/gyp/test/same-source-file-name/gyptest-default.py +34 -0
- data/ext/gyp/test/same-source-file-name/gyptest-pass-executable.py +33 -0
- data/ext/gyp/test/same-source-file-name/gyptest-pass-shared.py +18 -0
- data/ext/gyp/test/same-source-file-name/gyptest-static.py +34 -0
- data/ext/gyp/test/same-source-file-name/src/all.gyp +30 -0
- data/ext/gyp/test/same-source-file-name/src/double-executable.gyp +21 -0
- data/ext/gyp/test/same-source-file-name/src/double-shared.gyp +27 -0
- data/ext/gyp/test/same-source-file-name/src/double-static.gyp +22 -0
- data/ext/gyp/test/same-source-file-name/src/func.c +6 -0
- data/ext/gyp/test/same-source-file-name/src/prog1.c +16 -0
- data/ext/gyp/test/same-source-file-name/src/prog2.c +16 -0
- data/ext/gyp/test/same-source-file-name/src/prog3.c +18 -0
- data/ext/gyp/test/same-source-file-name/src/subdir1/func.c +6 -0
- data/ext/gyp/test/same-source-file-name/src/subdir2/func.c +6 -0
- data/ext/gyp/test/same-target-name/gyptest-same-target-name.py +18 -0
- data/ext/gyp/test/same-target-name/src/all.gyp +16 -0
- data/ext/gyp/test/same-target-name/src/executable1.gyp +15 -0
- data/ext/gyp/test/same-target-name/src/executable2.gyp +15 -0
- data/ext/gyp/test/same-target-name-different-directory/gyptest-all.py +41 -0
- data/ext/gyp/test/same-target-name-different-directory/src/subdir1/subdir1.gyp +66 -0
- data/ext/gyp/test/same-target-name-different-directory/src/subdir2/subdir2.gyp +66 -0
- data/ext/gyp/test/same-target-name-different-directory/src/subdirs.gyp +16 -0
- data/ext/gyp/test/same-target-name-different-directory/src/touch.py +11 -0
- data/ext/gyp/test/sanitize-rule-names/blah.S +0 -0
- data/ext/gyp/test/sanitize-rule-names/gyptest-sanitize-rule-names.py +17 -0
- data/ext/gyp/test/sanitize-rule-names/hello.cc +7 -0
- data/ext/gyp/test/sanitize-rule-names/sanitize-rule-names.gyp +27 -0
- data/ext/gyp/test/sanitize-rule-names/script.py +10 -0
- data/ext/gyp/test/self-dependency/common.gypi +13 -0
- data/ext/gyp/test/self-dependency/dep.gyp +23 -0
- data/ext/gyp/test/self-dependency/gyptest-self-dependency.py +19 -0
- data/ext/gyp/test/self-dependency/self_dependency.gyp +15 -0
- data/ext/gyp/test/sibling/gyptest-all.py +42 -0
- data/ext/gyp/test/sibling/gyptest-relocate.py +44 -0
- data/ext/gyp/test/sibling/src/build/all.gyp +16 -0
- data/ext/gyp/test/sibling/src/prog1/prog1.c +7 -0
- data/ext/gyp/test/sibling/src/prog1/prog1.gyp +15 -0
- data/ext/gyp/test/sibling/src/prog2/prog2.c +7 -0
- data/ext/gyp/test/sibling/src/prog2/prog2.gyp +15 -0
- data/ext/gyp/test/small/gyptest-small.py +56 -0
- data/ext/gyp/test/standalone/gyptest-standalone.py +35 -0
- data/ext/gyp/test/standalone/standalone.gyp +12 -0
- data/ext/gyp/test/standalone-static-library/gyptest-standalone-static-library.py +50 -0
- data/ext/gyp/test/standalone-static-library/invalid.gyp +16 -0
- data/ext/gyp/test/standalone-static-library/mylib.c +7 -0
- data/ext/gyp/test/standalone-static-library/mylib.gyp +26 -0
- data/ext/gyp/test/standalone-static-library/prog.c +7 -0
- data/ext/gyp/test/subdirectory/gyptest-SYMROOT-all.py +36 -0
- data/ext/gyp/test/subdirectory/gyptest-SYMROOT-default.py +37 -0
- data/ext/gyp/test/subdirectory/gyptest-subdir-all.py +34 -0
- data/ext/gyp/test/subdirectory/gyptest-subdir-default.py +34 -0
- data/ext/gyp/test/subdirectory/gyptest-subdir2-deep.py +25 -0
- data/ext/gyp/test/subdirectory/gyptest-top-all.py +43 -0
- data/ext/gyp/test/subdirectory/gyptest-top-default.py +43 -0
- data/ext/gyp/test/subdirectory/src/prog1.c +7 -0
- data/ext/gyp/test/subdirectory/src/prog1.gyp +21 -0
- data/ext/gyp/test/subdirectory/src/subdir/prog2.c +7 -0
- data/ext/gyp/test/subdirectory/src/subdir/prog2.gyp +18 -0
- data/ext/gyp/test/subdirectory/src/subdir/subdir2/prog3.c +7 -0
- data/ext/gyp/test/subdirectory/src/subdir/subdir2/prog3.gyp +18 -0
- data/ext/gyp/test/subdirectory/src/symroot.gypi +16 -0
- data/ext/gyp/test/symlinks/gyptest-symlinks.py +66 -0
- data/ext/gyp/test/symlinks/hello.c +12 -0
- data/ext/gyp/test/symlinks/hello.gyp +15 -0
- data/ext/gyp/test/target/gyptest-target.py +37 -0
- data/ext/gyp/test/target/hello.c +7 -0
- data/ext/gyp/test/target/target.gyp +24 -0
- data/ext/gyp/test/toolsets/gyptest-toolsets.py +31 -0
- data/ext/gyp/test/toolsets/main.cc +13 -0
- data/ext/gyp/test/toolsets/toolsets.cc +11 -0
- data/ext/gyp/test/toolsets/toolsets.gyp +62 -0
- data/ext/gyp/test/toolsets/toolsets_shared.cc +11 -0
- data/ext/gyp/test/toplevel-dir/gyptest-toplevel-dir.py +31 -0
- data/ext/gyp/test/toplevel-dir/src/sub1/main.gyp +18 -0
- data/ext/gyp/test/toplevel-dir/src/sub1/prog1.c +7 -0
- data/ext/gyp/test/toplevel-dir/src/sub2/prog2.c +7 -0
- data/ext/gyp/test/toplevel-dir/src/sub2/prog2.gyp +15 -0
- data/ext/gyp/test/variables/commands/commands-repeated.gyp +128 -0
- data/ext/gyp/test/variables/commands/commands-repeated.gyp.stdout +136 -0
- data/ext/gyp/test/variables/commands/commands-repeated.gypd.golden +77 -0
- data/ext/gyp/test/variables/commands/commands.gyp +91 -0
- data/ext/gyp/test/variables/commands/commands.gyp.ignore-env.stdout +96 -0
- data/ext/gyp/test/variables/commands/commands.gyp.stdout +96 -0
- data/ext/gyp/test/variables/commands/commands.gypd.golden +66 -0
- data/ext/gyp/test/variables/commands/commands.gypi +23 -0
- data/ext/gyp/test/variables/commands/gyptest-commands-ignore-env.py +47 -0
- data/ext/gyp/test/variables/commands/gyptest-commands-repeated-multidir.py +23 -0
- data/ext/gyp/test/variables/commands/gyptest-commands-repeated.py +40 -0
- data/ext/gyp/test/variables/commands/gyptest-commands.py +40 -0
- data/ext/gyp/test/variables/commands/repeated_multidir/dir_1/test_1.gyp +13 -0
- data/ext/gyp/test/variables/commands/repeated_multidir/dir_2/test_2.gyp +13 -0
- data/ext/gyp/test/variables/commands/repeated_multidir/main.gyp +16 -0
- data/ext/gyp/test/variables/commands/repeated_multidir/print_cwd_basename.py +11 -0
- data/ext/gyp/test/variables/commands/repeated_multidir/repeated_command_common.gypi +25 -0
- data/ext/gyp/test/variables/commands/test.py +7 -0
- data/ext/gyp/test/variables/commands/update_golden +11 -0
- data/ext/gyp/test/variables/empty/empty.gyp +13 -0
- data/ext/gyp/test/variables/empty/empty.gypi +9 -0
- data/ext/gyp/test/variables/empty/gyptest-empty.py +19 -0
- data/ext/gyp/test/variables/filelist/filelist.gyp.stdout +26 -0
- data/ext/gyp/test/variables/filelist/filelist.gypd.golden +43 -0
- data/ext/gyp/test/variables/filelist/gyptest-filelist-golden.py +53 -0
- data/ext/gyp/test/variables/filelist/gyptest-filelist.py +29 -0
- data/ext/gyp/test/variables/filelist/src/dummy.py +5 -0
- data/ext/gyp/test/variables/filelist/src/filelist.gyp +93 -0
- data/ext/gyp/test/variables/filelist/src/filelist2.gyp +40 -0
- data/ext/gyp/test/variables/filelist/update_golden +8 -0
- data/ext/gyp/test/variables/latelate/gyptest-latelate.py +25 -0
- data/ext/gyp/test/variables/latelate/src/latelate.gyp +34 -0
- data/ext/gyp/test/variables/latelate/src/program.cc +13 -0
- data/ext/gyp/test/variables/variable-in-path/C1/hello.cc +7 -0
- data/ext/gyp/test/variables/variable-in-path/gyptest-variable-in-path.py +23 -0
- data/ext/gyp/test/variables/variable-in-path/variable-in-path.gyp +31 -0
- data/ext/gyp/test/win/asm-files/asm-files.gyp +17 -0
- data/ext/gyp/test/win/asm-files/b.s +0 -0
- data/ext/gyp/test/win/asm-files/c.S +0 -0
- data/ext/gyp/test/win/asm-files/hello.cc +7 -0
- data/ext/gyp/test/win/batch-file-action/batch-file-action.gyp +21 -0
- data/ext/gyp/test/win/batch-file-action/infile +1 -0
- data/ext/gyp/test/win/batch-file-action/somecmd.bat +5 -0
- data/ext/gyp/test/win/command-quote/a.S +0 -0
- data/ext/gyp/test/win/command-quote/bat with spaces.bat +7 -0
- data/ext/gyp/test/win/command-quote/command-quote.gyp +79 -0
- data/ext/gyp/test/win/command-quote/go.bat +7 -0
- data/ext/gyp/test/win/command-quote/subdir/and/another/in-subdir.gyp +27 -0
- data/ext/gyp/test/win/compiler-flags/additional-include-dirs.cc +10 -0
- data/ext/gyp/test/win/compiler-flags/additional-include-dirs.gyp +20 -0
- data/ext/gyp/test/win/compiler-flags/additional-options.cc +10 -0
- data/ext/gyp/test/win/compiler-flags/additional-options.gyp +31 -0
- data/ext/gyp/test/win/compiler-flags/analysis.gyp +40 -0
- data/ext/gyp/test/win/compiler-flags/buffer-security-check.gyp +51 -0
- data/ext/gyp/test/win/compiler-flags/buffer-security.cc +12 -0
- data/ext/gyp/test/win/compiler-flags/calling-convention-cdecl.def +6 -0
- data/ext/gyp/test/win/compiler-flags/calling-convention-fastcall.def +6 -0
- data/ext/gyp/test/win/compiler-flags/calling-convention-stdcall.def +6 -0
- data/ext/gyp/test/win/compiler-flags/calling-convention-vectorcall.def +6 -0
- data/ext/gyp/test/win/compiler-flags/calling-convention.cc +6 -0
- data/ext/gyp/test/win/compiler-flags/calling-convention.gyp +66 -0
- data/ext/gyp/test/win/compiler-flags/character-set-mbcs.cc +11 -0
- data/ext/gyp/test/win/compiler-flags/character-set-unicode.cc +15 -0
- data/ext/gyp/test/win/compiler-flags/character-set.gyp +35 -0
- data/ext/gyp/test/win/compiler-flags/compile-as-managed.cc +9 -0
- data/ext/gyp/test/win/compiler-flags/compile-as-managed.gyp +29 -0
- data/ext/gyp/test/win/compiler-flags/compile-as-winrt.cc +12 -0
- data/ext/gyp/test/win/compiler-flags/compile-as-winrt.gyp +20 -0
- data/ext/gyp/test/win/compiler-flags/debug-format.gyp +48 -0
- data/ext/gyp/test/win/compiler-flags/default-char-is-unsigned.cc +15 -0
- data/ext/gyp/test/win/compiler-flags/default-char-is-unsigned.gyp +20 -0
- data/ext/gyp/test/win/compiler-flags/disable-specific-warnings.cc +9 -0
- data/ext/gyp/test/win/compiler-flags/disable-specific-warnings.gyp +29 -0
- data/ext/gyp/test/win/compiler-flags/enable-enhanced-instruction-set.cc +28 -0
- data/ext/gyp/test/win/compiler-flags/enable-enhanced-instruction-set.gyp +68 -0
- data/ext/gyp/test/win/compiler-flags/exception-handling-on.cc +24 -0
- data/ext/gyp/test/win/compiler-flags/exception-handling.gyp +46 -0
- data/ext/gyp/test/win/compiler-flags/floating-point-model-fast.cc +19 -0
- data/ext/gyp/test/win/compiler-flags/floating-point-model-precise.cc +19 -0
- data/ext/gyp/test/win/compiler-flags/floating-point-model-strict.cc +19 -0
- data/ext/gyp/test/win/compiler-flags/floating-point-model.gyp +43 -0
- data/ext/gyp/test/win/compiler-flags/force-include-files-with-precompiled.cc +10 -0
- data/ext/gyp/test/win/compiler-flags/force-include-files.cc +8 -0
- data/ext/gyp/test/win/compiler-flags/force-include-files.gyp +36 -0
- data/ext/gyp/test/win/compiler-flags/function-level-linking.cc +11 -0
- data/ext/gyp/test/win/compiler-flags/function-level-linking.gyp +28 -0
- data/ext/gyp/test/win/compiler-flags/hello.cc +7 -0
- data/ext/gyp/test/win/compiler-flags/optimizations.gyp +207 -0
- data/ext/gyp/test/win/compiler-flags/pdbname-override.gyp +26 -0
- data/ext/gyp/test/win/compiler-flags/pdbname.cc +7 -0
- data/ext/gyp/test/win/compiler-flags/pdbname.gyp +24 -0
- data/ext/gyp/test/win/compiler-flags/precomp.cc +6 -0
- data/ext/gyp/test/win/compiler-flags/rtti-on.cc +11 -0
- data/ext/gyp/test/win/compiler-flags/rtti.gyp +37 -0
- data/ext/gyp/test/win/compiler-flags/runtime-checks.cc +11 -0
- data/ext/gyp/test/win/compiler-flags/runtime-checks.gyp +29 -0
- data/ext/gyp/test/win/compiler-flags/runtime-library-md.cc +19 -0
- data/ext/gyp/test/win/compiler-flags/runtime-library-mdd.cc +19 -0
- data/ext/gyp/test/win/compiler-flags/runtime-library-mt.cc +19 -0
- data/ext/gyp/test/win/compiler-flags/runtime-library-mtd.cc +19 -0
- data/ext/gyp/test/win/compiler-flags/runtime-library.gyp +48 -0
- data/ext/gyp/test/win/compiler-flags/subdir/header.h +0 -0
- data/ext/gyp/test/win/compiler-flags/treat-wchar-t-as-built-in-type.gyp +33 -0
- data/ext/gyp/test/win/compiler-flags/treat-wchar-t-as-built-in-type1.cc +11 -0
- data/ext/gyp/test/win/compiler-flags/treat-wchar-t-as-built-in-type2.cc +11 -0
- data/ext/gyp/test/win/compiler-flags/uninit.cc +13 -0
- data/ext/gyp/test/win/compiler-flags/warning-as-error.cc +9 -0
- data/ext/gyp/test/win/compiler-flags/warning-as-error.gyp +37 -0
- data/ext/gyp/test/win/compiler-flags/warning-level.gyp +115 -0
- data/ext/gyp/test/win/compiler-flags/warning-level1.cc +8 -0
- data/ext/gyp/test/win/compiler-flags/warning-level2.cc +14 -0
- data/ext/gyp/test/win/compiler-flags/warning-level3.cc +11 -0
- data/ext/gyp/test/win/compiler-flags/warning-level4.cc +10 -0
- data/ext/gyp/test/win/enable-winrt/dllmain.cc +30 -0
- data/ext/gyp/test/win/enable-winrt/enable-winrt.gyp +39 -0
- data/ext/gyp/test/win/generator-output-different-drive/gyptest-generator-output-different-drive.py +44 -0
- data/ext/gyp/test/win/generator-output-different-drive/prog.c +10 -0
- data/ext/gyp/test/win/generator-output-different-drive/prog.gyp +15 -0
- data/ext/gyp/test/win/gyptest-asm-files.py +26 -0
- data/ext/gyp/test/win/gyptest-cl-additional-include-dirs.py +22 -0
- data/ext/gyp/test/win/gyptest-cl-additional-options.py +28 -0
- data/ext/gyp/test/win/gyptest-cl-analysis.py +30 -0
- data/ext/gyp/test/win/gyptest-cl-buffer-security-check.py +53 -0
- data/ext/gyp/test/win/gyptest-cl-calling-convention.py +22 -0
- data/ext/gyp/test/win/gyptest-cl-character-set.py +22 -0
- data/ext/gyp/test/win/gyptest-cl-compile-as-managed.py +24 -0
- data/ext/gyp/test/win/gyptest-cl-compile-as-winrt.py +20 -0
- data/ext/gyp/test/win/gyptest-cl-debug-format.py +43 -0
- data/ext/gyp/test/win/gyptest-cl-default-char-is-unsigned.py +22 -0
- data/ext/gyp/test/win/gyptest-cl-disable-specific-warnings.py +32 -0
- data/ext/gyp/test/win/gyptest-cl-enable-enhanced-instruction-set.py +49 -0
- data/ext/gyp/test/win/gyptest-cl-exception-handling.py +33 -0
- data/ext/gyp/test/win/gyptest-cl-floating-point-model.py +22 -0
- data/ext/gyp/test/win/gyptest-cl-force-include-files.py +22 -0
- data/ext/gyp/test/win/gyptest-cl-function-level-linking.py +54 -0
- data/ext/gyp/test/win/gyptest-cl-optimizations.py +105 -0
- data/ext/gyp/test/win/gyptest-cl-pdbname-override.py +27 -0
- data/ext/gyp/test/win/gyptest-cl-pdbname.py +30 -0
- data/ext/gyp/test/win/gyptest-cl-rtti.py +30 -0
- data/ext/gyp/test/win/gyptest-cl-runtime-checks.py +30 -0
- data/ext/gyp/test/win/gyptest-cl-runtime-library.py +22 -0
- data/ext/gyp/test/win/gyptest-cl-treat-wchar-t-as-built-in-type.py +22 -0
- data/ext/gyp/test/win/gyptest-cl-warning-as-error.py +30 -0
- data/ext/gyp/test/win/gyptest-cl-warning-level.py +41 -0
- data/ext/gyp/test/win/gyptest-command-quote.py +42 -0
- data/ext/gyp/test/win/gyptest-crosscompile-ar.py +29 -0
- data/ext/gyp/test/win/gyptest-lib-ltcg.py +22 -0
- data/ext/gyp/test/win/gyptest-link-additional-deps.py +22 -0
- data/ext/gyp/test/win/gyptest-link-additional-options.py +22 -0
- data/ext/gyp/test/win/gyptest-link-aslr.py +35 -0
- data/ext/gyp/test/win/gyptest-link-base-address.py +62 -0
- data/ext/gyp/test/win/gyptest-link-debug-info.py +26 -0
- data/ext/gyp/test/win/gyptest-link-default-libs.py +22 -0
- data/ext/gyp/test/win/gyptest-link-deffile.py +43 -0
- data/ext/gyp/test/win/gyptest-link-defrelink.py +56 -0
- data/ext/gyp/test/win/gyptest-link-delay-load-dlls.py +35 -0
- data/ext/gyp/test/win/gyptest-link-embed-manifest.py +100 -0
- data/ext/gyp/test/win/gyptest-link-enable-uac.py +104 -0
- data/ext/gyp/test/win/gyptest-link-enable-winrt-app-revision.py +43 -0
- data/ext/gyp/test/win/gyptest-link-enable-winrt-target-platform-version.py +47 -0
- data/ext/gyp/test/win/gyptest-link-enable-winrt.py +37 -0
- data/ext/gyp/test/win/gyptest-link-entrypointsymbol.py +24 -0
- data/ext/gyp/test/win/gyptest-link-fixed-base.py +40 -0
- data/ext/gyp/test/win/gyptest-link-force-symbol-reference.py +26 -0
- data/ext/gyp/test/win/gyptest-link-generate-manifest.py +127 -0
- data/ext/gyp/test/win/gyptest-link-incremental.py +37 -0
- data/ext/gyp/test/win/gyptest-link-large-address-aware.py +35 -0
- data/ext/gyp/test/win/gyptest-link-large-pdb.py +76 -0
- data/ext/gyp/test/win/gyptest-link-library-adjust.py +21 -0
- data/ext/gyp/test/win/gyptest-link-library-directories.py +35 -0
- data/ext/gyp/test/win/gyptest-link-ltcg.py +44 -0
- data/ext/gyp/test/win/gyptest-link-mapfile.py +44 -0
- data/ext/gyp/test/win/gyptest-link-nodefaultlib.py +24 -0
- data/ext/gyp/test/win/gyptest-link-noimportlib.py +30 -0
- data/ext/gyp/test/win/gyptest-link-nxcompat.py +37 -0
- data/ext/gyp/test/win/gyptest-link-opt-icf.py +41 -0
- data/ext/gyp/test/win/gyptest-link-opt-ref.py +40 -0
- data/ext/gyp/test/win/gyptest-link-ordering.py +103 -0
- data/ext/gyp/test/win/gyptest-link-outputfile.py +28 -0
- data/ext/gyp/test/win/gyptest-link-pdb-no-output.py +25 -0
- data/ext/gyp/test/win/gyptest-link-pdb-output.py +33 -0
- data/ext/gyp/test/win/gyptest-link-pdb.py +35 -0
- data/ext/gyp/test/win/gyptest-link-pgo.py +75 -0
- data/ext/gyp/test/win/gyptest-link-profile.py +37 -0
- data/ext/gyp/test/win/gyptest-link-restat-importlib.py +47 -0
- data/ext/gyp/test/win/gyptest-link-safeseh.py +46 -0
- data/ext/gyp/test/win/gyptest-link-shard.py +30 -0
- data/ext/gyp/test/win/gyptest-link-stacksize.py +62 -0
- data/ext/gyp/test/win/gyptest-link-subsystem.py +38 -0
- data/ext/gyp/test/win/gyptest-link-target-machine.py +28 -0
- data/ext/gyp/test/win/gyptest-link-tsaware.py +33 -0
- data/ext/gyp/test/win/gyptest-link-uldi-depending-on-module.py +24 -0
- data/ext/gyp/test/win/gyptest-link-uldi.py +28 -0
- data/ext/gyp/test/win/gyptest-link-unsupported-manifest.py +27 -0
- data/ext/gyp/test/win/gyptest-link-update-manifest.py +104 -0
- data/ext/gyp/test/win/gyptest-link-warnings-as-errors.py +24 -0
- data/ext/gyp/test/win/gyptest-long-command-line.py +23 -0
- data/ext/gyp/test/win/gyptest-macro-projectname.py +24 -0
- data/ext/gyp/test/win/gyptest-macro-targetext.py +26 -0
- data/ext/gyp/test/win/gyptest-macro-targetfilename.py +37 -0
- data/ext/gyp/test/win/gyptest-macro-targetname.py +29 -0
- data/ext/gyp/test/win/gyptest-macro-targetpath.py +30 -0
- data/ext/gyp/test/win/gyptest-macro-vcinstalldir.py +24 -0
- data/ext/gyp/test/win/gyptest-macros-containing-gyp.py +21 -0
- data/ext/gyp/test/win/gyptest-macros-in-inputs-and-outputs.py +27 -0
- data/ext/gyp/test/win/gyptest-midl-excluded.py +22 -0
- data/ext/gyp/test/win/gyptest-midl-includedirs.py +21 -0
- data/ext/gyp/test/win/gyptest-midl-rules.py +28 -0
- data/ext/gyp/test/win/gyptest-ml-safeseh.py +22 -0
- data/ext/gyp/test/win/gyptest-quoting-commands.py +25 -0
- data/ext/gyp/test/win/gyptest-rc-build.py +29 -0
- data/ext/gyp/test/win/gyptest-sys.py +27 -0
- data/ext/gyp/test/win/gyptest-system-include.py +21 -0
- data/ext/gyp/test/win/idl-excluded/bad.idl +6 -0
- data/ext/gyp/test/win/idl-excluded/copy-file.py +11 -0
- data/ext/gyp/test/win/idl-excluded/idl-excluded.gyp +58 -0
- data/ext/gyp/test/win/idl-excluded/program.cc +7 -0
- data/ext/gyp/test/win/idl-includedirs/hello.cc +7 -0
- data/ext/gyp/test/win/idl-includedirs/idl-includedirs.gyp +26 -0
- data/ext/gyp/test/win/idl-includedirs/subdir/bar.idl +13 -0
- data/ext/gyp/test/win/idl-includedirs/subdir/foo.idl +14 -0
- data/ext/gyp/test/win/idl-rules/Window.idl +9 -0
- data/ext/gyp/test/win/idl-rules/basic-idl.gyp +67 -0
- data/ext/gyp/test/win/idl-rules/history_indexer.idl +17 -0
- data/ext/gyp/test/win/idl-rules/history_indexer_user.cc +15 -0
- data/ext/gyp/test/win/idl-rules/idl_compiler.py +17 -0
- data/ext/gyp/test/win/importlib/dll_no_exports.cc +9 -0
- data/ext/gyp/test/win/importlib/has-exports.cc +10 -0
- data/ext/gyp/test/win/importlib/hello.cc +9 -0
- data/ext/gyp/test/win/importlib/importlib.gyp +30 -0
- data/ext/gyp/test/win/importlib/noimplib.gyp +16 -0
- data/ext/gyp/test/win/large-pdb/dllmain.cc +9 -0
- data/ext/gyp/test/win/large-pdb/large-pdb.gyp +98 -0
- data/ext/gyp/test/win/large-pdb/main.cc +7 -0
- data/ext/gyp/test/win/lib-crosscompile/answer.cc +9 -0
- data/ext/gyp/test/win/lib-crosscompile/answer.h +5 -0
- data/ext/gyp/test/win/lib-crosscompile/use_host_ar.gyp +17 -0
- data/ext/gyp/test/win/lib-flags/answer.cc +9 -0
- data/ext/gyp/test/win/lib-flags/answer.h +5 -0
- data/ext/gyp/test/win/lib-flags/ltcg.gyp +21 -0
- data/ext/gyp/test/win/linker-flags/a/x.cc +7 -0
- data/ext/gyp/test/win/linker-flags/a/z.cc +7 -0
- data/ext/gyp/test/win/linker-flags/additional-deps.cc +10 -0
- data/ext/gyp/test/win/linker-flags/additional-deps.gyp +30 -0
- data/ext/gyp/test/win/linker-flags/additional-options.gyp +29 -0
- data/ext/gyp/test/win/linker-flags/aslr.gyp +35 -0
- data/ext/gyp/test/win/linker-flags/b/y.cc +7 -0
- data/ext/gyp/test/win/linker-flags/base-address.gyp +38 -0
- data/ext/gyp/test/win/linker-flags/debug-info.gyp +28 -0
- data/ext/gyp/test/win/linker-flags/deffile-multiple.gyp +17 -0
- data/ext/gyp/test/win/linker-flags/deffile.cc +13 -0
- data/ext/gyp/test/win/linker-flags/deffile.def +8 -0
- data/ext/gyp/test/win/linker-flags/deffile.gyp +38 -0
- data/ext/gyp/test/win/linker-flags/delay-load-dlls.gyp +35 -0
- data/ext/gyp/test/win/linker-flags/delay-load.cc +10 -0
- data/ext/gyp/test/win/linker-flags/embed-manifest.gyp +109 -0
- data/ext/gyp/test/win/linker-flags/enable-uac.gyp +45 -0
- data/ext/gyp/test/win/linker-flags/entrypointsymbol.cc +13 -0
- data/ext/gyp/test/win/linker-flags/entrypointsymbol.gyp +28 -0
- data/ext/gyp/test/win/linker-flags/extra.manifest +11 -0
- data/ext/gyp/test/win/linker-flags/extra2.manifest +11 -0
- data/ext/gyp/test/win/linker-flags/fixed-base.gyp +52 -0
- data/ext/gyp/test/win/linker-flags/force-symbol-reference.gyp +39 -0
- data/ext/gyp/test/win/linker-flags/generate-manifest.gyp +166 -0
- data/ext/gyp/test/win/linker-flags/hello.cc +7 -0
- data/ext/gyp/test/win/linker-flags/incremental.gyp +65 -0
- data/ext/gyp/test/win/linker-flags/inline_test.cc +12 -0
- data/ext/gyp/test/win/linker-flags/inline_test.h +5 -0
- data/ext/gyp/test/win/linker-flags/inline_test_main.cc +15 -0
- data/ext/gyp/test/win/linker-flags/large-address-aware.gyp +28 -0
- data/ext/gyp/test/win/linker-flags/library-adjust.cc +10 -0
- data/ext/gyp/test/win/linker-flags/library-adjust.gyp +16 -0
- data/ext/gyp/test/win/linker-flags/library-directories-define.cc +7 -0
- data/ext/gyp/test/win/linker-flags/library-directories-reference.cc +10 -0
- data/ext/gyp/test/win/linker-flags/library-directories.gyp +42 -0
- data/ext/gyp/test/win/linker-flags/link-ordering.gyp +95 -0
- data/ext/gyp/test/win/linker-flags/link-warning.cc +10 -0
- data/ext/gyp/test/win/linker-flags/ltcg.gyp +42 -0
- data/ext/gyp/test/win/linker-flags/main-crt.c +8 -0
- data/ext/gyp/test/win/linker-flags/manifest-in-comment.cc +13 -0
- data/ext/gyp/test/win/linker-flags/mapfile.cc +12 -0
- data/ext/gyp/test/win/linker-flags/mapfile.gyp +45 -0
- data/ext/gyp/test/win/linker-flags/no-default-libs.cc +18 -0
- data/ext/gyp/test/win/linker-flags/no-default-libs.gyp +13 -0
- data/ext/gyp/test/win/linker-flags/nodefaultlib.cc +13 -0
- data/ext/gyp/test/win/linker-flags/nodefaultlib.gyp +30 -0
- data/ext/gyp/test/win/linker-flags/nxcompat.gyp +35 -0
- data/ext/gyp/test/win/linker-flags/opt-icf.cc +29 -0
- data/ext/gyp/test/win/linker-flags/opt-icf.gyp +63 -0
- data/ext/gyp/test/win/linker-flags/opt-ref.cc +11 -0
- data/ext/gyp/test/win/linker-flags/opt-ref.gyp +56 -0
- data/ext/gyp/test/win/linker-flags/outputfile.gyp +58 -0
- data/ext/gyp/test/win/linker-flags/pdb-output.gyp +49 -0
- data/ext/gyp/test/win/linker-flags/pgo.gyp +143 -0
- data/ext/gyp/test/win/linker-flags/profile.gyp +50 -0
- data/ext/gyp/test/win/linker-flags/program-database.gyp +40 -0
- data/ext/gyp/test/win/linker-flags/safeseh.gyp +79 -0
- data/ext/gyp/test/win/linker-flags/safeseh_hello.cc +11 -0
- data/ext/gyp/test/win/linker-flags/safeseh_zero.asm +10 -0
- data/ext/gyp/test/win/linker-flags/safeseh_zero64.asm +9 -0
- data/ext/gyp/test/win/linker-flags/stacksize.gyp +44 -0
- data/ext/gyp/test/win/linker-flags/subdir/library.gyp +13 -0
- data/ext/gyp/test/win/linker-flags/subsystem-windows.cc +9 -0
- data/ext/gyp/test/win/linker-flags/subsystem.gyp +70 -0
- data/ext/gyp/test/win/linker-flags/target-machine.gyp +48 -0
- data/ext/gyp/test/win/linker-flags/tsaware.gyp +28 -0
- data/ext/gyp/test/win/linker-flags/unsupported-manifest.gyp +13 -0
- data/ext/gyp/test/win/linker-flags/update_pgd.py +35 -0
- data/ext/gyp/test/win/linker-flags/warn-as-error.gyp +33 -0
- data/ext/gyp/test/win/linker-flags/x.cc +7 -0
- data/ext/gyp/test/win/linker-flags/y.cc +7 -0
- data/ext/gyp/test/win/linker-flags/z.cc +7 -0
- data/ext/gyp/test/win/long-command-line/function.cc +7 -0
- data/ext/gyp/test/win/long-command-line/hello.cc +7 -0
- data/ext/gyp/test/win/long-command-line/long-command-line.gyp +54 -0
- data/ext/gyp/test/win/ml-safeseh/a.asm +10 -0
- data/ext/gyp/test/win/ml-safeseh/hello.cc +11 -0
- data/ext/gyp/test/win/ml-safeseh/ml-safeseh.gyp +24 -0
- data/ext/gyp/test/win/precompiled/gyptest-all.py +21 -0
- data/ext/gyp/test/win/precompiled/hello.c +14 -0
- data/ext/gyp/test/win/precompiled/hello.gyp +28 -0
- data/ext/gyp/test/win/precompiled/hello2.c +13 -0
- data/ext/gyp/test/win/precompiled/precomp.c +8 -0
- data/ext/gyp/test/win/rc-build/Resource.h +26 -0
- data/ext/gyp/test/win/rc-build/hello.cpp +30 -0
- data/ext/gyp/test/win/rc-build/hello.gyp +92 -0
- data/ext/gyp/test/win/rc-build/hello.h +3 -0
- data/ext/gyp/test/win/rc-build/hello.ico +0 -0
- data/ext/gyp/test/win/rc-build/hello.rc +86 -0
- data/ext/gyp/test/win/rc-build/hello3.rc +87 -0
- data/ext/gyp/test/win/rc-build/small.ico +0 -0
- data/ext/gyp/test/win/rc-build/subdir/hello2.rc +87 -0
- data/ext/gyp/test/win/rc-build/subdir/include.h +1 -0
- data/ext/gyp/test/win/rc-build/targetver.h +24 -0
- data/ext/gyp/test/win/shard/hello.cc +7 -0
- data/ext/gyp/test/win/shard/hello1.cc +7 -0
- data/ext/gyp/test/win/shard/hello2.cc +7 -0
- data/ext/gyp/test/win/shard/hello3.cc +7 -0
- data/ext/gyp/test/win/shard/hello4.cc +7 -0
- data/ext/gyp/test/win/shard/shard.gyp +31 -0
- data/ext/gyp/test/win/shard/shard_ref.gyp +41 -0
- data/ext/gyp/test/win/system-include/bar/header.h +0 -0
- data/ext/gyp/test/win/system-include/common/commonheader.h +0 -0
- data/ext/gyp/test/win/system-include/foo/header.h +0 -0
- data/ext/gyp/test/win/system-include/main.cc +4 -0
- data/ext/gyp/test/win/system-include/test.gyp +26 -0
- data/ext/gyp/test/win/uldi/a.cc +7 -0
- data/ext/gyp/test/win/uldi/b.cc +7 -0
- data/ext/gyp/test/win/uldi/dll.cc +6 -0
- data/ext/gyp/test/win/uldi/exe.cc +7 -0
- data/ext/gyp/test/win/uldi/main.cc +10 -0
- data/ext/gyp/test/win/uldi/uldi-depending-on-module.gyp +42 -0
- data/ext/gyp/test/win/uldi/uldi.gyp +45 -0
- data/ext/gyp/test/win/vs-macros/as.py +20 -0
- data/ext/gyp/test/win/vs-macros/containing-gyp.gyp +39 -0
- data/ext/gyp/test/win/vs-macros/do_stuff.py +8 -0
- data/ext/gyp/test/win/vs-macros/hello.cc +7 -0
- data/ext/gyp/test/win/vs-macros/input-output-macros.gyp +32 -0
- data/ext/gyp/test/win/vs-macros/input.S +0 -0
- data/ext/gyp/test/win/vs-macros/projectname.gyp +29 -0
- data/ext/gyp/test/win/vs-macros/stuff.blah +1 -0
- data/ext/gyp/test/win/vs-macros/targetext.gyp +59 -0
- data/ext/gyp/test/win/vs-macros/targetfilename.gyp +59 -0
- data/ext/gyp/test/win/vs-macros/targetname.gyp +52 -0
- data/ext/gyp/test/win/vs-macros/targetpath.gyp +59 -0
- data/ext/gyp/test/win/vs-macros/test_exists.py +10 -0
- data/ext/gyp/test/win/vs-macros/vcinstalldir.gyp +41 -0
- data/ext/gyp/test/win/win-driver-target-type/win-driver-target-type.c +10 -0
- data/ext/gyp/test/win/win-driver-target-type/win-driver-target-type.gyp +32 -0
- data/ext/gyp/test/win/win-driver-target-type/win-driver-target-type.h +13 -0
- data/ext/gyp/test/win/win-driver-target-type/win-driver-target-type.rc +14 -0
- data/ext/gyp/test/win/win-tool/copies_readonly_files.gyp +29 -0
- data/ext/gyp/test/win/win-tool/gyptest-win-tool-handles-readonly-files.py +55 -0
- data/ext/gyp/test/win/winrt-app-type-revision/dllmain.cc +30 -0
- data/ext/gyp/test/win/winrt-app-type-revision/winrt-app-type-revison.gyp +43 -0
- data/ext/gyp/test/win/winrt-target-platform-version/dllmain.cc +30 -0
- data/ext/gyp/test/win/winrt-target-platform-version/winrt-target-platform-version.gyp +49 -0
- data/ext/gyp/test/xcode-ninja/list_excluded/gyptest-all.py +49 -0
- data/ext/gyp/test/xcode-ninja/list_excluded/hello.cpp +7 -0
- data/ext/gyp/test/xcode-ninja/list_excluded/hello_exclude.gyp +19 -0
- data/ext/gyp/test/xcode-ninja/list_excluded/hello_excluded.cpp +7 -0
- data/ext/gyp/tools/README +15 -0
- data/ext/gyp/tools/Xcode/README +5 -0
- data/ext/gyp/tools/Xcode/Specifications/gyp.pbfilespec +27 -0
- data/ext/gyp/tools/Xcode/Specifications/gyp.xclangspec +226 -0
- data/ext/gyp/tools/emacs/README +12 -0
- data/ext/gyp/tools/emacs/gyp-tests.el +63 -0
- data/ext/gyp/tools/emacs/gyp.el +275 -0
- data/ext/gyp/tools/emacs/run-unit-tests.sh +7 -0
- data/ext/gyp/tools/emacs/testdata/media.gyp +1105 -0
- data/ext/gyp/tools/emacs/testdata/media.gyp.fontified +1107 -0
- data/ext/gyp/tools/graphviz.py +102 -0
- data/ext/gyp/tools/pretty_gyp.py +156 -0
- data/ext/gyp/tools/pretty_sln.py +171 -0
- data/ext/gyp/tools/pretty_vcproj.py +337 -0
- data/ext/libuv/.gitattributes +1 -0
- data/ext/libuv/.github/ISSUE_TEMPLATE.md +13 -0
- data/ext/libuv/.github/stale.yml +22 -0
- data/ext/libuv/.gitignore +80 -0
- data/ext/libuv/.mailmap +50 -0
- data/ext/libuv/AUTHORS +415 -0
- data/ext/libuv/CMakeLists.txt +430 -0
- data/ext/libuv/CONTRIBUTING.md +172 -0
- data/ext/libuv/ChangeLog +4548 -0
- data/ext/libuv/LICENSE +70 -0
- data/ext/libuv/LICENSE-docs +396 -0
- data/ext/libuv/MAINTAINERS.md +48 -0
- data/ext/libuv/Makefile.am +548 -0
- data/ext/libuv/README.md +431 -0
- data/ext/libuv/SUPPORTED_PLATFORMS.md +68 -0
- data/ext/libuv/android-configure-arm +23 -0
- data/ext/libuv/android-configure-arm64 +23 -0
- data/ext/libuv/android-configure-x86 +23 -0
- data/ext/libuv/android-configure-x86_64 +25 -0
- data/ext/libuv/appveyor.yml +32 -0
- data/ext/libuv/autogen.sh +46 -0
- data/ext/libuv/common.gypi +213 -0
- data/ext/libuv/configure.ac +82 -0
- data/ext/libuv/docs/Makefile +183 -0
- data/ext/libuv/docs/code/cgi/main.c +81 -0
- data/ext/libuv/docs/code/cgi/tick.c +13 -0
- data/ext/libuv/docs/code/detach/main.c +31 -0
- data/ext/libuv/docs/code/dns/main.c +80 -0
- data/ext/libuv/docs/code/helloworld/main.c +15 -0
- data/ext/libuv/docs/code/idle-basic/main.c +24 -0
- data/ext/libuv/docs/code/idle-compute/main.c +43 -0
- data/ext/libuv/docs/code/interfaces/main.c +33 -0
- data/ext/libuv/docs/code/locks/main.c +57 -0
- data/ext/libuv/docs/code/multi-echo-server/hammer.js +20 -0
- data/ext/libuv/docs/code/multi-echo-server/main.c +114 -0
- data/ext/libuv/docs/code/multi-echo-server/worker.c +88 -0
- data/ext/libuv/docs/code/onchange/main.c +44 -0
- data/ext/libuv/docs/code/pipe-echo-server/main.c +94 -0
- data/ext/libuv/docs/code/plugin/hello.c +5 -0
- data/ext/libuv/docs/code/plugin/main.c +39 -0
- data/ext/libuv/docs/code/plugin/plugin.h +7 -0
- data/ext/libuv/docs/code/proc-streams/main.c +49 -0
- data/ext/libuv/docs/code/proc-streams/test.c +8 -0
- data/ext/libuv/docs/code/progress/main.c +47 -0
- data/ext/libuv/docs/code/queue-cancel/main.c +59 -0
- data/ext/libuv/docs/code/queue-work/main.c +44 -0
- data/ext/libuv/docs/code/ref-timer/main.c +29 -0
- data/ext/libuv/docs/code/signal/main.c +66 -0
- data/ext/libuv/docs/code/spawn/main.c +36 -0
- data/ext/libuv/docs/code/tcp-echo-server/main.c +87 -0
- data/ext/libuv/docs/code/thread-create/main.c +36 -0
- data/ext/libuv/docs/code/tty/main.c +29 -0
- data/ext/libuv/docs/code/tty-gravity/main.c +48 -0
- data/ext/libuv/docs/code/udp-dhcp/main.c +127 -0
- data/ext/libuv/docs/code/uvcat/main.c +63 -0
- data/ext/libuv/docs/code/uvstop/main.c +33 -0
- data/ext/libuv/docs/code/uvtee/main.c +80 -0
- data/ext/libuv/docs/code/uvwget/main.c +166 -0
- data/ext/libuv/docs/make.bat +243 -0
- data/ext/libuv/docs/src/api.rst +35 -0
- data/ext/libuv/docs/src/async.rst +65 -0
- data/ext/libuv/docs/src/check.rst +46 -0
- data/ext/libuv/docs/src/conf.py +348 -0
- data/ext/libuv/docs/src/design.rst +140 -0
- data/ext/libuv/docs/src/dll.rst +44 -0
- data/ext/libuv/docs/src/dns.rst +108 -0
- data/ext/libuv/docs/src/errors.rst +365 -0
- data/ext/libuv/docs/src/fs.rst +689 -0
- data/ext/libuv/docs/src/fs_event.rst +132 -0
- data/ext/libuv/docs/src/fs_poll.rst +77 -0
- data/ext/libuv/docs/src/guide/about.rst +22 -0
- data/ext/libuv/docs/src/guide/basics.rst +219 -0
- data/ext/libuv/docs/src/guide/eventloops.rst +48 -0
- data/ext/libuv/docs/src/guide/filesystem.rst +330 -0
- data/ext/libuv/docs/src/guide/introduction.rst +75 -0
- data/ext/libuv/docs/src/guide/networking.rst +250 -0
- data/ext/libuv/docs/src/guide/processes.rst +406 -0
- data/ext/libuv/docs/src/guide/threads.rst +385 -0
- data/ext/libuv/docs/src/guide/utilities.rst +437 -0
- data/ext/libuv/docs/src/guide.rst +22 -0
- data/ext/libuv/docs/src/handle.rst +283 -0
- data/ext/libuv/docs/src/idle.rst +54 -0
- data/ext/libuv/docs/src/index.rst +62 -0
- data/ext/libuv/docs/src/loop.rst +238 -0
- data/ext/libuv/docs/src/migration_010_100.rst +244 -0
- data/ext/libuv/docs/src/misc.rst +702 -0
- data/ext/libuv/docs/src/pipe.rst +116 -0
- data/ext/libuv/docs/src/poll.rst +121 -0
- data/ext/libuv/docs/src/prepare.rst +46 -0
- data/ext/libuv/docs/src/process.rst +250 -0
- data/ext/libuv/docs/src/request.rst +116 -0
- data/ext/libuv/docs/src/signal.rst +101 -0
- data/ext/libuv/docs/src/sphinx-plugins/manpage.py +45 -0
- data/ext/libuv/docs/src/static/architecture.png +0 -0
- data/ext/libuv/docs/src/static/diagrams.key/Data/st0-311.jpg +0 -0
- data/ext/libuv/docs/src/static/diagrams.key/Data/st1-475.jpg +0 -0
- data/ext/libuv/docs/src/static/diagrams.key/Index.zip +0 -0
- data/ext/libuv/docs/src/static/diagrams.key/Metadata/BuildVersionHistory.plist +8 -0
- data/ext/libuv/docs/src/static/diagrams.key/Metadata/DocumentIdentifier +1 -0
- data/ext/libuv/docs/src/static/diagrams.key/Metadata/Properties.plist +0 -0
- data/ext/libuv/docs/src/static/diagrams.key/preview-micro.jpg +0 -0
- data/ext/libuv/docs/src/static/diagrams.key/preview-web.jpg +0 -0
- data/ext/libuv/docs/src/static/diagrams.key/preview.jpg +0 -0
- data/ext/libuv/docs/src/static/favicon.ico +0 -0
- data/ext/libuv/docs/src/static/logo.png +0 -0
- data/ext/libuv/docs/src/static/loop_iteration.png +0 -0
- data/ext/libuv/docs/src/stream.rst +237 -0
- data/ext/libuv/docs/src/tcp.rst +125 -0
- data/ext/libuv/docs/src/threading.rst +197 -0
- data/ext/libuv/docs/src/threadpool.rst +69 -0
- data/ext/libuv/docs/src/timer.rst +81 -0
- data/ext/libuv/docs/src/tty.rst +139 -0
- data/ext/libuv/docs/src/udp.rst +390 -0
- data/ext/libuv/docs/src/upgrading.rst +11 -0
- data/ext/libuv/docs/src/version.rst +60 -0
- data/ext/libuv/gyp_uv.py +73 -0
- data/ext/libuv/img/banner.png +0 -0
- data/ext/libuv/img/logos.svg +152 -0
- data/ext/libuv/include/uv/aix.h +32 -0
- data/ext/libuv/include/uv/android-ifaddrs.h +54 -0
- data/ext/libuv/include/uv/bsd.h +34 -0
- data/ext/libuv/include/uv/darwin.h +61 -0
- data/ext/libuv/include/uv/errno.h +448 -0
- data/ext/libuv/include/uv/linux.h +34 -0
- data/ext/libuv/include/uv/os390.h +33 -0
- data/ext/libuv/include/uv/posix.h +31 -0
- data/ext/libuv/include/uv/stdint-msvc2008.h +247 -0
- data/ext/libuv/include/uv/sunos.h +44 -0
- data/ext/libuv/include/uv/threadpool.h +37 -0
- data/ext/libuv/include/uv/tree.h +768 -0
- data/ext/libuv/include/uv/unix.h +505 -0
- data/ext/libuv/include/uv/version.h +43 -0
- data/ext/libuv/include/uv/win.h +691 -0
- data/ext/libuv/include/uv.h +1782 -0
- data/ext/libuv/libuv.pc.in +12 -0
- data/ext/libuv/m4/.gitignore +4 -0
- data/ext/libuv/m4/as_case.m4 +21 -0
- data/ext/libuv/m4/libuv-check-flags.m4 +319 -0
- data/ext/libuv/src/fs-poll.c +287 -0
- data/ext/libuv/src/heap-inl.h +245 -0
- data/ext/libuv/src/idna.c +291 -0
- data/ext/libuv/src/idna.h +31 -0
- data/ext/libuv/src/inet.c +302 -0
- data/ext/libuv/src/queue.h +108 -0
- data/ext/libuv/src/random.c +123 -0
- data/ext/libuv/src/strscpy.c +17 -0
- data/ext/libuv/src/strscpy.h +18 -0
- data/ext/libuv/src/threadpool.c +388 -0
- data/ext/libuv/src/timer.c +181 -0
- data/ext/libuv/src/unix/aix-common.c +337 -0
- data/ext/libuv/src/unix/aix.c +1066 -0
- data/ext/libuv/src/unix/android-ifaddrs.c +712 -0
- data/ext/libuv/src/unix/async.c +298 -0
- data/ext/libuv/src/unix/atomic-ops.h +59 -0
- data/ext/libuv/src/unix/bsd-ifaddrs.c +161 -0
- data/ext/libuv/src/unix/bsd-proctitle.c +93 -0
- data/ext/libuv/src/unix/core.c +1571 -0
- data/ext/libuv/src/unix/cygwin.c +53 -0
- data/ext/libuv/src/unix/darwin-proctitle.c +202 -0
- data/ext/libuv/src/unix/darwin.c +225 -0
- data/ext/libuv/src/unix/dl.c +80 -0
- data/ext/libuv/src/unix/freebsd.c +290 -0
- data/ext/libuv/src/unix/fs.c +2044 -0
- data/ext/libuv/src/unix/fsevents.c +924 -0
- data/ext/libuv/src/unix/getaddrinfo.c +255 -0
- data/ext/libuv/src/unix/getnameinfo.c +121 -0
- data/ext/libuv/src/unix/haiku.c +167 -0
- data/ext/libuv/src/unix/ibmi.c +249 -0
- data/ext/libuv/src/unix/internal.h +331 -0
- data/ext/libuv/src/unix/kqueue.c +544 -0
- data/ext/libuv/src/unix/linux-core.c +1091 -0
- data/ext/libuv/src/unix/linux-inotify.c +354 -0
- data/ext/libuv/src/unix/linux-syscalls.c +394 -0
- data/ext/libuv/src/unix/linux-syscalls.h +153 -0
- data/ext/libuv/src/unix/loop-watcher.c +68 -0
- data/ext/libuv/src/unix/loop.c +194 -0
- data/ext/libuv/src/unix/netbsd.c +259 -0
- data/ext/libuv/src/unix/no-fsevents.c +42 -0
- data/ext/libuv/src/unix/no-proctitle.c +42 -0
- data/ext/libuv/src/unix/openbsd.c +244 -0
- data/ext/libuv/src/unix/os390-syscalls.c +519 -0
- data/ext/libuv/src/unix/os390-syscalls.h +68 -0
- data/ext/libuv/src/unix/os390.c +1003 -0
- data/ext/libuv/src/unix/pipe.c +377 -0
- data/ext/libuv/src/unix/poll.c +150 -0
- data/ext/libuv/src/unix/posix-hrtime.c +35 -0
- data/ext/libuv/src/unix/posix-poll.c +336 -0
- data/ext/libuv/src/unix/process.c +603 -0
- data/ext/libuv/src/unix/procfs-exepath.c +45 -0
- data/ext/libuv/src/unix/proctitle.c +132 -0
- data/ext/libuv/src/unix/pthread-fixes.c +56 -0
- data/ext/libuv/src/unix/random-devurandom.c +93 -0
- data/ext/libuv/src/unix/random-getentropy.c +57 -0
- data/ext/libuv/src/unix/random-getrandom.c +88 -0
- data/ext/libuv/src/unix/random-sysctl-linux.c +99 -0
- data/ext/libuv/src/unix/signal.c +577 -0
- data/ext/libuv/src/unix/spinlock.h +53 -0
- data/ext/libuv/src/unix/stream.c +1697 -0
- data/ext/libuv/src/unix/sunos.c +836 -0
- data/ext/libuv/src/unix/sysinfo-loadavg.c +36 -0
- data/ext/libuv/src/unix/sysinfo-memory.c +42 -0
- data/ext/libuv/src/unix/tcp.c +450 -0
- data/ext/libuv/src/unix/thread.c +852 -0
- data/ext/libuv/src/unix/tty.c +381 -0
- data/ext/libuv/src/unix/udp.c +1136 -0
- data/ext/libuv/src/uv-common.c +812 -0
- data/ext/libuv/src/uv-common.h +326 -0
- data/ext/libuv/src/uv-data-getter-setters.c +98 -0
- data/ext/libuv/src/version.c +45 -0
- data/ext/libuv/src/win/async.c +98 -0
- data/ext/libuv/src/win/atomicops-inl.h +57 -0
- data/ext/libuv/src/win/core.c +657 -0
- data/ext/libuv/src/win/detect-wakeup.c +35 -0
- data/ext/libuv/src/win/dl.c +136 -0
- data/ext/libuv/src/win/error.c +172 -0
- data/ext/libuv/src/win/fs-event.c +589 -0
- data/ext/libuv/src/win/fs-fd-hash-inl.h +178 -0
- data/ext/libuv/src/win/fs.c +3238 -0
- data/ext/libuv/src/win/getaddrinfo.c +463 -0
- data/ext/libuv/src/win/getnameinfo.c +157 -0
- data/ext/libuv/src/win/handle-inl.h +180 -0
- data/ext/libuv/src/win/handle.c +162 -0
- data/ext/libuv/src/win/internal.h +344 -0
- data/ext/libuv/src/win/loop-watcher.c +122 -0
- data/ext/libuv/src/win/pipe.c +2386 -0
- data/ext/libuv/src/win/poll.c +643 -0
- data/ext/libuv/src/win/process-stdio.c +512 -0
- data/ext/libuv/src/win/process.c +1282 -0
- data/ext/libuv/src/win/req-inl.h +221 -0
- data/ext/libuv/src/win/signal.c +277 -0
- data/ext/libuv/src/win/snprintf.c +42 -0
- data/ext/libuv/src/win/stream-inl.h +54 -0
- data/ext/libuv/src/win/stream.c +243 -0
- data/ext/libuv/src/win/tcp.c +1520 -0
- data/ext/libuv/src/win/thread.c +520 -0
- data/ext/libuv/src/win/tty.c +2348 -0
- data/ext/libuv/src/win/udp.c +1185 -0
- data/ext/libuv/src/win/util.c +1879 -0
- data/ext/libuv/src/win/winapi.c +149 -0
- data/ext/libuv/src/win/winapi.h +4751 -0
- data/ext/libuv/src/win/winsock.c +575 -0
- data/ext/libuv/src/win/winsock.h +201 -0
- data/ext/libuv/test/benchmark-async-pummel.c +119 -0
- data/ext/libuv/test/benchmark-async.c +141 -0
- data/ext/libuv/test/benchmark-fs-stat.c +136 -0
- data/ext/libuv/test/benchmark-getaddrinfo.c +92 -0
- data/ext/libuv/test/benchmark-list.h +163 -0
- data/ext/libuv/test/benchmark-loop-count.c +92 -0
- data/ext/libuv/test/benchmark-million-async.c +112 -0
- data/ext/libuv/test/benchmark-million-timers.c +86 -0
- data/ext/libuv/test/benchmark-multi-accept.c +447 -0
- data/ext/libuv/test/benchmark-ping-pongs.c +221 -0
- data/ext/libuv/test/benchmark-pound.c +351 -0
- data/ext/libuv/test/benchmark-pump.c +476 -0
- data/ext/libuv/test/benchmark-sizes.c +46 -0
- data/ext/libuv/test/benchmark-spawn.c +164 -0
- data/ext/libuv/test/benchmark-tcp-write-batch.c +144 -0
- data/ext/libuv/test/benchmark-thread.c +64 -0
- data/ext/libuv/test/benchmark-udp-pummel.c +243 -0
- data/ext/libuv/test/blackhole-server.c +121 -0
- data/ext/libuv/test/dns-server.c +340 -0
- data/ext/libuv/test/echo-server.c +382 -0
- data/ext/libuv/test/fixtures/empty_file +0 -0
- data/ext/libuv/test/fixtures/load_error.node +1 -0
- data/ext/libuv/test/fixtures/lorem_ipsum.txt +1 -0
- data/ext/libuv/test/run-benchmarks.c +65 -0
- data/ext/libuv/test/run-tests.c +239 -0
- data/ext/libuv/test/runner-unix.c +450 -0
- data/ext/libuv/test/runner-unix.h +36 -0
- data/ext/libuv/test/runner-win.c +357 -0
- data/ext/libuv/test/runner-win.h +41 -0
- data/ext/libuv/test/runner.c +431 -0
- data/ext/libuv/test/runner.h +176 -0
- data/ext/libuv/test/task.h +238 -0
- data/ext/libuv/test/test-active.c +84 -0
- data/ext/libuv/test/test-async-null-cb.c +64 -0
- data/ext/libuv/test/test-async.c +134 -0
- data/ext/libuv/test/test-barrier.c +148 -0
- data/ext/libuv/test/test-callback-order.c +77 -0
- data/ext/libuv/test/test-callback-stack.c +204 -0
- data/ext/libuv/test/test-close-fd.c +80 -0
- data/ext/libuv/test/test-close-order.c +80 -0
- data/ext/libuv/test/test-condvar.c +267 -0
- data/ext/libuv/test/test-connect-unspecified.c +63 -0
- data/ext/libuv/test/test-connection-fail.c +151 -0
- data/ext/libuv/test/test-cwd-and-chdir.c +58 -0
- data/ext/libuv/test/test-default-loop-close.c +59 -0
- data/ext/libuv/test/test-delayed-accept.c +189 -0
- data/ext/libuv/test/test-dlerror.c +61 -0
- data/ext/libuv/test/test-eintr-handling.c +94 -0
- data/ext/libuv/test/test-embed.c +139 -0
- data/ext/libuv/test/test-emfile.c +121 -0
- data/ext/libuv/test/test-env-vars.c +140 -0
- data/ext/libuv/test/test-error.c +79 -0
- data/ext/libuv/test/test-fail-always.c +29 -0
- data/ext/libuv/test/test-fork.c +683 -0
- data/ext/libuv/test/test-fs-copyfile.c +209 -0
- data/ext/libuv/test/test-fs-event.c +1165 -0
- data/ext/libuv/test/test-fs-fd-hash.c +133 -0
- data/ext/libuv/test/test-fs-open-flags.c +435 -0
- data/ext/libuv/test/test-fs-poll.c +300 -0
- data/ext/libuv/test/test-fs-readdir.c +462 -0
- data/ext/libuv/test/test-fs.c +4238 -0
- data/ext/libuv/test/test-get-currentexe.c +86 -0
- data/ext/libuv/test/test-get-loadavg.c +35 -0
- data/ext/libuv/test/test-get-memory.c +40 -0
- data/ext/libuv/test/test-get-passwd.c +86 -0
- data/ext/libuv/test/test-getaddrinfo.c +191 -0
- data/ext/libuv/test/test-gethostname.c +58 -0
- data/ext/libuv/test/test-getnameinfo.c +101 -0
- data/ext/libuv/test/test-getsockname.c +361 -0
- data/ext/libuv/test/test-getters-setters.c +88 -0
- data/ext/libuv/test/test-gettimeofday.c +39 -0
- data/ext/libuv/test/test-handle-fileno.c +125 -0
- data/ext/libuv/test/test-homedir.c +72 -0
- data/ext/libuv/test/test-hrtime.c +52 -0
- data/ext/libuv/test/test-idle.c +99 -0
- data/ext/libuv/test/test-idna.c +195 -0
- data/ext/libuv/test/test-ip4-addr.c +55 -0
- data/ext/libuv/test/test-ip6-addr.c +171 -0
- data/ext/libuv/test/test-ipc-heavy-traffic-deadlock-bug.c +159 -0
- data/ext/libuv/test/test-ipc-send-recv.c +429 -0
- data/ext/libuv/test/test-ipc.c +974 -0
- data/ext/libuv/test/test-list.h +1064 -0
- data/ext/libuv/test/test-loop-alive.c +67 -0
- data/ext/libuv/test/test-loop-close.c +75 -0
- data/ext/libuv/test/test-loop-configure.c +38 -0
- data/ext/libuv/test/test-loop-handles.c +337 -0
- data/ext/libuv/test/test-loop-stop.c +71 -0
- data/ext/libuv/test/test-loop-time.c +63 -0
- data/ext/libuv/test/test-multiple-listen.c +109 -0
- data/ext/libuv/test/test-mutexes.c +182 -0
- data/ext/libuv/test/test-osx-select.c +140 -0
- data/ext/libuv/test/test-pass-always.c +28 -0
- data/ext/libuv/test/test-ping-pong.c +301 -0
- data/ext/libuv/test/test-pipe-bind-error.c +139 -0
- data/ext/libuv/test/test-pipe-close-stdout-read-stdin.c +112 -0
- data/ext/libuv/test/test-pipe-connect-error.c +95 -0
- data/ext/libuv/test/test-pipe-connect-multiple.c +107 -0
- data/ext/libuv/test/test-pipe-connect-prepare.c +83 -0
- data/ext/libuv/test/test-pipe-getsockname.c +266 -0
- data/ext/libuv/test/test-pipe-pending-instances.c +59 -0
- data/ext/libuv/test/test-pipe-sendmsg.c +172 -0
- data/ext/libuv/test/test-pipe-server-close.c +94 -0
- data/ext/libuv/test/test-pipe-set-fchmod.c +90 -0
- data/ext/libuv/test/test-pipe-set-non-blocking.c +99 -0
- data/ext/libuv/test/test-platform-output.c +170 -0
- data/ext/libuv/test/test-poll-close-doesnt-corrupt-stack.c +114 -0
- data/ext/libuv/test/test-poll-close.c +73 -0
- data/ext/libuv/test/test-poll-closesocket.c +92 -0
- data/ext/libuv/test/test-poll-oob.c +210 -0
- data/ext/libuv/test/test-poll.c +668 -0
- data/ext/libuv/test/test-process-priority.c +83 -0
- data/ext/libuv/test/test-process-title-threadsafe.c +89 -0
- data/ext/libuv/test/test-process-title.c +76 -0
- data/ext/libuv/test/test-queue-foreach-delete.c +204 -0
- data/ext/libuv/test/test-random.c +94 -0
- data/ext/libuv/test/test-ref.c +445 -0
- data/ext/libuv/test/test-run-nowait.c +45 -0
- data/ext/libuv/test/test-run-once.c +48 -0
- data/ext/libuv/test/test-semaphore.c +111 -0
- data/ext/libuv/test/test-shutdown-close.c +108 -0
- data/ext/libuv/test/test-shutdown-eof.c +182 -0
- data/ext/libuv/test/test-shutdown-twice.c +85 -0
- data/ext/libuv/test/test-signal-multiple-loops.c +302 -0
- data/ext/libuv/test/test-signal-pending-on-close.c +94 -0
- data/ext/libuv/test/test-signal.c +325 -0
- data/ext/libuv/test/test-socket-buffer-size.c +77 -0
- data/ext/libuv/test/test-spawn.c +1924 -0
- data/ext/libuv/test/test-stdio-over-pipes.c +256 -0
- data/ext/libuv/test/test-strscpy.c +53 -0
- data/ext/libuv/test/test-tcp-alloc-cb-fail.c +123 -0
- data/ext/libuv/test/test-tcp-bind-error.c +254 -0
- data/ext/libuv/test/test-tcp-bind6-error.c +176 -0
- data/ext/libuv/test/test-tcp-close-accept.c +198 -0
- data/ext/libuv/test/test-tcp-close-reset.c +290 -0
- data/ext/libuv/test/test-tcp-close-while-connecting.c +97 -0
- data/ext/libuv/test/test-tcp-close.c +136 -0
- data/ext/libuv/test/test-tcp-connect-error-after-write.c +98 -0
- data/ext/libuv/test/test-tcp-connect-error.c +73 -0
- data/ext/libuv/test/test-tcp-connect-timeout.c +91 -0
- data/ext/libuv/test/test-tcp-connect6-error.c +71 -0
- data/ext/libuv/test/test-tcp-create-socket-early.c +209 -0
- data/ext/libuv/test/test-tcp-flags.c +52 -0
- data/ext/libuv/test/test-tcp-oob.c +146 -0
- data/ext/libuv/test/test-tcp-open.c +400 -0
- data/ext/libuv/test/test-tcp-read-stop.c +76 -0
- data/ext/libuv/test/test-tcp-shutdown-after-write.c +138 -0
- data/ext/libuv/test/test-tcp-try-write-error.c +109 -0
- data/ext/libuv/test/test-tcp-try-write.c +135 -0
- data/ext/libuv/test/test-tcp-unexpected-read.c +117 -0
- data/ext/libuv/test/test-tcp-write-after-connect.c +72 -0
- data/ext/libuv/test/test-tcp-write-fail.c +115 -0
- data/ext/libuv/test/test-tcp-write-queue-order.c +139 -0
- data/ext/libuv/test/test-tcp-write-to-half-open-connection.c +141 -0
- data/ext/libuv/test/test-tcp-writealot.c +180 -0
- data/ext/libuv/test/test-thread-equal.c +45 -0
- data/ext/libuv/test/test-thread.c +286 -0
- data/ext/libuv/test/test-threadpool-cancel.c +349 -0
- data/ext/libuv/test/test-threadpool.c +76 -0
- data/ext/libuv/test/test-timer-again.c +141 -0
- data/ext/libuv/test/test-timer-from-check.c +80 -0
- data/ext/libuv/test/test-timer.c +343 -0
- data/ext/libuv/test/test-tmpdir.c +82 -0
- data/ext/libuv/test/test-tty-duplicate-key.c +321 -0
- data/ext/libuv/test/test-tty.c +464 -0
- data/ext/libuv/test/test-udp-alloc-cb-fail.c +196 -0
- data/ext/libuv/test/test-udp-bind.c +93 -0
- data/ext/libuv/test/test-udp-connect.c +182 -0
- data/ext/libuv/test/test-udp-create-socket-early.c +135 -0
- data/ext/libuv/test/test-udp-dgram-too-big.c +91 -0
- data/ext/libuv/test/test-udp-ipv6.c +200 -0
- data/ext/libuv/test/test-udp-multicast-interface.c +99 -0
- data/ext/libuv/test/test-udp-multicast-interface6.c +103 -0
- data/ext/libuv/test/test-udp-multicast-join.c +181 -0
- data/ext/libuv/test/test-udp-multicast-join6.c +215 -0
- data/ext/libuv/test/test-udp-multicast-ttl.c +94 -0
- data/ext/libuv/test/test-udp-open.c +350 -0
- data/ext/libuv/test/test-udp-options.c +156 -0
- data/ext/libuv/test/test-udp-send-and-recv.c +212 -0
- data/ext/libuv/test/test-udp-send-hang-loop.c +99 -0
- data/ext/libuv/test/test-udp-send-immediate.c +148 -0
- data/ext/libuv/test/test-udp-send-unreachable.c +150 -0
- data/ext/libuv/test/test-udp-try-send.c +121 -0
- data/ext/libuv/test/test-uname.c +69 -0
- data/ext/libuv/test/test-walk-handles.c +77 -0
- data/ext/libuv/test/test-watcher-cross-stop.c +111 -0
- data/ext/libuv/test/test.gyp +293 -0
- data/ext/libuv/tools/make_dist_html.py +124 -0
- data/ext/libuv/tools/vswhere_usability_wrapper.cmd +33 -0
- data/ext/libuv/uv.gyp +368 -0
- data/ext/libuv/vcbuild.bat +184 -0
- data/lib/mt-libuv/tcp.rb +2 -2
- data/lib/mt-libuv/version.rb +1 -1
- data/mt-libuv.gemspec +26 -26
- metadata +2089 -2
@@ -0,0 +1,1817 @@
|
|
1
|
+
# Copyright (c) 2012 Google Inc. All rights reserved.
|
2
|
+
# Use of this source code is governed by a BSD-style license that can be
|
3
|
+
# found in the LICENSE file.
|
4
|
+
|
5
|
+
{
|
6
|
+
'target_defaults': {
|
7
|
+
'msvs_cygwin_dirs': ['../../../../<(DEPTH)/third_party/cygwin'],
|
8
|
+
},
|
9
|
+
'targets': [
|
10
|
+
{
|
11
|
+
'target_name': 'a',
|
12
|
+
'type': 'none',
|
13
|
+
'actions': [
|
14
|
+
{
|
15
|
+
'action_name': 'do_0',
|
16
|
+
'inputs': [],
|
17
|
+
'outputs': ['<(PRODUCT_DIR)/generated_0.h'],
|
18
|
+
'action': [
|
19
|
+
'touch',
|
20
|
+
'<(PRODUCT_DIR)/generated_0.h',
|
21
|
+
],
|
22
|
+
},
|
23
|
+
{
|
24
|
+
'action_name': 'do_1',
|
25
|
+
'inputs': [],
|
26
|
+
'outputs': ['<(PRODUCT_DIR)/generated_1.h'],
|
27
|
+
'action': [
|
28
|
+
'touch',
|
29
|
+
'<(PRODUCT_DIR)/generated_1.h',
|
30
|
+
],
|
31
|
+
},
|
32
|
+
{
|
33
|
+
'action_name': 'do_2',
|
34
|
+
'inputs': [],
|
35
|
+
'outputs': ['<(PRODUCT_DIR)/generated_2.h'],
|
36
|
+
'action': [
|
37
|
+
'touch',
|
38
|
+
'<(PRODUCT_DIR)/generated_2.h',
|
39
|
+
],
|
40
|
+
},
|
41
|
+
{
|
42
|
+
'action_name': 'do_3',
|
43
|
+
'inputs': [],
|
44
|
+
'outputs': ['<(PRODUCT_DIR)/generated_3.h'],
|
45
|
+
'action': [
|
46
|
+
'touch',
|
47
|
+
'<(PRODUCT_DIR)/generated_3.h',
|
48
|
+
],
|
49
|
+
},
|
50
|
+
{
|
51
|
+
'action_name': 'do_4',
|
52
|
+
'inputs': [],
|
53
|
+
'outputs': ['<(PRODUCT_DIR)/generated_4.h'],
|
54
|
+
'action': [
|
55
|
+
'touch',
|
56
|
+
'<(PRODUCT_DIR)/generated_4.h',
|
57
|
+
],
|
58
|
+
},
|
59
|
+
{
|
60
|
+
'action_name': 'do_5',
|
61
|
+
'inputs': [],
|
62
|
+
'outputs': ['<(PRODUCT_DIR)/generated_5.h'],
|
63
|
+
'action': [
|
64
|
+
'touch',
|
65
|
+
'<(PRODUCT_DIR)/generated_5.h',
|
66
|
+
],
|
67
|
+
},
|
68
|
+
{
|
69
|
+
'action_name': 'do_6',
|
70
|
+
'inputs': [],
|
71
|
+
'outputs': ['<(PRODUCT_DIR)/generated_6.h'],
|
72
|
+
'action': [
|
73
|
+
'touch',
|
74
|
+
'<(PRODUCT_DIR)/generated_6.h',
|
75
|
+
],
|
76
|
+
},
|
77
|
+
{
|
78
|
+
'action_name': 'do_7',
|
79
|
+
'inputs': [],
|
80
|
+
'outputs': ['<(PRODUCT_DIR)/generated_7.h'],
|
81
|
+
'action': [
|
82
|
+
'touch',
|
83
|
+
'<(PRODUCT_DIR)/generated_7.h',
|
84
|
+
],
|
85
|
+
},
|
86
|
+
{
|
87
|
+
'action_name': 'do_8',
|
88
|
+
'inputs': [],
|
89
|
+
'outputs': ['<(PRODUCT_DIR)/generated_8.h'],
|
90
|
+
'action': [
|
91
|
+
'touch',
|
92
|
+
'<(PRODUCT_DIR)/generated_8.h',
|
93
|
+
],
|
94
|
+
},
|
95
|
+
{
|
96
|
+
'action_name': 'do_9',
|
97
|
+
'inputs': [],
|
98
|
+
'outputs': ['<(PRODUCT_DIR)/generated_9.h'],
|
99
|
+
'action': [
|
100
|
+
'touch',
|
101
|
+
'<(PRODUCT_DIR)/generated_9.h',
|
102
|
+
],
|
103
|
+
},
|
104
|
+
{
|
105
|
+
'action_name': 'do_10',
|
106
|
+
'inputs': [],
|
107
|
+
'outputs': ['<(PRODUCT_DIR)/generated_10.h'],
|
108
|
+
'action': [
|
109
|
+
'touch',
|
110
|
+
'<(PRODUCT_DIR)/generated_10.h',
|
111
|
+
],
|
112
|
+
},
|
113
|
+
{
|
114
|
+
'action_name': 'do_11',
|
115
|
+
'inputs': [],
|
116
|
+
'outputs': ['<(PRODUCT_DIR)/generated_11.h'],
|
117
|
+
'action': [
|
118
|
+
'touch',
|
119
|
+
'<(PRODUCT_DIR)/generated_11.h',
|
120
|
+
],
|
121
|
+
},
|
122
|
+
{
|
123
|
+
'action_name': 'do_12',
|
124
|
+
'inputs': [],
|
125
|
+
'outputs': ['<(PRODUCT_DIR)/generated_12.h'],
|
126
|
+
'action': [
|
127
|
+
'touch',
|
128
|
+
'<(PRODUCT_DIR)/generated_12.h',
|
129
|
+
],
|
130
|
+
},
|
131
|
+
{
|
132
|
+
'action_name': 'do_13',
|
133
|
+
'inputs': [],
|
134
|
+
'outputs': ['<(PRODUCT_DIR)/generated_13.h'],
|
135
|
+
'action': [
|
136
|
+
'touch',
|
137
|
+
'<(PRODUCT_DIR)/generated_13.h',
|
138
|
+
],
|
139
|
+
},
|
140
|
+
{
|
141
|
+
'action_name': 'do_14',
|
142
|
+
'inputs': [],
|
143
|
+
'outputs': ['<(PRODUCT_DIR)/generated_14.h'],
|
144
|
+
'action': [
|
145
|
+
'touch',
|
146
|
+
'<(PRODUCT_DIR)/generated_14.h',
|
147
|
+
],
|
148
|
+
},
|
149
|
+
{
|
150
|
+
'action_name': 'do_15',
|
151
|
+
'inputs': [],
|
152
|
+
'outputs': ['<(PRODUCT_DIR)/generated_15.h'],
|
153
|
+
'action': [
|
154
|
+
'touch',
|
155
|
+
'<(PRODUCT_DIR)/generated_15.h',
|
156
|
+
],
|
157
|
+
},
|
158
|
+
{
|
159
|
+
'action_name': 'do_16',
|
160
|
+
'inputs': [],
|
161
|
+
'outputs': ['<(PRODUCT_DIR)/generated_16.h'],
|
162
|
+
'action': [
|
163
|
+
'touch',
|
164
|
+
'<(PRODUCT_DIR)/generated_16.h',
|
165
|
+
],
|
166
|
+
},
|
167
|
+
{
|
168
|
+
'action_name': 'do_17',
|
169
|
+
'inputs': [],
|
170
|
+
'outputs': ['<(PRODUCT_DIR)/generated_17.h'],
|
171
|
+
'action': [
|
172
|
+
'touch',
|
173
|
+
'<(PRODUCT_DIR)/generated_17.h',
|
174
|
+
],
|
175
|
+
},
|
176
|
+
{
|
177
|
+
'action_name': 'do_18',
|
178
|
+
'inputs': [],
|
179
|
+
'outputs': ['<(PRODUCT_DIR)/generated_18.h'],
|
180
|
+
'action': [
|
181
|
+
'touch',
|
182
|
+
'<(PRODUCT_DIR)/generated_18.h',
|
183
|
+
],
|
184
|
+
},
|
185
|
+
{
|
186
|
+
'action_name': 'do_19',
|
187
|
+
'inputs': [],
|
188
|
+
'outputs': ['<(PRODUCT_DIR)/generated_19.h'],
|
189
|
+
'action': [
|
190
|
+
'touch',
|
191
|
+
'<(PRODUCT_DIR)/generated_19.h',
|
192
|
+
],
|
193
|
+
},
|
194
|
+
{
|
195
|
+
'action_name': 'do_20',
|
196
|
+
'inputs': [],
|
197
|
+
'outputs': ['<(PRODUCT_DIR)/generated_20.h'],
|
198
|
+
'action': [
|
199
|
+
'touch',
|
200
|
+
'<(PRODUCT_DIR)/generated_20.h',
|
201
|
+
],
|
202
|
+
},
|
203
|
+
{
|
204
|
+
'action_name': 'do_21',
|
205
|
+
'inputs': [],
|
206
|
+
'outputs': ['<(PRODUCT_DIR)/generated_21.h'],
|
207
|
+
'action': [
|
208
|
+
'touch',
|
209
|
+
'<(PRODUCT_DIR)/generated_21.h',
|
210
|
+
],
|
211
|
+
},
|
212
|
+
{
|
213
|
+
'action_name': 'do_22',
|
214
|
+
'inputs': [],
|
215
|
+
'outputs': ['<(PRODUCT_DIR)/generated_22.h'],
|
216
|
+
'action': [
|
217
|
+
'touch',
|
218
|
+
'<(PRODUCT_DIR)/generated_22.h',
|
219
|
+
],
|
220
|
+
},
|
221
|
+
{
|
222
|
+
'action_name': 'do_23',
|
223
|
+
'inputs': [],
|
224
|
+
'outputs': ['<(PRODUCT_DIR)/generated_23.h'],
|
225
|
+
'action': [
|
226
|
+
'touch',
|
227
|
+
'<(PRODUCT_DIR)/generated_23.h',
|
228
|
+
],
|
229
|
+
},
|
230
|
+
{
|
231
|
+
'action_name': 'do_24',
|
232
|
+
'inputs': [],
|
233
|
+
'outputs': ['<(PRODUCT_DIR)/generated_24.h'],
|
234
|
+
'action': [
|
235
|
+
'touch',
|
236
|
+
'<(PRODUCT_DIR)/generated_24.h',
|
237
|
+
],
|
238
|
+
},
|
239
|
+
{
|
240
|
+
'action_name': 'do_25',
|
241
|
+
'inputs': [],
|
242
|
+
'outputs': ['<(PRODUCT_DIR)/generated_25.h'],
|
243
|
+
'action': [
|
244
|
+
'touch',
|
245
|
+
'<(PRODUCT_DIR)/generated_25.h',
|
246
|
+
],
|
247
|
+
},
|
248
|
+
{
|
249
|
+
'action_name': 'do_26',
|
250
|
+
'inputs': [],
|
251
|
+
'outputs': ['<(PRODUCT_DIR)/generated_26.h'],
|
252
|
+
'action': [
|
253
|
+
'touch',
|
254
|
+
'<(PRODUCT_DIR)/generated_26.h',
|
255
|
+
],
|
256
|
+
},
|
257
|
+
{
|
258
|
+
'action_name': 'do_27',
|
259
|
+
'inputs': [],
|
260
|
+
'outputs': ['<(PRODUCT_DIR)/generated_27.h'],
|
261
|
+
'action': [
|
262
|
+
'touch',
|
263
|
+
'<(PRODUCT_DIR)/generated_27.h',
|
264
|
+
],
|
265
|
+
},
|
266
|
+
{
|
267
|
+
'action_name': 'do_28',
|
268
|
+
'inputs': [],
|
269
|
+
'outputs': ['<(PRODUCT_DIR)/generated_28.h'],
|
270
|
+
'action': [
|
271
|
+
'touch',
|
272
|
+
'<(PRODUCT_DIR)/generated_28.h',
|
273
|
+
],
|
274
|
+
},
|
275
|
+
{
|
276
|
+
'action_name': 'do_29',
|
277
|
+
'inputs': [],
|
278
|
+
'outputs': ['<(PRODUCT_DIR)/generated_29.h'],
|
279
|
+
'action': [
|
280
|
+
'touch',
|
281
|
+
'<(PRODUCT_DIR)/generated_29.h',
|
282
|
+
],
|
283
|
+
},
|
284
|
+
{
|
285
|
+
'action_name': 'do_30',
|
286
|
+
'inputs': [],
|
287
|
+
'outputs': ['<(PRODUCT_DIR)/generated_30.h'],
|
288
|
+
'action': [
|
289
|
+
'touch',
|
290
|
+
'<(PRODUCT_DIR)/generated_30.h',
|
291
|
+
],
|
292
|
+
},
|
293
|
+
{
|
294
|
+
'action_name': 'do_31',
|
295
|
+
'inputs': [],
|
296
|
+
'outputs': ['<(PRODUCT_DIR)/generated_31.h'],
|
297
|
+
'action': [
|
298
|
+
'touch',
|
299
|
+
'<(PRODUCT_DIR)/generated_31.h',
|
300
|
+
],
|
301
|
+
},
|
302
|
+
{
|
303
|
+
'action_name': 'do_32',
|
304
|
+
'inputs': [],
|
305
|
+
'outputs': ['<(PRODUCT_DIR)/generated_32.h'],
|
306
|
+
'action': [
|
307
|
+
'touch',
|
308
|
+
'<(PRODUCT_DIR)/generated_32.h',
|
309
|
+
],
|
310
|
+
},
|
311
|
+
{
|
312
|
+
'action_name': 'do_33',
|
313
|
+
'inputs': [],
|
314
|
+
'outputs': ['<(PRODUCT_DIR)/generated_33.h'],
|
315
|
+
'action': [
|
316
|
+
'touch',
|
317
|
+
'<(PRODUCT_DIR)/generated_33.h',
|
318
|
+
],
|
319
|
+
},
|
320
|
+
{
|
321
|
+
'action_name': 'do_34',
|
322
|
+
'inputs': [],
|
323
|
+
'outputs': ['<(PRODUCT_DIR)/generated_34.h'],
|
324
|
+
'action': [
|
325
|
+
'touch',
|
326
|
+
'<(PRODUCT_DIR)/generated_34.h',
|
327
|
+
],
|
328
|
+
},
|
329
|
+
{
|
330
|
+
'action_name': 'do_35',
|
331
|
+
'inputs': [],
|
332
|
+
'outputs': ['<(PRODUCT_DIR)/generated_35.h'],
|
333
|
+
'action': [
|
334
|
+
'touch',
|
335
|
+
'<(PRODUCT_DIR)/generated_35.h',
|
336
|
+
],
|
337
|
+
},
|
338
|
+
{
|
339
|
+
'action_name': 'do_36',
|
340
|
+
'inputs': [],
|
341
|
+
'outputs': ['<(PRODUCT_DIR)/generated_36.h'],
|
342
|
+
'action': [
|
343
|
+
'touch',
|
344
|
+
'<(PRODUCT_DIR)/generated_36.h',
|
345
|
+
],
|
346
|
+
},
|
347
|
+
{
|
348
|
+
'action_name': 'do_37',
|
349
|
+
'inputs': [],
|
350
|
+
'outputs': ['<(PRODUCT_DIR)/generated_37.h'],
|
351
|
+
'action': [
|
352
|
+
'touch',
|
353
|
+
'<(PRODUCT_DIR)/generated_37.h',
|
354
|
+
],
|
355
|
+
},
|
356
|
+
{
|
357
|
+
'action_name': 'do_38',
|
358
|
+
'inputs': [],
|
359
|
+
'outputs': ['<(PRODUCT_DIR)/generated_38.h'],
|
360
|
+
'action': [
|
361
|
+
'touch',
|
362
|
+
'<(PRODUCT_DIR)/generated_38.h',
|
363
|
+
],
|
364
|
+
},
|
365
|
+
{
|
366
|
+
'action_name': 'do_39',
|
367
|
+
'inputs': [],
|
368
|
+
'outputs': ['<(PRODUCT_DIR)/generated_39.h'],
|
369
|
+
'action': [
|
370
|
+
'touch',
|
371
|
+
'<(PRODUCT_DIR)/generated_39.h',
|
372
|
+
],
|
373
|
+
},
|
374
|
+
{
|
375
|
+
'action_name': 'do_40',
|
376
|
+
'inputs': [],
|
377
|
+
'outputs': ['<(PRODUCT_DIR)/generated_40.h'],
|
378
|
+
'action': [
|
379
|
+
'touch',
|
380
|
+
'<(PRODUCT_DIR)/generated_40.h',
|
381
|
+
],
|
382
|
+
},
|
383
|
+
{
|
384
|
+
'action_name': 'do_41',
|
385
|
+
'inputs': [],
|
386
|
+
'outputs': ['<(PRODUCT_DIR)/generated_41.h'],
|
387
|
+
'action': [
|
388
|
+
'touch',
|
389
|
+
'<(PRODUCT_DIR)/generated_41.h',
|
390
|
+
],
|
391
|
+
},
|
392
|
+
{
|
393
|
+
'action_name': 'do_42',
|
394
|
+
'inputs': [],
|
395
|
+
'outputs': ['<(PRODUCT_DIR)/generated_42.h'],
|
396
|
+
'action': [
|
397
|
+
'touch',
|
398
|
+
'<(PRODUCT_DIR)/generated_42.h',
|
399
|
+
],
|
400
|
+
},
|
401
|
+
{
|
402
|
+
'action_name': 'do_43',
|
403
|
+
'inputs': [],
|
404
|
+
'outputs': ['<(PRODUCT_DIR)/generated_43.h'],
|
405
|
+
'action': [
|
406
|
+
'touch',
|
407
|
+
'<(PRODUCT_DIR)/generated_43.h',
|
408
|
+
],
|
409
|
+
},
|
410
|
+
{
|
411
|
+
'action_name': 'do_44',
|
412
|
+
'inputs': [],
|
413
|
+
'outputs': ['<(PRODUCT_DIR)/generated_44.h'],
|
414
|
+
'action': [
|
415
|
+
'touch',
|
416
|
+
'<(PRODUCT_DIR)/generated_44.h',
|
417
|
+
],
|
418
|
+
},
|
419
|
+
{
|
420
|
+
'action_name': 'do_45',
|
421
|
+
'inputs': [],
|
422
|
+
'outputs': ['<(PRODUCT_DIR)/generated_45.h'],
|
423
|
+
'action': [
|
424
|
+
'touch',
|
425
|
+
'<(PRODUCT_DIR)/generated_45.h',
|
426
|
+
],
|
427
|
+
},
|
428
|
+
{
|
429
|
+
'action_name': 'do_46',
|
430
|
+
'inputs': [],
|
431
|
+
'outputs': ['<(PRODUCT_DIR)/generated_46.h'],
|
432
|
+
'action': [
|
433
|
+
'touch',
|
434
|
+
'<(PRODUCT_DIR)/generated_46.h',
|
435
|
+
],
|
436
|
+
},
|
437
|
+
{
|
438
|
+
'action_name': 'do_47',
|
439
|
+
'inputs': [],
|
440
|
+
'outputs': ['<(PRODUCT_DIR)/generated_47.h'],
|
441
|
+
'action': [
|
442
|
+
'touch',
|
443
|
+
'<(PRODUCT_DIR)/generated_47.h',
|
444
|
+
],
|
445
|
+
},
|
446
|
+
{
|
447
|
+
'action_name': 'do_48',
|
448
|
+
'inputs': [],
|
449
|
+
'outputs': ['<(PRODUCT_DIR)/generated_48.h'],
|
450
|
+
'action': [
|
451
|
+
'touch',
|
452
|
+
'<(PRODUCT_DIR)/generated_48.h',
|
453
|
+
],
|
454
|
+
},
|
455
|
+
{
|
456
|
+
'action_name': 'do_49',
|
457
|
+
'inputs': [],
|
458
|
+
'outputs': ['<(PRODUCT_DIR)/generated_49.h'],
|
459
|
+
'action': [
|
460
|
+
'touch',
|
461
|
+
'<(PRODUCT_DIR)/generated_49.h',
|
462
|
+
],
|
463
|
+
},
|
464
|
+
{
|
465
|
+
'action_name': 'do_50',
|
466
|
+
'inputs': [],
|
467
|
+
'outputs': ['<(PRODUCT_DIR)/generated_50.h'],
|
468
|
+
'action': [
|
469
|
+
'touch',
|
470
|
+
'<(PRODUCT_DIR)/generated_50.h',
|
471
|
+
],
|
472
|
+
},
|
473
|
+
{
|
474
|
+
'action_name': 'do_51',
|
475
|
+
'inputs': [],
|
476
|
+
'outputs': ['<(PRODUCT_DIR)/generated_51.h'],
|
477
|
+
'action': [
|
478
|
+
'touch',
|
479
|
+
'<(PRODUCT_DIR)/generated_51.h',
|
480
|
+
],
|
481
|
+
},
|
482
|
+
{
|
483
|
+
'action_name': 'do_52',
|
484
|
+
'inputs': [],
|
485
|
+
'outputs': ['<(PRODUCT_DIR)/generated_52.h'],
|
486
|
+
'action': [
|
487
|
+
'touch',
|
488
|
+
'<(PRODUCT_DIR)/generated_52.h',
|
489
|
+
],
|
490
|
+
},
|
491
|
+
{
|
492
|
+
'action_name': 'do_53',
|
493
|
+
'inputs': [],
|
494
|
+
'outputs': ['<(PRODUCT_DIR)/generated_53.h'],
|
495
|
+
'action': [
|
496
|
+
'touch',
|
497
|
+
'<(PRODUCT_DIR)/generated_53.h',
|
498
|
+
],
|
499
|
+
},
|
500
|
+
{
|
501
|
+
'action_name': 'do_54',
|
502
|
+
'inputs': [],
|
503
|
+
'outputs': ['<(PRODUCT_DIR)/generated_54.h'],
|
504
|
+
'action': [
|
505
|
+
'touch',
|
506
|
+
'<(PRODUCT_DIR)/generated_54.h',
|
507
|
+
],
|
508
|
+
},
|
509
|
+
{
|
510
|
+
'action_name': 'do_55',
|
511
|
+
'inputs': [],
|
512
|
+
'outputs': ['<(PRODUCT_DIR)/generated_55.h'],
|
513
|
+
'action': [
|
514
|
+
'touch',
|
515
|
+
'<(PRODUCT_DIR)/generated_55.h',
|
516
|
+
],
|
517
|
+
},
|
518
|
+
{
|
519
|
+
'action_name': 'do_56',
|
520
|
+
'inputs': [],
|
521
|
+
'outputs': ['<(PRODUCT_DIR)/generated_56.h'],
|
522
|
+
'action': [
|
523
|
+
'touch',
|
524
|
+
'<(PRODUCT_DIR)/generated_56.h',
|
525
|
+
],
|
526
|
+
},
|
527
|
+
{
|
528
|
+
'action_name': 'do_57',
|
529
|
+
'inputs': [],
|
530
|
+
'outputs': ['<(PRODUCT_DIR)/generated_57.h'],
|
531
|
+
'action': [
|
532
|
+
'touch',
|
533
|
+
'<(PRODUCT_DIR)/generated_57.h',
|
534
|
+
],
|
535
|
+
},
|
536
|
+
{
|
537
|
+
'action_name': 'do_58',
|
538
|
+
'inputs': [],
|
539
|
+
'outputs': ['<(PRODUCT_DIR)/generated_58.h'],
|
540
|
+
'action': [
|
541
|
+
'touch',
|
542
|
+
'<(PRODUCT_DIR)/generated_58.h',
|
543
|
+
],
|
544
|
+
},
|
545
|
+
{
|
546
|
+
'action_name': 'do_59',
|
547
|
+
'inputs': [],
|
548
|
+
'outputs': ['<(PRODUCT_DIR)/generated_59.h'],
|
549
|
+
'action': [
|
550
|
+
'touch',
|
551
|
+
'<(PRODUCT_DIR)/generated_59.h',
|
552
|
+
],
|
553
|
+
},
|
554
|
+
{
|
555
|
+
'action_name': 'do_60',
|
556
|
+
'inputs': [],
|
557
|
+
'outputs': ['<(PRODUCT_DIR)/generated_60.h'],
|
558
|
+
'action': [
|
559
|
+
'touch',
|
560
|
+
'<(PRODUCT_DIR)/generated_60.h',
|
561
|
+
],
|
562
|
+
},
|
563
|
+
{
|
564
|
+
'action_name': 'do_61',
|
565
|
+
'inputs': [],
|
566
|
+
'outputs': ['<(PRODUCT_DIR)/generated_61.h'],
|
567
|
+
'action': [
|
568
|
+
'touch',
|
569
|
+
'<(PRODUCT_DIR)/generated_61.h',
|
570
|
+
],
|
571
|
+
},
|
572
|
+
{
|
573
|
+
'action_name': 'do_62',
|
574
|
+
'inputs': [],
|
575
|
+
'outputs': ['<(PRODUCT_DIR)/generated_62.h'],
|
576
|
+
'action': [
|
577
|
+
'touch',
|
578
|
+
'<(PRODUCT_DIR)/generated_62.h',
|
579
|
+
],
|
580
|
+
},
|
581
|
+
{
|
582
|
+
'action_name': 'do_63',
|
583
|
+
'inputs': [],
|
584
|
+
'outputs': ['<(PRODUCT_DIR)/generated_63.h'],
|
585
|
+
'action': [
|
586
|
+
'touch',
|
587
|
+
'<(PRODUCT_DIR)/generated_63.h',
|
588
|
+
],
|
589
|
+
},
|
590
|
+
{
|
591
|
+
'action_name': 'do_64',
|
592
|
+
'inputs': [],
|
593
|
+
'outputs': ['<(PRODUCT_DIR)/generated_64.h'],
|
594
|
+
'action': [
|
595
|
+
'touch',
|
596
|
+
'<(PRODUCT_DIR)/generated_64.h',
|
597
|
+
],
|
598
|
+
},
|
599
|
+
{
|
600
|
+
'action_name': 'do_65',
|
601
|
+
'inputs': [],
|
602
|
+
'outputs': ['<(PRODUCT_DIR)/generated_65.h'],
|
603
|
+
'action': [
|
604
|
+
'touch',
|
605
|
+
'<(PRODUCT_DIR)/generated_65.h',
|
606
|
+
],
|
607
|
+
},
|
608
|
+
{
|
609
|
+
'action_name': 'do_66',
|
610
|
+
'inputs': [],
|
611
|
+
'outputs': ['<(PRODUCT_DIR)/generated_66.h'],
|
612
|
+
'action': [
|
613
|
+
'touch',
|
614
|
+
'<(PRODUCT_DIR)/generated_66.h',
|
615
|
+
],
|
616
|
+
},
|
617
|
+
{
|
618
|
+
'action_name': 'do_67',
|
619
|
+
'inputs': [],
|
620
|
+
'outputs': ['<(PRODUCT_DIR)/generated_67.h'],
|
621
|
+
'action': [
|
622
|
+
'touch',
|
623
|
+
'<(PRODUCT_DIR)/generated_67.h',
|
624
|
+
],
|
625
|
+
},
|
626
|
+
{
|
627
|
+
'action_name': 'do_68',
|
628
|
+
'inputs': [],
|
629
|
+
'outputs': ['<(PRODUCT_DIR)/generated_68.h'],
|
630
|
+
'action': [
|
631
|
+
'touch',
|
632
|
+
'<(PRODUCT_DIR)/generated_68.h',
|
633
|
+
],
|
634
|
+
},
|
635
|
+
{
|
636
|
+
'action_name': 'do_69',
|
637
|
+
'inputs': [],
|
638
|
+
'outputs': ['<(PRODUCT_DIR)/generated_69.h'],
|
639
|
+
'action': [
|
640
|
+
'touch',
|
641
|
+
'<(PRODUCT_DIR)/generated_69.h',
|
642
|
+
],
|
643
|
+
},
|
644
|
+
{
|
645
|
+
'action_name': 'do_70',
|
646
|
+
'inputs': [],
|
647
|
+
'outputs': ['<(PRODUCT_DIR)/generated_70.h'],
|
648
|
+
'action': [
|
649
|
+
'touch',
|
650
|
+
'<(PRODUCT_DIR)/generated_70.h',
|
651
|
+
],
|
652
|
+
},
|
653
|
+
{
|
654
|
+
'action_name': 'do_71',
|
655
|
+
'inputs': [],
|
656
|
+
'outputs': ['<(PRODUCT_DIR)/generated_71.h'],
|
657
|
+
'action': [
|
658
|
+
'touch',
|
659
|
+
'<(PRODUCT_DIR)/generated_71.h',
|
660
|
+
],
|
661
|
+
},
|
662
|
+
{
|
663
|
+
'action_name': 'do_72',
|
664
|
+
'inputs': [],
|
665
|
+
'outputs': ['<(PRODUCT_DIR)/generated_72.h'],
|
666
|
+
'action': [
|
667
|
+
'touch',
|
668
|
+
'<(PRODUCT_DIR)/generated_72.h',
|
669
|
+
],
|
670
|
+
},
|
671
|
+
{
|
672
|
+
'action_name': 'do_73',
|
673
|
+
'inputs': [],
|
674
|
+
'outputs': ['<(PRODUCT_DIR)/generated_73.h'],
|
675
|
+
'action': [
|
676
|
+
'touch',
|
677
|
+
'<(PRODUCT_DIR)/generated_73.h',
|
678
|
+
],
|
679
|
+
},
|
680
|
+
{
|
681
|
+
'action_name': 'do_74',
|
682
|
+
'inputs': [],
|
683
|
+
'outputs': ['<(PRODUCT_DIR)/generated_74.h'],
|
684
|
+
'action': [
|
685
|
+
'touch',
|
686
|
+
'<(PRODUCT_DIR)/generated_74.h',
|
687
|
+
],
|
688
|
+
},
|
689
|
+
{
|
690
|
+
'action_name': 'do_75',
|
691
|
+
'inputs': [],
|
692
|
+
'outputs': ['<(PRODUCT_DIR)/generated_75.h'],
|
693
|
+
'action': [
|
694
|
+
'touch',
|
695
|
+
'<(PRODUCT_DIR)/generated_75.h',
|
696
|
+
],
|
697
|
+
},
|
698
|
+
{
|
699
|
+
'action_name': 'do_76',
|
700
|
+
'inputs': [],
|
701
|
+
'outputs': ['<(PRODUCT_DIR)/generated_76.h'],
|
702
|
+
'action': [
|
703
|
+
'touch',
|
704
|
+
'<(PRODUCT_DIR)/generated_76.h',
|
705
|
+
],
|
706
|
+
},
|
707
|
+
{
|
708
|
+
'action_name': 'do_77',
|
709
|
+
'inputs': [],
|
710
|
+
'outputs': ['<(PRODUCT_DIR)/generated_77.h'],
|
711
|
+
'action': [
|
712
|
+
'touch',
|
713
|
+
'<(PRODUCT_DIR)/generated_77.h',
|
714
|
+
],
|
715
|
+
},
|
716
|
+
{
|
717
|
+
'action_name': 'do_78',
|
718
|
+
'inputs': [],
|
719
|
+
'outputs': ['<(PRODUCT_DIR)/generated_78.h'],
|
720
|
+
'action': [
|
721
|
+
'touch',
|
722
|
+
'<(PRODUCT_DIR)/generated_78.h',
|
723
|
+
],
|
724
|
+
},
|
725
|
+
{
|
726
|
+
'action_name': 'do_79',
|
727
|
+
'inputs': [],
|
728
|
+
'outputs': ['<(PRODUCT_DIR)/generated_79.h'],
|
729
|
+
'action': [
|
730
|
+
'touch',
|
731
|
+
'<(PRODUCT_DIR)/generated_79.h',
|
732
|
+
],
|
733
|
+
},
|
734
|
+
{
|
735
|
+
'action_name': 'do_80',
|
736
|
+
'inputs': [],
|
737
|
+
'outputs': ['<(PRODUCT_DIR)/generated_80.h'],
|
738
|
+
'action': [
|
739
|
+
'touch',
|
740
|
+
'<(PRODUCT_DIR)/generated_80.h',
|
741
|
+
],
|
742
|
+
},
|
743
|
+
{
|
744
|
+
'action_name': 'do_81',
|
745
|
+
'inputs': [],
|
746
|
+
'outputs': ['<(PRODUCT_DIR)/generated_81.h'],
|
747
|
+
'action': [
|
748
|
+
'touch',
|
749
|
+
'<(PRODUCT_DIR)/generated_81.h',
|
750
|
+
],
|
751
|
+
},
|
752
|
+
{
|
753
|
+
'action_name': 'do_82',
|
754
|
+
'inputs': [],
|
755
|
+
'outputs': ['<(PRODUCT_DIR)/generated_82.h'],
|
756
|
+
'action': [
|
757
|
+
'touch',
|
758
|
+
'<(PRODUCT_DIR)/generated_82.h',
|
759
|
+
],
|
760
|
+
},
|
761
|
+
{
|
762
|
+
'action_name': 'do_83',
|
763
|
+
'inputs': [],
|
764
|
+
'outputs': ['<(PRODUCT_DIR)/generated_83.h'],
|
765
|
+
'action': [
|
766
|
+
'touch',
|
767
|
+
'<(PRODUCT_DIR)/generated_83.h',
|
768
|
+
],
|
769
|
+
},
|
770
|
+
{
|
771
|
+
'action_name': 'do_84',
|
772
|
+
'inputs': [],
|
773
|
+
'outputs': ['<(PRODUCT_DIR)/generated_84.h'],
|
774
|
+
'action': [
|
775
|
+
'touch',
|
776
|
+
'<(PRODUCT_DIR)/generated_84.h',
|
777
|
+
],
|
778
|
+
},
|
779
|
+
{
|
780
|
+
'action_name': 'do_85',
|
781
|
+
'inputs': [],
|
782
|
+
'outputs': ['<(PRODUCT_DIR)/generated_85.h'],
|
783
|
+
'action': [
|
784
|
+
'touch',
|
785
|
+
'<(PRODUCT_DIR)/generated_85.h',
|
786
|
+
],
|
787
|
+
},
|
788
|
+
{
|
789
|
+
'action_name': 'do_86',
|
790
|
+
'inputs': [],
|
791
|
+
'outputs': ['<(PRODUCT_DIR)/generated_86.h'],
|
792
|
+
'action': [
|
793
|
+
'touch',
|
794
|
+
'<(PRODUCT_DIR)/generated_86.h',
|
795
|
+
],
|
796
|
+
},
|
797
|
+
{
|
798
|
+
'action_name': 'do_87',
|
799
|
+
'inputs': [],
|
800
|
+
'outputs': ['<(PRODUCT_DIR)/generated_87.h'],
|
801
|
+
'action': [
|
802
|
+
'touch',
|
803
|
+
'<(PRODUCT_DIR)/generated_87.h',
|
804
|
+
],
|
805
|
+
},
|
806
|
+
{
|
807
|
+
'action_name': 'do_88',
|
808
|
+
'inputs': [],
|
809
|
+
'outputs': ['<(PRODUCT_DIR)/generated_88.h'],
|
810
|
+
'action': [
|
811
|
+
'touch',
|
812
|
+
'<(PRODUCT_DIR)/generated_88.h',
|
813
|
+
],
|
814
|
+
},
|
815
|
+
{
|
816
|
+
'action_name': 'do_89',
|
817
|
+
'inputs': [],
|
818
|
+
'outputs': ['<(PRODUCT_DIR)/generated_89.h'],
|
819
|
+
'action': [
|
820
|
+
'touch',
|
821
|
+
'<(PRODUCT_DIR)/generated_89.h',
|
822
|
+
],
|
823
|
+
},
|
824
|
+
{
|
825
|
+
'action_name': 'do_90',
|
826
|
+
'inputs': [],
|
827
|
+
'outputs': ['<(PRODUCT_DIR)/generated_90.h'],
|
828
|
+
'action': [
|
829
|
+
'touch',
|
830
|
+
'<(PRODUCT_DIR)/generated_90.h',
|
831
|
+
],
|
832
|
+
},
|
833
|
+
{
|
834
|
+
'action_name': 'do_91',
|
835
|
+
'inputs': [],
|
836
|
+
'outputs': ['<(PRODUCT_DIR)/generated_91.h'],
|
837
|
+
'action': [
|
838
|
+
'touch',
|
839
|
+
'<(PRODUCT_DIR)/generated_91.h',
|
840
|
+
],
|
841
|
+
},
|
842
|
+
{
|
843
|
+
'action_name': 'do_92',
|
844
|
+
'inputs': [],
|
845
|
+
'outputs': ['<(PRODUCT_DIR)/generated_92.h'],
|
846
|
+
'action': [
|
847
|
+
'touch',
|
848
|
+
'<(PRODUCT_DIR)/generated_92.h',
|
849
|
+
],
|
850
|
+
},
|
851
|
+
{
|
852
|
+
'action_name': 'do_93',
|
853
|
+
'inputs': [],
|
854
|
+
'outputs': ['<(PRODUCT_DIR)/generated_93.h'],
|
855
|
+
'action': [
|
856
|
+
'touch',
|
857
|
+
'<(PRODUCT_DIR)/generated_93.h',
|
858
|
+
],
|
859
|
+
},
|
860
|
+
{
|
861
|
+
'action_name': 'do_94',
|
862
|
+
'inputs': [],
|
863
|
+
'outputs': ['<(PRODUCT_DIR)/generated_94.h'],
|
864
|
+
'action': [
|
865
|
+
'touch',
|
866
|
+
'<(PRODUCT_DIR)/generated_94.h',
|
867
|
+
],
|
868
|
+
},
|
869
|
+
{
|
870
|
+
'action_name': 'do_95',
|
871
|
+
'inputs': [],
|
872
|
+
'outputs': ['<(PRODUCT_DIR)/generated_95.h'],
|
873
|
+
'action': [
|
874
|
+
'touch',
|
875
|
+
'<(PRODUCT_DIR)/generated_95.h',
|
876
|
+
],
|
877
|
+
},
|
878
|
+
{
|
879
|
+
'action_name': 'do_96',
|
880
|
+
'inputs': [],
|
881
|
+
'outputs': ['<(PRODUCT_DIR)/generated_96.h'],
|
882
|
+
'action': [
|
883
|
+
'touch',
|
884
|
+
'<(PRODUCT_DIR)/generated_96.h',
|
885
|
+
],
|
886
|
+
},
|
887
|
+
{
|
888
|
+
'action_name': 'do_97',
|
889
|
+
'inputs': [],
|
890
|
+
'outputs': ['<(PRODUCT_DIR)/generated_97.h'],
|
891
|
+
'action': [
|
892
|
+
'touch',
|
893
|
+
'<(PRODUCT_DIR)/generated_97.h',
|
894
|
+
],
|
895
|
+
},
|
896
|
+
{
|
897
|
+
'action_name': 'do_98',
|
898
|
+
'inputs': [],
|
899
|
+
'outputs': ['<(PRODUCT_DIR)/generated_98.h'],
|
900
|
+
'action': [
|
901
|
+
'touch',
|
902
|
+
'<(PRODUCT_DIR)/generated_98.h',
|
903
|
+
],
|
904
|
+
},
|
905
|
+
{
|
906
|
+
'action_name': 'do_99',
|
907
|
+
'inputs': [],
|
908
|
+
'outputs': ['<(PRODUCT_DIR)/generated_99.h'],
|
909
|
+
'action': [
|
910
|
+
'touch',
|
911
|
+
'<(PRODUCT_DIR)/generated_99.h',
|
912
|
+
],
|
913
|
+
},
|
914
|
+
{
|
915
|
+
'action_name': 'do_100',
|
916
|
+
'inputs': [],
|
917
|
+
'outputs': ['<(PRODUCT_DIR)/generated_100.h'],
|
918
|
+
'action': [
|
919
|
+
'touch',
|
920
|
+
'<(PRODUCT_DIR)/generated_100.h',
|
921
|
+
],
|
922
|
+
},
|
923
|
+
{
|
924
|
+
'action_name': 'do_101',
|
925
|
+
'inputs': [],
|
926
|
+
'outputs': ['<(PRODUCT_DIR)/generated_101.h'],
|
927
|
+
'action': [
|
928
|
+
'touch',
|
929
|
+
'<(PRODUCT_DIR)/generated_101.h',
|
930
|
+
],
|
931
|
+
},
|
932
|
+
{
|
933
|
+
'action_name': 'do_102',
|
934
|
+
'inputs': [],
|
935
|
+
'outputs': ['<(PRODUCT_DIR)/generated_102.h'],
|
936
|
+
'action': [
|
937
|
+
'touch',
|
938
|
+
'<(PRODUCT_DIR)/generated_102.h',
|
939
|
+
],
|
940
|
+
},
|
941
|
+
{
|
942
|
+
'action_name': 'do_103',
|
943
|
+
'inputs': [],
|
944
|
+
'outputs': ['<(PRODUCT_DIR)/generated_103.h'],
|
945
|
+
'action': [
|
946
|
+
'touch',
|
947
|
+
'<(PRODUCT_DIR)/generated_103.h',
|
948
|
+
],
|
949
|
+
},
|
950
|
+
{
|
951
|
+
'action_name': 'do_104',
|
952
|
+
'inputs': [],
|
953
|
+
'outputs': ['<(PRODUCT_DIR)/generated_104.h'],
|
954
|
+
'action': [
|
955
|
+
'touch',
|
956
|
+
'<(PRODUCT_DIR)/generated_104.h',
|
957
|
+
],
|
958
|
+
},
|
959
|
+
{
|
960
|
+
'action_name': 'do_105',
|
961
|
+
'inputs': [],
|
962
|
+
'outputs': ['<(PRODUCT_DIR)/generated_105.h'],
|
963
|
+
'action': [
|
964
|
+
'touch',
|
965
|
+
'<(PRODUCT_DIR)/generated_105.h',
|
966
|
+
],
|
967
|
+
},
|
968
|
+
{
|
969
|
+
'action_name': 'do_106',
|
970
|
+
'inputs': [],
|
971
|
+
'outputs': ['<(PRODUCT_DIR)/generated_106.h'],
|
972
|
+
'action': [
|
973
|
+
'touch',
|
974
|
+
'<(PRODUCT_DIR)/generated_106.h',
|
975
|
+
],
|
976
|
+
},
|
977
|
+
{
|
978
|
+
'action_name': 'do_107',
|
979
|
+
'inputs': [],
|
980
|
+
'outputs': ['<(PRODUCT_DIR)/generated_107.h'],
|
981
|
+
'action': [
|
982
|
+
'touch',
|
983
|
+
'<(PRODUCT_DIR)/generated_107.h',
|
984
|
+
],
|
985
|
+
},
|
986
|
+
{
|
987
|
+
'action_name': 'do_108',
|
988
|
+
'inputs': [],
|
989
|
+
'outputs': ['<(PRODUCT_DIR)/generated_108.h'],
|
990
|
+
'action': [
|
991
|
+
'touch',
|
992
|
+
'<(PRODUCT_DIR)/generated_108.h',
|
993
|
+
],
|
994
|
+
},
|
995
|
+
{
|
996
|
+
'action_name': 'do_109',
|
997
|
+
'inputs': [],
|
998
|
+
'outputs': ['<(PRODUCT_DIR)/generated_109.h'],
|
999
|
+
'action': [
|
1000
|
+
'touch',
|
1001
|
+
'<(PRODUCT_DIR)/generated_109.h',
|
1002
|
+
],
|
1003
|
+
},
|
1004
|
+
{
|
1005
|
+
'action_name': 'do_110',
|
1006
|
+
'inputs': [],
|
1007
|
+
'outputs': ['<(PRODUCT_DIR)/generated_110.h'],
|
1008
|
+
'action': [
|
1009
|
+
'touch',
|
1010
|
+
'<(PRODUCT_DIR)/generated_110.h',
|
1011
|
+
],
|
1012
|
+
},
|
1013
|
+
{
|
1014
|
+
'action_name': 'do_111',
|
1015
|
+
'inputs': [],
|
1016
|
+
'outputs': ['<(PRODUCT_DIR)/generated_111.h'],
|
1017
|
+
'action': [
|
1018
|
+
'touch',
|
1019
|
+
'<(PRODUCT_DIR)/generated_111.h',
|
1020
|
+
],
|
1021
|
+
},
|
1022
|
+
{
|
1023
|
+
'action_name': 'do_112',
|
1024
|
+
'inputs': [],
|
1025
|
+
'outputs': ['<(PRODUCT_DIR)/generated_112.h'],
|
1026
|
+
'action': [
|
1027
|
+
'touch',
|
1028
|
+
'<(PRODUCT_DIR)/generated_112.h',
|
1029
|
+
],
|
1030
|
+
},
|
1031
|
+
{
|
1032
|
+
'action_name': 'do_113',
|
1033
|
+
'inputs': [],
|
1034
|
+
'outputs': ['<(PRODUCT_DIR)/generated_113.h'],
|
1035
|
+
'action': [
|
1036
|
+
'touch',
|
1037
|
+
'<(PRODUCT_DIR)/generated_113.h',
|
1038
|
+
],
|
1039
|
+
},
|
1040
|
+
{
|
1041
|
+
'action_name': 'do_114',
|
1042
|
+
'inputs': [],
|
1043
|
+
'outputs': ['<(PRODUCT_DIR)/generated_114.h'],
|
1044
|
+
'action': [
|
1045
|
+
'touch',
|
1046
|
+
'<(PRODUCT_DIR)/generated_114.h',
|
1047
|
+
],
|
1048
|
+
},
|
1049
|
+
{
|
1050
|
+
'action_name': 'do_115',
|
1051
|
+
'inputs': [],
|
1052
|
+
'outputs': ['<(PRODUCT_DIR)/generated_115.h'],
|
1053
|
+
'action': [
|
1054
|
+
'touch',
|
1055
|
+
'<(PRODUCT_DIR)/generated_115.h',
|
1056
|
+
],
|
1057
|
+
},
|
1058
|
+
{
|
1059
|
+
'action_name': 'do_116',
|
1060
|
+
'inputs': [],
|
1061
|
+
'outputs': ['<(PRODUCT_DIR)/generated_116.h'],
|
1062
|
+
'action': [
|
1063
|
+
'touch',
|
1064
|
+
'<(PRODUCT_DIR)/generated_116.h',
|
1065
|
+
],
|
1066
|
+
},
|
1067
|
+
{
|
1068
|
+
'action_name': 'do_117',
|
1069
|
+
'inputs': [],
|
1070
|
+
'outputs': ['<(PRODUCT_DIR)/generated_117.h'],
|
1071
|
+
'action': [
|
1072
|
+
'touch',
|
1073
|
+
'<(PRODUCT_DIR)/generated_117.h',
|
1074
|
+
],
|
1075
|
+
},
|
1076
|
+
{
|
1077
|
+
'action_name': 'do_118',
|
1078
|
+
'inputs': [],
|
1079
|
+
'outputs': ['<(PRODUCT_DIR)/generated_118.h'],
|
1080
|
+
'action': [
|
1081
|
+
'touch',
|
1082
|
+
'<(PRODUCT_DIR)/generated_118.h',
|
1083
|
+
],
|
1084
|
+
},
|
1085
|
+
{
|
1086
|
+
'action_name': 'do_119',
|
1087
|
+
'inputs': [],
|
1088
|
+
'outputs': ['<(PRODUCT_DIR)/generated_119.h'],
|
1089
|
+
'action': [
|
1090
|
+
'touch',
|
1091
|
+
'<(PRODUCT_DIR)/generated_119.h',
|
1092
|
+
],
|
1093
|
+
},
|
1094
|
+
{
|
1095
|
+
'action_name': 'do_120',
|
1096
|
+
'inputs': [],
|
1097
|
+
'outputs': ['<(PRODUCT_DIR)/generated_120.h'],
|
1098
|
+
'action': [
|
1099
|
+
'touch',
|
1100
|
+
'<(PRODUCT_DIR)/generated_120.h',
|
1101
|
+
],
|
1102
|
+
},
|
1103
|
+
{
|
1104
|
+
'action_name': 'do_121',
|
1105
|
+
'inputs': [],
|
1106
|
+
'outputs': ['<(PRODUCT_DIR)/generated_121.h'],
|
1107
|
+
'action': [
|
1108
|
+
'touch',
|
1109
|
+
'<(PRODUCT_DIR)/generated_121.h',
|
1110
|
+
],
|
1111
|
+
},
|
1112
|
+
{
|
1113
|
+
'action_name': 'do_122',
|
1114
|
+
'inputs': [],
|
1115
|
+
'outputs': ['<(PRODUCT_DIR)/generated_122.h'],
|
1116
|
+
'action': [
|
1117
|
+
'touch',
|
1118
|
+
'<(PRODUCT_DIR)/generated_122.h',
|
1119
|
+
],
|
1120
|
+
},
|
1121
|
+
{
|
1122
|
+
'action_name': 'do_123',
|
1123
|
+
'inputs': [],
|
1124
|
+
'outputs': ['<(PRODUCT_DIR)/generated_123.h'],
|
1125
|
+
'action': [
|
1126
|
+
'touch',
|
1127
|
+
'<(PRODUCT_DIR)/generated_123.h',
|
1128
|
+
],
|
1129
|
+
},
|
1130
|
+
{
|
1131
|
+
'action_name': 'do_124',
|
1132
|
+
'inputs': [],
|
1133
|
+
'outputs': ['<(PRODUCT_DIR)/generated_124.h'],
|
1134
|
+
'action': [
|
1135
|
+
'touch',
|
1136
|
+
'<(PRODUCT_DIR)/generated_124.h',
|
1137
|
+
],
|
1138
|
+
},
|
1139
|
+
{
|
1140
|
+
'action_name': 'do_125',
|
1141
|
+
'inputs': [],
|
1142
|
+
'outputs': ['<(PRODUCT_DIR)/generated_125.h'],
|
1143
|
+
'action': [
|
1144
|
+
'touch',
|
1145
|
+
'<(PRODUCT_DIR)/generated_125.h',
|
1146
|
+
],
|
1147
|
+
},
|
1148
|
+
{
|
1149
|
+
'action_name': 'do_126',
|
1150
|
+
'inputs': [],
|
1151
|
+
'outputs': ['<(PRODUCT_DIR)/generated_126.h'],
|
1152
|
+
'action': [
|
1153
|
+
'touch',
|
1154
|
+
'<(PRODUCT_DIR)/generated_126.h',
|
1155
|
+
],
|
1156
|
+
},
|
1157
|
+
{
|
1158
|
+
'action_name': 'do_127',
|
1159
|
+
'inputs': [],
|
1160
|
+
'outputs': ['<(PRODUCT_DIR)/generated_127.h'],
|
1161
|
+
'action': [
|
1162
|
+
'touch',
|
1163
|
+
'<(PRODUCT_DIR)/generated_127.h',
|
1164
|
+
],
|
1165
|
+
},
|
1166
|
+
{
|
1167
|
+
'action_name': 'do_128',
|
1168
|
+
'inputs': [],
|
1169
|
+
'outputs': ['<(PRODUCT_DIR)/generated_128.h'],
|
1170
|
+
'action': [
|
1171
|
+
'touch',
|
1172
|
+
'<(PRODUCT_DIR)/generated_128.h',
|
1173
|
+
],
|
1174
|
+
},
|
1175
|
+
{
|
1176
|
+
'action_name': 'do_129',
|
1177
|
+
'inputs': [],
|
1178
|
+
'outputs': ['<(PRODUCT_DIR)/generated_129.h'],
|
1179
|
+
'action': [
|
1180
|
+
'touch',
|
1181
|
+
'<(PRODUCT_DIR)/generated_129.h',
|
1182
|
+
],
|
1183
|
+
},
|
1184
|
+
{
|
1185
|
+
'action_name': 'do_130',
|
1186
|
+
'inputs': [],
|
1187
|
+
'outputs': ['<(PRODUCT_DIR)/generated_130.h'],
|
1188
|
+
'action': [
|
1189
|
+
'touch',
|
1190
|
+
'<(PRODUCT_DIR)/generated_130.h',
|
1191
|
+
],
|
1192
|
+
},
|
1193
|
+
{
|
1194
|
+
'action_name': 'do_131',
|
1195
|
+
'inputs': [],
|
1196
|
+
'outputs': ['<(PRODUCT_DIR)/generated_131.h'],
|
1197
|
+
'action': [
|
1198
|
+
'touch',
|
1199
|
+
'<(PRODUCT_DIR)/generated_131.h',
|
1200
|
+
],
|
1201
|
+
},
|
1202
|
+
{
|
1203
|
+
'action_name': 'do_132',
|
1204
|
+
'inputs': [],
|
1205
|
+
'outputs': ['<(PRODUCT_DIR)/generated_132.h'],
|
1206
|
+
'action': [
|
1207
|
+
'touch',
|
1208
|
+
'<(PRODUCT_DIR)/generated_132.h',
|
1209
|
+
],
|
1210
|
+
},
|
1211
|
+
{
|
1212
|
+
'action_name': 'do_133',
|
1213
|
+
'inputs': [],
|
1214
|
+
'outputs': ['<(PRODUCT_DIR)/generated_133.h'],
|
1215
|
+
'action': [
|
1216
|
+
'touch',
|
1217
|
+
'<(PRODUCT_DIR)/generated_133.h',
|
1218
|
+
],
|
1219
|
+
},
|
1220
|
+
{
|
1221
|
+
'action_name': 'do_134',
|
1222
|
+
'inputs': [],
|
1223
|
+
'outputs': ['<(PRODUCT_DIR)/generated_134.h'],
|
1224
|
+
'action': [
|
1225
|
+
'touch',
|
1226
|
+
'<(PRODUCT_DIR)/generated_134.h',
|
1227
|
+
],
|
1228
|
+
},
|
1229
|
+
{
|
1230
|
+
'action_name': 'do_135',
|
1231
|
+
'inputs': [],
|
1232
|
+
'outputs': ['<(PRODUCT_DIR)/generated_135.h'],
|
1233
|
+
'action': [
|
1234
|
+
'touch',
|
1235
|
+
'<(PRODUCT_DIR)/generated_135.h',
|
1236
|
+
],
|
1237
|
+
},
|
1238
|
+
{
|
1239
|
+
'action_name': 'do_136',
|
1240
|
+
'inputs': [],
|
1241
|
+
'outputs': ['<(PRODUCT_DIR)/generated_136.h'],
|
1242
|
+
'action': [
|
1243
|
+
'touch',
|
1244
|
+
'<(PRODUCT_DIR)/generated_136.h',
|
1245
|
+
],
|
1246
|
+
},
|
1247
|
+
{
|
1248
|
+
'action_name': 'do_137',
|
1249
|
+
'inputs': [],
|
1250
|
+
'outputs': ['<(PRODUCT_DIR)/generated_137.h'],
|
1251
|
+
'action': [
|
1252
|
+
'touch',
|
1253
|
+
'<(PRODUCT_DIR)/generated_137.h',
|
1254
|
+
],
|
1255
|
+
},
|
1256
|
+
{
|
1257
|
+
'action_name': 'do_138',
|
1258
|
+
'inputs': [],
|
1259
|
+
'outputs': ['<(PRODUCT_DIR)/generated_138.h'],
|
1260
|
+
'action': [
|
1261
|
+
'touch',
|
1262
|
+
'<(PRODUCT_DIR)/generated_138.h',
|
1263
|
+
],
|
1264
|
+
},
|
1265
|
+
{
|
1266
|
+
'action_name': 'do_139',
|
1267
|
+
'inputs': [],
|
1268
|
+
'outputs': ['<(PRODUCT_DIR)/generated_139.h'],
|
1269
|
+
'action': [
|
1270
|
+
'touch',
|
1271
|
+
'<(PRODUCT_DIR)/generated_139.h',
|
1272
|
+
],
|
1273
|
+
},
|
1274
|
+
{
|
1275
|
+
'action_name': 'do_140',
|
1276
|
+
'inputs': [],
|
1277
|
+
'outputs': ['<(PRODUCT_DIR)/generated_140.h'],
|
1278
|
+
'action': [
|
1279
|
+
'touch',
|
1280
|
+
'<(PRODUCT_DIR)/generated_140.h',
|
1281
|
+
],
|
1282
|
+
},
|
1283
|
+
{
|
1284
|
+
'action_name': 'do_141',
|
1285
|
+
'inputs': [],
|
1286
|
+
'outputs': ['<(PRODUCT_DIR)/generated_141.h'],
|
1287
|
+
'action': [
|
1288
|
+
'touch',
|
1289
|
+
'<(PRODUCT_DIR)/generated_141.h',
|
1290
|
+
],
|
1291
|
+
},
|
1292
|
+
{
|
1293
|
+
'action_name': 'do_142',
|
1294
|
+
'inputs': [],
|
1295
|
+
'outputs': ['<(PRODUCT_DIR)/generated_142.h'],
|
1296
|
+
'action': [
|
1297
|
+
'touch',
|
1298
|
+
'<(PRODUCT_DIR)/generated_142.h',
|
1299
|
+
],
|
1300
|
+
},
|
1301
|
+
{
|
1302
|
+
'action_name': 'do_143',
|
1303
|
+
'inputs': [],
|
1304
|
+
'outputs': ['<(PRODUCT_DIR)/generated_143.h'],
|
1305
|
+
'action': [
|
1306
|
+
'touch',
|
1307
|
+
'<(PRODUCT_DIR)/generated_143.h',
|
1308
|
+
],
|
1309
|
+
},
|
1310
|
+
{
|
1311
|
+
'action_name': 'do_144',
|
1312
|
+
'inputs': [],
|
1313
|
+
'outputs': ['<(PRODUCT_DIR)/generated_144.h'],
|
1314
|
+
'action': [
|
1315
|
+
'touch',
|
1316
|
+
'<(PRODUCT_DIR)/generated_144.h',
|
1317
|
+
],
|
1318
|
+
},
|
1319
|
+
{
|
1320
|
+
'action_name': 'do_145',
|
1321
|
+
'inputs': [],
|
1322
|
+
'outputs': ['<(PRODUCT_DIR)/generated_145.h'],
|
1323
|
+
'action': [
|
1324
|
+
'touch',
|
1325
|
+
'<(PRODUCT_DIR)/generated_145.h',
|
1326
|
+
],
|
1327
|
+
},
|
1328
|
+
{
|
1329
|
+
'action_name': 'do_146',
|
1330
|
+
'inputs': [],
|
1331
|
+
'outputs': ['<(PRODUCT_DIR)/generated_146.h'],
|
1332
|
+
'action': [
|
1333
|
+
'touch',
|
1334
|
+
'<(PRODUCT_DIR)/generated_146.h',
|
1335
|
+
],
|
1336
|
+
},
|
1337
|
+
{
|
1338
|
+
'action_name': 'do_147',
|
1339
|
+
'inputs': [],
|
1340
|
+
'outputs': ['<(PRODUCT_DIR)/generated_147.h'],
|
1341
|
+
'action': [
|
1342
|
+
'touch',
|
1343
|
+
'<(PRODUCT_DIR)/generated_147.h',
|
1344
|
+
],
|
1345
|
+
},
|
1346
|
+
{
|
1347
|
+
'action_name': 'do_148',
|
1348
|
+
'inputs': [],
|
1349
|
+
'outputs': ['<(PRODUCT_DIR)/generated_148.h'],
|
1350
|
+
'action': [
|
1351
|
+
'touch',
|
1352
|
+
'<(PRODUCT_DIR)/generated_148.h',
|
1353
|
+
],
|
1354
|
+
},
|
1355
|
+
{
|
1356
|
+
'action_name': 'do_149',
|
1357
|
+
'inputs': [],
|
1358
|
+
'outputs': ['<(PRODUCT_DIR)/generated_149.h'],
|
1359
|
+
'action': [
|
1360
|
+
'touch',
|
1361
|
+
'<(PRODUCT_DIR)/generated_149.h',
|
1362
|
+
],
|
1363
|
+
},
|
1364
|
+
{
|
1365
|
+
'action_name': 'do_150',
|
1366
|
+
'inputs': [],
|
1367
|
+
'outputs': ['<(PRODUCT_DIR)/generated_150.h'],
|
1368
|
+
'action': [
|
1369
|
+
'touch',
|
1370
|
+
'<(PRODUCT_DIR)/generated_150.h',
|
1371
|
+
],
|
1372
|
+
},
|
1373
|
+
{
|
1374
|
+
'action_name': 'do_151',
|
1375
|
+
'inputs': [],
|
1376
|
+
'outputs': ['<(PRODUCT_DIR)/generated_151.h'],
|
1377
|
+
'action': [
|
1378
|
+
'touch',
|
1379
|
+
'<(PRODUCT_DIR)/generated_151.h',
|
1380
|
+
],
|
1381
|
+
},
|
1382
|
+
{
|
1383
|
+
'action_name': 'do_152',
|
1384
|
+
'inputs': [],
|
1385
|
+
'outputs': ['<(PRODUCT_DIR)/generated_152.h'],
|
1386
|
+
'action': [
|
1387
|
+
'touch',
|
1388
|
+
'<(PRODUCT_DIR)/generated_152.h',
|
1389
|
+
],
|
1390
|
+
},
|
1391
|
+
{
|
1392
|
+
'action_name': 'do_153',
|
1393
|
+
'inputs': [],
|
1394
|
+
'outputs': ['<(PRODUCT_DIR)/generated_153.h'],
|
1395
|
+
'action': [
|
1396
|
+
'touch',
|
1397
|
+
'<(PRODUCT_DIR)/generated_153.h',
|
1398
|
+
],
|
1399
|
+
},
|
1400
|
+
{
|
1401
|
+
'action_name': 'do_154',
|
1402
|
+
'inputs': [],
|
1403
|
+
'outputs': ['<(PRODUCT_DIR)/generated_154.h'],
|
1404
|
+
'action': [
|
1405
|
+
'touch',
|
1406
|
+
'<(PRODUCT_DIR)/generated_154.h',
|
1407
|
+
],
|
1408
|
+
},
|
1409
|
+
{
|
1410
|
+
'action_name': 'do_155',
|
1411
|
+
'inputs': [],
|
1412
|
+
'outputs': ['<(PRODUCT_DIR)/generated_155.h'],
|
1413
|
+
'action': [
|
1414
|
+
'touch',
|
1415
|
+
'<(PRODUCT_DIR)/generated_155.h',
|
1416
|
+
],
|
1417
|
+
},
|
1418
|
+
{
|
1419
|
+
'action_name': 'do_156',
|
1420
|
+
'inputs': [],
|
1421
|
+
'outputs': ['<(PRODUCT_DIR)/generated_156.h'],
|
1422
|
+
'action': [
|
1423
|
+
'touch',
|
1424
|
+
'<(PRODUCT_DIR)/generated_156.h',
|
1425
|
+
],
|
1426
|
+
},
|
1427
|
+
{
|
1428
|
+
'action_name': 'do_157',
|
1429
|
+
'inputs': [],
|
1430
|
+
'outputs': ['<(PRODUCT_DIR)/generated_157.h'],
|
1431
|
+
'action': [
|
1432
|
+
'touch',
|
1433
|
+
'<(PRODUCT_DIR)/generated_157.h',
|
1434
|
+
],
|
1435
|
+
},
|
1436
|
+
{
|
1437
|
+
'action_name': 'do_158',
|
1438
|
+
'inputs': [],
|
1439
|
+
'outputs': ['<(PRODUCT_DIR)/generated_158.h'],
|
1440
|
+
'action': [
|
1441
|
+
'touch',
|
1442
|
+
'<(PRODUCT_DIR)/generated_158.h',
|
1443
|
+
],
|
1444
|
+
},
|
1445
|
+
{
|
1446
|
+
'action_name': 'do_159',
|
1447
|
+
'inputs': [],
|
1448
|
+
'outputs': ['<(PRODUCT_DIR)/generated_159.h'],
|
1449
|
+
'action': [
|
1450
|
+
'touch',
|
1451
|
+
'<(PRODUCT_DIR)/generated_159.h',
|
1452
|
+
],
|
1453
|
+
},
|
1454
|
+
{
|
1455
|
+
'action_name': 'do_160',
|
1456
|
+
'inputs': [],
|
1457
|
+
'outputs': ['<(PRODUCT_DIR)/generated_160.h'],
|
1458
|
+
'action': [
|
1459
|
+
'touch',
|
1460
|
+
'<(PRODUCT_DIR)/generated_160.h',
|
1461
|
+
],
|
1462
|
+
},
|
1463
|
+
{
|
1464
|
+
'action_name': 'do_161',
|
1465
|
+
'inputs': [],
|
1466
|
+
'outputs': ['<(PRODUCT_DIR)/generated_161.h'],
|
1467
|
+
'action': [
|
1468
|
+
'touch',
|
1469
|
+
'<(PRODUCT_DIR)/generated_161.h',
|
1470
|
+
],
|
1471
|
+
},
|
1472
|
+
{
|
1473
|
+
'action_name': 'do_162',
|
1474
|
+
'inputs': [],
|
1475
|
+
'outputs': ['<(PRODUCT_DIR)/generated_162.h'],
|
1476
|
+
'action': [
|
1477
|
+
'touch',
|
1478
|
+
'<(PRODUCT_DIR)/generated_162.h',
|
1479
|
+
],
|
1480
|
+
},
|
1481
|
+
{
|
1482
|
+
'action_name': 'do_163',
|
1483
|
+
'inputs': [],
|
1484
|
+
'outputs': ['<(PRODUCT_DIR)/generated_163.h'],
|
1485
|
+
'action': [
|
1486
|
+
'touch',
|
1487
|
+
'<(PRODUCT_DIR)/generated_163.h',
|
1488
|
+
],
|
1489
|
+
},
|
1490
|
+
{
|
1491
|
+
'action_name': 'do_164',
|
1492
|
+
'inputs': [],
|
1493
|
+
'outputs': ['<(PRODUCT_DIR)/generated_164.h'],
|
1494
|
+
'action': [
|
1495
|
+
'touch',
|
1496
|
+
'<(PRODUCT_DIR)/generated_164.h',
|
1497
|
+
],
|
1498
|
+
},
|
1499
|
+
{
|
1500
|
+
'action_name': 'do_165',
|
1501
|
+
'inputs': [],
|
1502
|
+
'outputs': ['<(PRODUCT_DIR)/generated_165.h'],
|
1503
|
+
'action': [
|
1504
|
+
'touch',
|
1505
|
+
'<(PRODUCT_DIR)/generated_165.h',
|
1506
|
+
],
|
1507
|
+
},
|
1508
|
+
{
|
1509
|
+
'action_name': 'do_166',
|
1510
|
+
'inputs': [],
|
1511
|
+
'outputs': ['<(PRODUCT_DIR)/generated_166.h'],
|
1512
|
+
'action': [
|
1513
|
+
'touch',
|
1514
|
+
'<(PRODUCT_DIR)/generated_166.h',
|
1515
|
+
],
|
1516
|
+
},
|
1517
|
+
{
|
1518
|
+
'action_name': 'do_167',
|
1519
|
+
'inputs': [],
|
1520
|
+
'outputs': ['<(PRODUCT_DIR)/generated_167.h'],
|
1521
|
+
'action': [
|
1522
|
+
'touch',
|
1523
|
+
'<(PRODUCT_DIR)/generated_167.h',
|
1524
|
+
],
|
1525
|
+
},
|
1526
|
+
{
|
1527
|
+
'action_name': 'do_168',
|
1528
|
+
'inputs': [],
|
1529
|
+
'outputs': ['<(PRODUCT_DIR)/generated_168.h'],
|
1530
|
+
'action': [
|
1531
|
+
'touch',
|
1532
|
+
'<(PRODUCT_DIR)/generated_168.h',
|
1533
|
+
],
|
1534
|
+
},
|
1535
|
+
{
|
1536
|
+
'action_name': 'do_169',
|
1537
|
+
'inputs': [],
|
1538
|
+
'outputs': ['<(PRODUCT_DIR)/generated_169.h'],
|
1539
|
+
'action': [
|
1540
|
+
'touch',
|
1541
|
+
'<(PRODUCT_DIR)/generated_169.h',
|
1542
|
+
],
|
1543
|
+
},
|
1544
|
+
{
|
1545
|
+
'action_name': 'do_170',
|
1546
|
+
'inputs': [],
|
1547
|
+
'outputs': ['<(PRODUCT_DIR)/generated_170.h'],
|
1548
|
+
'action': [
|
1549
|
+
'touch',
|
1550
|
+
'<(PRODUCT_DIR)/generated_170.h',
|
1551
|
+
],
|
1552
|
+
},
|
1553
|
+
{
|
1554
|
+
'action_name': 'do_171',
|
1555
|
+
'inputs': [],
|
1556
|
+
'outputs': ['<(PRODUCT_DIR)/generated_171.h'],
|
1557
|
+
'action': [
|
1558
|
+
'touch',
|
1559
|
+
'<(PRODUCT_DIR)/generated_171.h',
|
1560
|
+
],
|
1561
|
+
},
|
1562
|
+
{
|
1563
|
+
'action_name': 'do_172',
|
1564
|
+
'inputs': [],
|
1565
|
+
'outputs': ['<(PRODUCT_DIR)/generated_172.h'],
|
1566
|
+
'action': [
|
1567
|
+
'touch',
|
1568
|
+
'<(PRODUCT_DIR)/generated_172.h',
|
1569
|
+
],
|
1570
|
+
},
|
1571
|
+
{
|
1572
|
+
'action_name': 'do_173',
|
1573
|
+
'inputs': [],
|
1574
|
+
'outputs': ['<(PRODUCT_DIR)/generated_173.h'],
|
1575
|
+
'action': [
|
1576
|
+
'touch',
|
1577
|
+
'<(PRODUCT_DIR)/generated_173.h',
|
1578
|
+
],
|
1579
|
+
},
|
1580
|
+
{
|
1581
|
+
'action_name': 'do_174',
|
1582
|
+
'inputs': [],
|
1583
|
+
'outputs': ['<(PRODUCT_DIR)/generated_174.h'],
|
1584
|
+
'action': [
|
1585
|
+
'touch',
|
1586
|
+
'<(PRODUCT_DIR)/generated_174.h',
|
1587
|
+
],
|
1588
|
+
},
|
1589
|
+
{
|
1590
|
+
'action_name': 'do_175',
|
1591
|
+
'inputs': [],
|
1592
|
+
'outputs': ['<(PRODUCT_DIR)/generated_175.h'],
|
1593
|
+
'action': [
|
1594
|
+
'touch',
|
1595
|
+
'<(PRODUCT_DIR)/generated_175.h',
|
1596
|
+
],
|
1597
|
+
},
|
1598
|
+
{
|
1599
|
+
'action_name': 'do_176',
|
1600
|
+
'inputs': [],
|
1601
|
+
'outputs': ['<(PRODUCT_DIR)/generated_176.h'],
|
1602
|
+
'action': [
|
1603
|
+
'touch',
|
1604
|
+
'<(PRODUCT_DIR)/generated_176.h',
|
1605
|
+
],
|
1606
|
+
},
|
1607
|
+
{
|
1608
|
+
'action_name': 'do_177',
|
1609
|
+
'inputs': [],
|
1610
|
+
'outputs': ['<(PRODUCT_DIR)/generated_177.h'],
|
1611
|
+
'action': [
|
1612
|
+
'touch',
|
1613
|
+
'<(PRODUCT_DIR)/generated_177.h',
|
1614
|
+
],
|
1615
|
+
},
|
1616
|
+
{
|
1617
|
+
'action_name': 'do_178',
|
1618
|
+
'inputs': [],
|
1619
|
+
'outputs': ['<(PRODUCT_DIR)/generated_178.h'],
|
1620
|
+
'action': [
|
1621
|
+
'touch',
|
1622
|
+
'<(PRODUCT_DIR)/generated_178.h',
|
1623
|
+
],
|
1624
|
+
},
|
1625
|
+
{
|
1626
|
+
'action_name': 'do_179',
|
1627
|
+
'inputs': [],
|
1628
|
+
'outputs': ['<(PRODUCT_DIR)/generated_179.h'],
|
1629
|
+
'action': [
|
1630
|
+
'touch',
|
1631
|
+
'<(PRODUCT_DIR)/generated_179.h',
|
1632
|
+
],
|
1633
|
+
},
|
1634
|
+
{
|
1635
|
+
'action_name': 'do_180',
|
1636
|
+
'inputs': [],
|
1637
|
+
'outputs': ['<(PRODUCT_DIR)/generated_180.h'],
|
1638
|
+
'action': [
|
1639
|
+
'touch',
|
1640
|
+
'<(PRODUCT_DIR)/generated_180.h',
|
1641
|
+
],
|
1642
|
+
},
|
1643
|
+
{
|
1644
|
+
'action_name': 'do_181',
|
1645
|
+
'inputs': [],
|
1646
|
+
'outputs': ['<(PRODUCT_DIR)/generated_181.h'],
|
1647
|
+
'action': [
|
1648
|
+
'touch',
|
1649
|
+
'<(PRODUCT_DIR)/generated_181.h',
|
1650
|
+
],
|
1651
|
+
},
|
1652
|
+
{
|
1653
|
+
'action_name': 'do_182',
|
1654
|
+
'inputs': [],
|
1655
|
+
'outputs': ['<(PRODUCT_DIR)/generated_182.h'],
|
1656
|
+
'action': [
|
1657
|
+
'touch',
|
1658
|
+
'<(PRODUCT_DIR)/generated_182.h',
|
1659
|
+
],
|
1660
|
+
},
|
1661
|
+
{
|
1662
|
+
'action_name': 'do_183',
|
1663
|
+
'inputs': [],
|
1664
|
+
'outputs': ['<(PRODUCT_DIR)/generated_183.h'],
|
1665
|
+
'action': [
|
1666
|
+
'touch',
|
1667
|
+
'<(PRODUCT_DIR)/generated_183.h',
|
1668
|
+
],
|
1669
|
+
},
|
1670
|
+
{
|
1671
|
+
'action_name': 'do_184',
|
1672
|
+
'inputs': [],
|
1673
|
+
'outputs': ['<(PRODUCT_DIR)/generated_184.h'],
|
1674
|
+
'action': [
|
1675
|
+
'touch',
|
1676
|
+
'<(PRODUCT_DIR)/generated_184.h',
|
1677
|
+
],
|
1678
|
+
},
|
1679
|
+
{
|
1680
|
+
'action_name': 'do_185',
|
1681
|
+
'inputs': [],
|
1682
|
+
'outputs': ['<(PRODUCT_DIR)/generated_185.h'],
|
1683
|
+
'action': [
|
1684
|
+
'touch',
|
1685
|
+
'<(PRODUCT_DIR)/generated_185.h',
|
1686
|
+
],
|
1687
|
+
},
|
1688
|
+
{
|
1689
|
+
'action_name': 'do_186',
|
1690
|
+
'inputs': [],
|
1691
|
+
'outputs': ['<(PRODUCT_DIR)/generated_186.h'],
|
1692
|
+
'action': [
|
1693
|
+
'touch',
|
1694
|
+
'<(PRODUCT_DIR)/generated_186.h',
|
1695
|
+
],
|
1696
|
+
},
|
1697
|
+
{
|
1698
|
+
'action_name': 'do_187',
|
1699
|
+
'inputs': [],
|
1700
|
+
'outputs': ['<(PRODUCT_DIR)/generated_187.h'],
|
1701
|
+
'action': [
|
1702
|
+
'touch',
|
1703
|
+
'<(PRODUCT_DIR)/generated_187.h',
|
1704
|
+
],
|
1705
|
+
},
|
1706
|
+
{
|
1707
|
+
'action_name': 'do_188',
|
1708
|
+
'inputs': [],
|
1709
|
+
'outputs': ['<(PRODUCT_DIR)/generated_188.h'],
|
1710
|
+
'action': [
|
1711
|
+
'touch',
|
1712
|
+
'<(PRODUCT_DIR)/generated_188.h',
|
1713
|
+
],
|
1714
|
+
},
|
1715
|
+
{
|
1716
|
+
'action_name': 'do_189',
|
1717
|
+
'inputs': [],
|
1718
|
+
'outputs': ['<(PRODUCT_DIR)/generated_189.h'],
|
1719
|
+
'action': [
|
1720
|
+
'touch',
|
1721
|
+
'<(PRODUCT_DIR)/generated_189.h',
|
1722
|
+
],
|
1723
|
+
},
|
1724
|
+
{
|
1725
|
+
'action_name': 'do_190',
|
1726
|
+
'inputs': [],
|
1727
|
+
'outputs': ['<(PRODUCT_DIR)/generated_190.h'],
|
1728
|
+
'action': [
|
1729
|
+
'touch',
|
1730
|
+
'<(PRODUCT_DIR)/generated_190.h',
|
1731
|
+
],
|
1732
|
+
},
|
1733
|
+
{
|
1734
|
+
'action_name': 'do_191',
|
1735
|
+
'inputs': [],
|
1736
|
+
'outputs': ['<(PRODUCT_DIR)/generated_191.h'],
|
1737
|
+
'action': [
|
1738
|
+
'touch',
|
1739
|
+
'<(PRODUCT_DIR)/generated_191.h',
|
1740
|
+
],
|
1741
|
+
},
|
1742
|
+
{
|
1743
|
+
'action_name': 'do_192',
|
1744
|
+
'inputs': [],
|
1745
|
+
'outputs': ['<(PRODUCT_DIR)/generated_192.h'],
|
1746
|
+
'action': [
|
1747
|
+
'touch',
|
1748
|
+
'<(PRODUCT_DIR)/generated_192.h',
|
1749
|
+
],
|
1750
|
+
},
|
1751
|
+
{
|
1752
|
+
'action_name': 'do_193',
|
1753
|
+
'inputs': [],
|
1754
|
+
'outputs': ['<(PRODUCT_DIR)/generated_193.h'],
|
1755
|
+
'action': [
|
1756
|
+
'touch',
|
1757
|
+
'<(PRODUCT_DIR)/generated_193.h',
|
1758
|
+
],
|
1759
|
+
},
|
1760
|
+
{
|
1761
|
+
'action_name': 'do_194',
|
1762
|
+
'inputs': [],
|
1763
|
+
'outputs': ['<(PRODUCT_DIR)/generated_194.h'],
|
1764
|
+
'action': [
|
1765
|
+
'touch',
|
1766
|
+
'<(PRODUCT_DIR)/generated_194.h',
|
1767
|
+
],
|
1768
|
+
},
|
1769
|
+
{
|
1770
|
+
'action_name': 'do_195',
|
1771
|
+
'inputs': [],
|
1772
|
+
'outputs': ['<(PRODUCT_DIR)/generated_195.h'],
|
1773
|
+
'action': [
|
1774
|
+
'touch',
|
1775
|
+
'<(PRODUCT_DIR)/generated_195.h',
|
1776
|
+
],
|
1777
|
+
},
|
1778
|
+
{
|
1779
|
+
'action_name': 'do_196',
|
1780
|
+
'inputs': [],
|
1781
|
+
'outputs': ['<(PRODUCT_DIR)/generated_196.h'],
|
1782
|
+
'action': [
|
1783
|
+
'touch',
|
1784
|
+
'<(PRODUCT_DIR)/generated_196.h',
|
1785
|
+
],
|
1786
|
+
},
|
1787
|
+
{
|
1788
|
+
'action_name': 'do_197',
|
1789
|
+
'inputs': [],
|
1790
|
+
'outputs': ['<(PRODUCT_DIR)/generated_197.h'],
|
1791
|
+
'action': [
|
1792
|
+
'touch',
|
1793
|
+
'<(PRODUCT_DIR)/generated_197.h',
|
1794
|
+
],
|
1795
|
+
},
|
1796
|
+
{
|
1797
|
+
'action_name': 'do_198',
|
1798
|
+
'inputs': [],
|
1799
|
+
'outputs': ['<(PRODUCT_DIR)/generated_198.h'],
|
1800
|
+
'action': [
|
1801
|
+
'touch',
|
1802
|
+
'<(PRODUCT_DIR)/generated_198.h',
|
1803
|
+
],
|
1804
|
+
},
|
1805
|
+
{
|
1806
|
+
'action_name': 'do_199',
|
1807
|
+
'inputs': [],
|
1808
|
+
'outputs': ['<(PRODUCT_DIR)/generated_199.h'],
|
1809
|
+
'action': [
|
1810
|
+
'touch',
|
1811
|
+
'<(PRODUCT_DIR)/generated_199.h',
|
1812
|
+
],
|
1813
|
+
},
|
1814
|
+
],
|
1815
|
+
},
|
1816
|
+
],
|
1817
|
+
}
|