├── .gitignore ├── Makefile ├── README.md ├── common.gypi ├── config.json ├── configure ├── counter.lua ├── deps ├── http-parser │ ├── .gitignore │ ├── .mailmap │ ├── .travis.yml │ ├── AUTHORS │ ├── CONTRIBUTIONS │ ├── LICENSE-MIT │ ├── Makefile │ ├── README.md │ ├── contrib │ │ ├── parsertrace.c │ │ └── url_parser.c │ ├── http_parser.c │ ├── http_parser.gyp │ ├── http_parser.h │ └── test.c ├── libuv │ ├── .gitignore │ ├── .mailmap │ ├── AUTHORS │ ├── ChangeLog │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── android-configure │ ├── build.mk │ ├── checksparse.sh │ ├── common.gypi │ ├── config-mingw.mk │ ├── config-unix.mk │ ├── gyp_uv │ ├── include │ │ ├── uv-private │ │ │ ├── pthread-fixes.h │ │ │ ├── stdint-msvc2008.h │ │ │ ├── tree.h │ │ │ ├── uv-bsd.h │ │ │ ├── uv-darwin.h │ │ │ ├── uv-linux.h │ │ │ ├── uv-sunos.h │ │ │ ├── uv-unix.h │ │ │ └── uv-win.h │ │ └── uv.h │ ├── src │ │ ├── fs-poll.c │ │ ├── inet.c │ │ ├── queue.h │ │ ├── unix │ │ │ ├── aix.c │ │ │ ├── async.c │ │ │ ├── core.c │ │ │ ├── darwin-proctitle.c │ │ │ ├── darwin.c │ │ │ ├── dl.c │ │ │ ├── error.c │ │ │ ├── freebsd.c │ │ │ ├── fs.c │ │ │ ├── fsevents.c │ │ │ ├── getaddrinfo.c │ │ │ ├── internal.h │ │ │ ├── kqueue.c │ │ │ ├── linux-core.c │ │ │ ├── linux-inotify.c │ │ │ ├── linux-syscalls.c │ │ │ ├── linux-syscalls.h │ │ │ ├── loop-watcher.c │ │ │ ├── loop.c │ │ │ ├── netbsd.c │ │ │ ├── openbsd.c │ │ │ ├── pipe.c │ │ │ ├── poll.c │ │ │ ├── process.c │ │ │ ├── proctitle.c │ │ │ ├── pthread-fixes.c │ │ │ ├── signal.c │ │ │ ├── stream.c │ │ │ ├── sunos.c │ │ │ ├── tcp.c │ │ │ ├── thread.c │ │ │ ├── threadpool.c │ │ │ ├── timer.c │ │ │ ├── tty.c │ │ │ ├── udp.c │ │ │ └── uv-dtrace.d │ │ ├── uv-common.c │ │ ├── uv-common.h │ │ ├── version.c │ │ └── win │ │ │ ├── async.c │ │ │ ├── atomicops-inl.h │ │ │ ├── core.c │ │ │ ├── dl.c │ │ │ ├── error.c │ │ │ ├── fs-event.c │ │ │ ├── fs.c │ │ │ ├── getaddrinfo.c │ │ │ ├── handle-inl.h │ │ │ ├── handle.c │ │ │ ├── internal.h │ │ │ ├── loop-watcher.c │ │ │ ├── pipe.c │ │ │ ├── poll.c │ │ │ ├── process-stdio.c │ │ │ ├── process.c │ │ │ ├── req-inl.h │ │ │ ├── req.c │ │ │ ├── signal.c │ │ │ ├── stream-inl.h │ │ │ ├── stream.c │ │ │ ├── tcp.c │ │ │ ├── thread.c │ │ │ ├── threadpool.c │ │ │ ├── timer.c │ │ │ ├── tty.c │ │ │ ├── udp.c │ │ │ ├── util.c │ │ │ ├── winapi.c │ │ │ ├── winapi.h │ │ │ ├── winsock.c │ │ │ └── winsock.h │ ├── test │ │ ├── benchmark-async-pummel.c │ │ ├── benchmark-async.c │ │ ├── benchmark-fs-stat.c │ │ ├── benchmark-getaddrinfo.c │ │ ├── benchmark-list.h │ │ ├── benchmark-loop-count.c │ │ ├── benchmark-million-async.c │ │ ├── benchmark-million-timers.c │ │ ├── benchmark-multi-accept.c │ │ ├── benchmark-ping-pongs.c │ │ ├── benchmark-pound.c │ │ ├── benchmark-pump.c │ │ ├── benchmark-sizes.c │ │ ├── benchmark-spawn.c │ │ ├── benchmark-tcp-write-batch.c │ │ ├── benchmark-thread.c │ │ ├── benchmark-udp-pummel.c │ │ ├── blackhole-server.c │ │ ├── dns-server.c │ │ ├── echo-server.c │ │ ├── fixtures │ │ │ ├── empty_file │ │ │ └── load_error.node │ │ ├── run-benchmarks.c │ │ ├── run-tests.c │ │ ├── runner-unix.c │ │ ├── runner-unix.h │ │ ├── runner-win.c │ │ ├── runner-win.h │ │ ├── runner.c │ │ ├── runner.h │ │ ├── task.h │ │ ├── test-active.c │ │ ├── test-async.c │ │ ├── test-barrier.c │ │ ├── test-callback-order.c │ │ ├── test-callback-stack.c │ │ ├── test-condvar.c │ │ ├── test-connection-fail.c │ │ ├── test-cwd-and-chdir.c │ │ ├── test-delayed-accept.c │ │ ├── test-dlerror.c │ │ ├── test-embed.c │ │ ├── test-error.c │ │ ├── test-fail-always.c │ │ ├── test-fs-event.c │ │ ├── test-fs-poll.c │ │ ├── test-fs.c │ │ ├── test-get-currentexe.c │ │ ├── test-get-loadavg.c │ │ ├── test-get-memory.c │ │ ├── test-getaddrinfo.c │ │ ├── test-getsockname.c │ │ ├── test-hrtime.c │ │ ├── test-idle.c │ │ ├── test-ipc-send-recv.c │ │ ├── test-ipc.c │ │ ├── test-list.h │ │ ├── test-loop-handles.c │ │ ├── test-loop-stop.c │ │ ├── test-multiple-listen.c │ │ ├── test-mutexes.c │ │ ├── test-osx-select.c │ │ ├── test-pass-always.c │ │ ├── test-ping-pong.c │ │ ├── test-pipe-bind-error.c │ │ ├── test-pipe-connect-error.c │ │ ├── test-platform-output.c │ │ ├── test-poll-close.c │ │ ├── test-poll.c │ │ ├── test-process-title.c │ │ ├── test-ref.c │ │ ├── test-run-nowait.c │ │ ├── test-run-once.c │ │ ├── test-semaphore.c │ │ ├── test-shutdown-close.c │ │ ├── test-shutdown-eof.c │ │ ├── test-signal-multiple-loops.c │ │ ├── test-signal.c │ │ ├── test-spawn.c │ │ ├── test-stdio-over-pipes.c │ │ ├── test-tcp-bind-error.c │ │ ├── test-tcp-bind6-error.c │ │ ├── test-tcp-close-while-connecting.c │ │ ├── test-tcp-close.c │ │ ├── test-tcp-connect-error-after-write.c │ │ ├── test-tcp-connect-error.c │ │ ├── test-tcp-connect-timeout.c │ │ ├── test-tcp-connect6-error.c │ │ ├── test-tcp-flags.c │ │ ├── test-tcp-open.c │ │ ├── test-tcp-read-stop.c │ │ ├── test-tcp-shutdown-after-write.c │ │ ├── test-tcp-unexpected-read.c │ │ ├── test-tcp-write-to-half-open-connection.c │ │ ├── test-tcp-writealot.c │ │ ├── test-thread.c │ │ ├── test-threadpool-cancel.c │ │ ├── test-threadpool.c │ │ ├── test-timer-again.c │ │ ├── test-timer.c │ │ ├── test-tty.c │ │ ├── test-udp-dgram-too-big.c │ │ ├── test-udp-ipv6.c │ │ ├── test-udp-multicast-join.c │ │ ├── test-udp-multicast-ttl.c │ │ ├── test-udp-open.c │ │ ├── test-udp-options.c │ │ ├── test-udp-send-and-recv.c │ │ ├── test-util.c │ │ └── test-walk-handles.c │ ├── uv.gyp │ └── vcbuild.bat ├── luajit │ ├── .gitignore │ ├── COPYRIGHT │ ├── Makefile │ ├── README │ ├── doc │ │ ├── bluequad-print.css │ │ ├── bluequad.css │ │ ├── changes.html │ │ ├── contact.html │ │ ├── ext_c_api.html │ │ ├── ext_ffi.html │ │ ├── ext_ffi_api.html │ │ ├── ext_ffi_semantics.html │ │ ├── ext_ffi_tutorial.html │ │ ├── ext_jit.html │ │ ├── extensions.html │ │ ├── faq.html │ │ ├── img │ │ │ └── contact.png │ │ ├── install.html │ │ ├── luajit.html │ │ ├── running.html │ │ └── status.html │ ├── dynasm │ │ ├── dasm_arm.h │ │ ├── dasm_arm.lua │ │ ├── dasm_mips.h │ │ ├── dasm_mips.lua │ │ ├── dasm_ppc.h │ │ ├── dasm_ppc.lua │ │ ├── dasm_proto.h │ │ ├── dasm_x64.lua │ │ ├── dasm_x86.h │ │ ├── dasm_x86.lua │ │ └── dynasm.lua │ ├── etc │ │ ├── luajit.1 │ │ └── luajit.pc │ ├── luajit.gyp │ └── src │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── Makefile.dep │ │ ├── host │ │ ├── .gitignore │ │ ├── README │ │ ├── buildvm.c │ │ ├── buildvm.h │ │ ├── buildvm_asm.c │ │ ├── buildvm_fold.c │ │ ├── buildvm_lib.c │ │ ├── buildvm_peobj.c │ │ ├── genminilua.lua │ │ └── minilua.c │ │ ├── jit │ │ ├── .gitignore │ │ ├── bc.lua │ │ ├── bcsave.lua │ │ ├── dis_arm.lua │ │ ├── dis_mips.lua │ │ ├── dis_mipsel.lua │ │ ├── dis_ppc.lua │ │ ├── dis_x64.lua │ │ ├── dis_x86.lua │ │ ├── dump.lua │ │ └── v.lua │ │ ├── lauxlib.h │ │ ├── lib_aux.c │ │ ├── lib_base.c │ │ ├── lib_bit.c │ │ ├── lib_debug.c │ │ ├── lib_ffi.c │ │ ├── lib_init.c │ │ ├── lib_io.c │ │ ├── lib_jit.c │ │ ├── lib_math.c │ │ ├── lib_os.c │ │ ├── lib_package.c │ │ ├── lib_string.c │ │ ├── lib_table.c │ │ ├── lj.supp │ │ ├── lj_alloc.c │ │ ├── lj_alloc.h │ │ ├── lj_api.c │ │ ├── lj_arch.h │ │ ├── lj_asm.c │ │ ├── lj_asm.h │ │ ├── lj_asm_arm.h │ │ ├── lj_asm_mips.h │ │ ├── lj_asm_ppc.h │ │ ├── lj_asm_x86.h │ │ ├── lj_bc.c │ │ ├── lj_bc.h │ │ ├── lj_bcdump.h │ │ ├── lj_bcread.c │ │ ├── lj_bcwrite.c │ │ ├── lj_carith.c │ │ ├── lj_carith.h │ │ ├── lj_ccall.c │ │ ├── lj_ccall.h │ │ ├── lj_ccallback.c │ │ ├── lj_ccallback.h │ │ ├── lj_cconv.c │ │ ├── lj_cconv.h │ │ ├── lj_cdata.c │ │ ├── lj_cdata.h │ │ ├── lj_char.c │ │ ├── lj_char.h │ │ ├── lj_clib.c │ │ ├── lj_clib.h │ │ ├── lj_cparse.c │ │ ├── lj_cparse.h │ │ ├── lj_crecord.c │ │ ├── lj_crecord.h │ │ ├── lj_ctype.c │ │ ├── lj_ctype.h │ │ ├── lj_debug.c │ │ ├── lj_debug.h │ │ ├── lj_def.h │ │ ├── lj_dispatch.c │ │ ├── lj_dispatch.h │ │ ├── lj_emit_arm.h │ │ ├── lj_emit_mips.h │ │ ├── lj_emit_ppc.h │ │ ├── lj_emit_x86.h │ │ ├── lj_err.c │ │ ├── lj_err.h │ │ ├── lj_errmsg.h │ │ ├── lj_ff.h │ │ ├── lj_ffrecord.c │ │ ├── lj_ffrecord.h │ │ ├── lj_frame.h │ │ ├── lj_func.c │ │ ├── lj_func.h │ │ ├── lj_gc.c │ │ ├── lj_gc.h │ │ ├── lj_gdbjit.c │ │ ├── lj_gdbjit.h │ │ ├── lj_ir.c │ │ ├── lj_ir.h │ │ ├── lj_ircall.h │ │ ├── lj_iropt.h │ │ ├── lj_jit.h │ │ ├── lj_lex.c │ │ ├── lj_lex.h │ │ ├── lj_lib.c │ │ ├── lj_lib.h │ │ ├── lj_load.c │ │ ├── lj_mcode.c │ │ ├── lj_mcode.h │ │ ├── lj_meta.c │ │ ├── lj_meta.h │ │ ├── lj_obj.c │ │ ├── lj_obj.h │ │ ├── lj_opt_dce.c │ │ ├── lj_opt_fold.c │ │ ├── lj_opt_loop.c │ │ ├── lj_opt_mem.c │ │ ├── lj_opt_narrow.c │ │ ├── lj_opt_sink.c │ │ ├── lj_opt_split.c │ │ ├── lj_parse.c │ │ ├── lj_parse.h │ │ ├── lj_record.c │ │ ├── lj_record.h │ │ ├── lj_snap.c │ │ ├── lj_snap.h │ │ ├── lj_state.c │ │ ├── lj_state.h │ │ ├── lj_str.c │ │ ├── lj_str.h │ │ ├── lj_strscan.c │ │ ├── lj_strscan.h │ │ ├── lj_tab.c │ │ ├── lj_tab.h │ │ ├── lj_target.h │ │ ├── lj_target_arm.h │ │ ├── lj_target_mips.h │ │ ├── lj_target_ppc.h │ │ ├── lj_target_x86.h │ │ ├── lj_trace.c │ │ ├── lj_trace.h │ │ ├── lj_traceerr.h │ │ ├── lj_udata.c │ │ ├── lj_udata.h │ │ ├── lj_vm.h │ │ ├── lj_vmevent.c │ │ ├── lj_vmevent.h │ │ ├── lj_vmmath.c │ │ ├── ljamalg.c │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── luaconf.h │ │ ├── luajit.c │ │ ├── luajit.h │ │ ├── lualib.h │ │ ├── msvcbuild.bat │ │ ├── vm_arm.dasc │ │ ├── vm_mips.dasc │ │ ├── vm_ppc.dasc │ │ ├── vm_ppcspe.dasc │ │ ├── vm_x86.dasc │ │ └── xedkbuild.bat └── parson │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── parson.c │ ├── parson.gyp │ ├── parson.h │ ├── tests.c │ └── tests │ ├── test_1_1.txt │ ├── test_1_2.txt │ ├── test_1_3.txt │ └── test_2.txt ├── index.lua ├── lru.h ├── main.c ├── pool.c ├── pool.h ├── redirect.lua ├── sds.c ├── sds.h ├── server.gyp ├── test ├── config.json ├── headers.lua ├── runtest.js └── shutdown.lua ├── tools ├── gyp │ ├── .gitignore │ ├── .svn │ │ ├── all-wcprops │ │ ├── entries │ │ ├── prop-base │ │ │ ├── DEPS.svn-base │ │ │ ├── PRESUBMIT.py.svn-base │ │ │ ├── gyp.bat.svn-base │ │ │ ├── gyp.svn-base │ │ │ ├── gyptest.py.svn-base │ │ │ └── setup.py.svn-base │ │ └── text-base │ │ │ ├── .gitignore.svn-base │ │ │ ├── AUTHORS.svn-base │ │ │ ├── DEPS.svn-base │ │ │ ├── LICENSE.svn-base │ │ │ ├── MANIFEST.svn-base │ │ │ ├── OWNERS.svn-base │ │ │ ├── PRESUBMIT.py.svn-base │ │ │ ├── codereview.settings.svn-base │ │ │ ├── gyp.bat.svn-base │ │ │ ├── gyp.svn-base │ │ │ ├── gyp_dummy.c.svn-base │ │ │ ├── gyptest.py.svn-base │ │ │ ├── pylintrc.svn-base │ │ │ └── setup.py.svn-base │ ├── AUTHORS │ ├── DEPS │ ├── LICENSE │ ├── MANIFEST │ ├── OWNERS │ ├── PRESUBMIT.py │ ├── buildbot │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ ├── entries │ │ │ ├── prop-base │ │ │ │ └── buildbot_run.py.svn-base │ │ │ └── text-base │ │ │ │ └── buildbot_run.py.svn-base │ │ └── buildbot_run.py │ ├── codereview.settings │ ├── gyp │ ├── gyp.bat │ ├── gyp_dummy.c │ ├── gyptest.py │ ├── pylib │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ └── entries │ │ └── gyp │ │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ ├── dir-prop-base │ │ │ ├── entries │ │ │ ├── prop-base │ │ │ │ ├── MSVSNew.py.svn-base │ │ │ │ ├── MSVSProject.py.svn-base │ │ │ │ ├── MSVSSettings.py.svn-base │ │ │ │ ├── MSVSSettings_test.py.svn-base │ │ │ │ ├── MSVSToolFile.py.svn-base │ │ │ │ ├── MSVSUserFile.py.svn-base │ │ │ │ ├── MSVSUtil.py.svn-base │ │ │ │ ├── MSVSVersion.py.svn-base │ │ │ │ ├── SCons.py.svn-base │ │ │ │ ├── __init__.py.svn-base │ │ │ │ ├── common.py.svn-base │ │ │ │ ├── common_test.py.svn-base │ │ │ │ ├── easy_xml.py.svn-base │ │ │ │ ├── easy_xml_test.py.svn-base │ │ │ │ ├── input.py.svn-base │ │ │ │ ├── mac_tool.py.svn-base │ │ │ │ ├── msvs_emulation.py.svn-base │ │ │ │ ├── ninja_syntax.py.svn-base │ │ │ │ ├── sun_tool.py.svn-base │ │ │ │ ├── win_tool.py.svn-base │ │ │ │ ├── xcode_emulation.py.svn-base │ │ │ │ ├── xcodeproj_file.py.svn-base │ │ │ │ └── xml_fix.py.svn-base │ │ │ └── text-base │ │ │ │ ├── MSVSNew.py.svn-base │ │ │ │ ├── MSVSProject.py.svn-base │ │ │ │ ├── MSVSSettings.py.svn-base │ │ │ │ ├── MSVSSettings_test.py.svn-base │ │ │ │ ├── MSVSToolFile.py.svn-base │ │ │ │ ├── MSVSUserFile.py.svn-base │ │ │ │ ├── MSVSUtil.py.svn-base │ │ │ │ ├── MSVSVersion.py.svn-base │ │ │ │ ├── SCons.py.svn-base │ │ │ │ ├── __init__.py.svn-base │ │ │ │ ├── common.py.svn-base │ │ │ │ ├── common_test.py.svn-base │ │ │ │ ├── easy_xml.py.svn-base │ │ │ │ ├── easy_xml_test.py.svn-base │ │ │ │ ├── input.py.svn-base │ │ │ │ ├── mac_tool.py.svn-base │ │ │ │ ├── msvs_emulation.py.svn-base │ │ │ │ ├── ninja_syntax.py.svn-base │ │ │ │ ├── sun_tool.py.svn-base │ │ │ │ ├── win_tool.py.svn-base │ │ │ │ ├── xcode_emulation.py.svn-base │ │ │ │ ├── xcodeproj_file.py.svn-base │ │ │ │ └── xml_fix.py.svn-base │ │ │ ├── MSVSNew.py │ │ │ ├── MSVSProject.py │ │ │ ├── MSVSSettings.py │ │ │ ├── MSVSSettings_test.py │ │ │ ├── MSVSToolFile.py │ │ │ ├── MSVSUserFile.py │ │ │ ├── MSVSUtil.py │ │ │ ├── MSVSVersion.py │ │ │ ├── SCons.py │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── common_test.py │ │ │ ├── easy_xml.py │ │ │ ├── easy_xml_test.py │ │ │ ├── generator │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── dir-prop-base │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── __init__.py.svn-base │ │ │ │ │ ├── android.py.svn-base │ │ │ │ │ ├── dump_dependency_json.py.svn-base │ │ │ │ │ ├── eclipse.py.svn-base │ │ │ │ │ ├── gypd.py.svn-base │ │ │ │ │ ├── gypsh.py.svn-base │ │ │ │ │ ├── make.py.svn-base │ │ │ │ │ ├── msvs.py.svn-base │ │ │ │ │ ├── msvs_test.py.svn-base │ │ │ │ │ ├── ninja.py.svn-base │ │ │ │ │ ├── ninja_test.py.svn-base │ │ │ │ │ ├── scons.py.svn-base │ │ │ │ │ └── xcode.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── __init__.py.svn-base │ │ │ │ │ ├── android.py.svn-base │ │ │ │ │ ├── dump_dependency_json.py.svn-base │ │ │ │ │ ├── eclipse.py.svn-base │ │ │ │ │ ├── gypd.py.svn-base │ │ │ │ │ ├── gypsh.py.svn-base │ │ │ │ │ ├── make.py.svn-base │ │ │ │ │ ├── msvs.py.svn-base │ │ │ │ │ ├── msvs_test.py.svn-base │ │ │ │ │ ├── ninja.py.svn-base │ │ │ │ │ ├── ninja_test.py.svn-base │ │ │ │ │ ├── scons.py.svn-base │ │ │ │ │ └── xcode.py.svn-base │ │ │ ├── __init__.py │ │ │ ├── android.py │ │ │ ├── dump_dependency_json.py │ │ │ ├── eclipse.py │ │ │ ├── gypd.py │ │ │ ├── gypsh.py │ │ │ ├── make.py │ │ │ ├── msvs.py │ │ │ ├── msvs_test.py │ │ │ ├── ninja.py │ │ │ ├── ninja_test.py │ │ │ ├── scons.py │ │ │ └── xcode.py │ │ │ ├── input.py │ │ │ ├── mac_tool.py │ │ │ ├── msvs_emulation.py │ │ │ ├── ninja_syntax.py │ │ │ ├── sun_tool.py │ │ │ ├── win_tool.py │ │ │ ├── xcode_emulation.py │ │ │ ├── xcodeproj_file.py │ │ │ └── xml_fix.py │ ├── pylintrc │ ├── samples │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ ├── entries │ │ │ ├── prop-base │ │ │ │ ├── samples.bat.svn-base │ │ │ │ └── samples.svn-base │ │ │ └── text-base │ │ │ │ ├── samples.bat.svn-base │ │ │ │ └── samples.svn-base │ │ ├── samples │ │ └── samples.bat │ ├── setup.py │ ├── test │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ └── entries │ │ ├── actions-bare │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── gyptest-bare.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ └── gyptest-bare.py.svn-base │ │ │ ├── gyptest-bare.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── bare.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── bare.gyp.svn-base │ │ │ │ │ └── bare.py.svn-base │ │ │ │ ├── bare.gyp │ │ │ │ └── bare.py │ │ ├── actions-multiple │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── gyptest-all.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ └── gyptest-all.py.svn-base │ │ │ ├── gyptest-all.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── actions.gyp.svn-base │ │ │ │ │ ├── copy.py.svn-base │ │ │ │ │ ├── filter.py.svn-base │ │ │ │ │ ├── foo.c.svn-base │ │ │ │ │ ├── input.txt.svn-base │ │ │ │ │ └── main.c.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── actions.gyp.svn-base │ │ │ │ │ ├── copy.py.svn-base │ │ │ │ │ ├── filter.py.svn-base │ │ │ │ │ ├── foo.c.svn-base │ │ │ │ │ ├── input.txt.svn-base │ │ │ │ │ └── main.c.svn-base │ │ │ │ ├── actions.gyp │ │ │ │ ├── copy.py │ │ │ │ ├── filter.py │ │ │ │ ├── foo.c │ │ │ │ ├── input.txt │ │ │ │ └── main.c │ │ ├── actions-none │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── gyptest-none.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ └── gyptest-none.py.svn-base │ │ │ ├── gyptest-none.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── fake_cross.py.svn-base │ │ │ │ │ ├── foo.cc.svn-base │ │ │ │ │ └── none_with_source_files.gyp.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── fake_cross.py.svn-base │ │ │ │ │ ├── foo.cc.svn-base │ │ │ │ │ └── none_with_source_files.gyp.svn-base │ │ │ │ ├── fake_cross.py │ │ │ │ ├── foo.cc │ │ │ │ └── none_with_source_files.gyp │ │ ├── actions-subdir │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── gyptest-action.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ └── gyptest-action.py.svn-base │ │ │ ├── gyptest-action.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── make-file.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── make-file.py.svn-base │ │ │ │ │ └── none.gyp.svn-base │ │ │ │ ├── make-file.py │ │ │ │ ├── none.gyp │ │ │ │ └── subdir │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── make-subdir-file.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── make-subdir-file.py.svn-base │ │ │ │ │ └── subdir.gyp.svn-base │ │ │ │ ├── make-subdir-file.py │ │ │ │ └── subdir.gyp │ │ ├── actions │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ ├── gyptest-default.py.svn-base │ │ │ │ │ └── gyptest-errors.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ ├── gyptest-default.py.svn-base │ │ │ │ │ └── gyptest-errors.py.svn-base │ │ │ ├── gyptest-all.py │ │ │ ├── gyptest-default.py │ │ │ ├── gyptest-errors.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── action_missing_name.gyp.svn-base │ │ │ │ │ ├── actions.gyp.svn-base │ │ │ │ │ └── confirm-dep-files.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── action_missing_name.gyp.svn-base │ │ │ │ │ ├── actions.gyp.svn-base │ │ │ │ │ └── confirm-dep-files.py.svn-base │ │ │ │ ├── action_missing_name.gyp │ │ │ │ ├── actions.gyp │ │ │ │ ├── confirm-dep-files.py │ │ │ │ ├── subdir1 │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── counter.py.svn-base │ │ │ │ │ │ ├── executable.gyp.svn-base │ │ │ │ │ │ ├── make-prog1.py.svn-base │ │ │ │ │ │ └── make-prog2.py.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── counter.py.svn-base │ │ │ │ │ │ ├── executable.gyp.svn-base │ │ │ │ │ │ ├── make-prog1.py.svn-base │ │ │ │ │ │ ├── make-prog2.py.svn-base │ │ │ │ │ │ └── program.c.svn-base │ │ │ │ ├── counter.py │ │ │ │ ├── executable.gyp │ │ │ │ ├── make-prog1.py │ │ │ │ ├── make-prog2.py │ │ │ │ └── program.c │ │ │ │ ├── subdir2 │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── make-file.py.svn-base │ │ │ │ │ │ └── none.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── make-file.py.svn-base │ │ │ │ │ │ └── none.gyp.svn-base │ │ │ │ ├── make-file.py │ │ │ │ └── none.gyp │ │ │ │ └── subdir3 │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── generate_main.py.svn-base │ │ │ │ │ └── null_input.gyp.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── generate_main.py.svn-base │ │ │ │ │ └── null_input.gyp.svn-base │ │ │ │ ├── generate_main.py │ │ │ │ └── null_input.gyp │ │ ├── additional-targets │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── gyptest-additional.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ └── gyptest-additional.py.svn-base │ │ │ ├── gyptest-additional.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ └── all.gyp.svn-base │ │ │ │ ├── all.gyp │ │ │ │ └── dir1 │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── emit.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── actions.gyp.svn-base │ │ │ │ │ ├── emit.py.svn-base │ │ │ │ │ └── lib1.c.svn-base │ │ │ │ ├── actions.gyp │ │ │ │ ├── emit.py │ │ │ │ └── lib1.c │ │ ├── assembly │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── gyptest-assembly.py.svn-base │ │ │ │ │ └── gyptest-override.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-assembly.py.svn-base │ │ │ │ │ └── gyptest-override.py.svn-base │ │ │ ├── gyptest-assembly.py │ │ │ ├── gyptest-override.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── lib1.S.svn-base │ │ │ │ │ ├── override.gyp.svn-base │ │ │ │ │ └── override_asm.asm.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── as.bat.svn-base │ │ │ │ │ ├── assembly.gyp.svn-base │ │ │ │ │ ├── lib1.S.svn-base │ │ │ │ │ ├── lib1.c.svn-base │ │ │ │ │ ├── override.gyp.svn-base │ │ │ │ │ ├── override_asm.asm.svn-base │ │ │ │ │ └── program.c.svn-base │ │ │ │ ├── as.bat │ │ │ │ ├── assembly.gyp │ │ │ │ ├── lib1.S │ │ │ │ ├── lib1.c │ │ │ │ ├── override.gyp │ │ │ │ ├── override_asm.asm │ │ │ │ └── program.c │ │ ├── build-option │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── gyptest-build.py.svn-base │ │ │ │ │ ├── hello.c.svn-base │ │ │ │ │ └── hello.gyp.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-build.py.svn-base │ │ │ │ │ ├── hello.c.svn-base │ │ │ │ │ └── hello.gyp.svn-base │ │ │ ├── gyptest-build.py │ │ │ ├── hello.c │ │ │ └── hello.gyp │ │ ├── builddir │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ └── gyptest-default.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ └── gyptest-default.py.svn-base │ │ │ ├── gyptest-all.py │ │ │ ├── gyptest-default.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── builddir.gypi.svn-base │ │ │ │ │ ├── func1.c.svn-base │ │ │ │ │ ├── func2.c.svn-base │ │ │ │ │ ├── func3.c.svn-base │ │ │ │ │ ├── func4.c.svn-base │ │ │ │ │ ├── func5.c.svn-base │ │ │ │ │ ├── prog1.c.svn-base │ │ │ │ │ └── prog1.gyp.svn-base │ │ │ │ ├── builddir.gypi │ │ │ │ ├── func1.c │ │ │ │ ├── func2.c │ │ │ │ ├── func3.c │ │ │ │ ├── func4.c │ │ │ │ ├── func5.c │ │ │ │ ├── prog1.c │ │ │ │ ├── prog1.gyp │ │ │ │ └── subdir2 │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── prog2.c.svn-base │ │ │ │ │ └── prog2.gyp.svn-base │ │ │ │ ├── prog2.c │ │ │ │ ├── prog2.gyp │ │ │ │ └── subdir3 │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── prog3.c.svn-base │ │ │ │ │ └── prog3.gyp.svn-base │ │ │ │ ├── prog3.c │ │ │ │ ├── prog3.gyp │ │ │ │ └── subdir4 │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── prog4.c.svn-base │ │ │ │ │ └── prog4.gyp.svn-base │ │ │ │ ├── prog4.c │ │ │ │ ├── prog4.gyp │ │ │ │ └── subdir5 │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── prog5.c.svn-base │ │ │ │ │ └── prog5.gyp.svn-base │ │ │ │ ├── prog5.c │ │ │ │ └── prog5.gyp │ │ ├── cflags │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── cflags.c.svn-base │ │ │ │ │ ├── cflags.gyp.svn-base │ │ │ │ │ └── gyptest-cflags.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── cflags.c.svn-base │ │ │ │ │ ├── cflags.gyp.svn-base │ │ │ │ │ └── gyptest-cflags.py.svn-base │ │ │ ├── cflags.c │ │ │ ├── cflags.gyp │ │ │ └── gyptest-cflags.py │ │ ├── compilable │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── gyptest-headers.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ └── gyptest-headers.py.svn-base │ │ │ ├── gyptest-headers.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── headers.gyp.svn-base │ │ │ │ │ ├── lib1.cpp.svn-base │ │ │ │ │ ├── lib1.hpp.svn-base │ │ │ │ │ └── program.cpp.svn-base │ │ │ │ ├── headers.gyp │ │ │ │ ├── lib1.cpp │ │ │ │ ├── lib1.hpp │ │ │ │ └── program.cpp │ │ ├── compiler-override │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── compiler-host.gyp.svn-base │ │ │ │ │ ├── compiler.gyp.svn-base │ │ │ │ │ ├── cxxtest.cc.svn-base │ │ │ │ │ ├── gyptest-compiler-env.py.svn-base │ │ │ │ │ ├── gyptest-compiler-global-settings.py.svn-base │ │ │ │ │ ├── my_cc.py.svn-base │ │ │ │ │ ├── my_cxx.py.svn-base │ │ │ │ │ ├── my_ld.py.svn-base │ │ │ │ │ └── test.c.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── compiler-global-settings.gyp.in.svn-base │ │ │ │ │ ├── compiler-host.gyp.svn-base │ │ │ │ │ ├── compiler.gyp.svn-base │ │ │ │ │ ├── cxxtest.cc.svn-base │ │ │ │ │ ├── gyptest-compiler-env.py.svn-base │ │ │ │ │ ├── gyptest-compiler-global-settings.py.svn-base │ │ │ │ │ ├── my_cc.py.svn-base │ │ │ │ │ ├── my_cxx.py.svn-base │ │ │ │ │ ├── my_ld.py.svn-base │ │ │ │ │ └── test.c.svn-base │ │ │ ├── compiler-global-settings.gyp.in │ │ │ ├── compiler-host.gyp │ │ │ ├── compiler.gyp │ │ │ ├── cxxtest.cc │ │ │ ├── gyptest-compiler-env.py │ │ │ ├── gyptest-compiler-global-settings.py │ │ │ ├── my_cc.py │ │ │ ├── my_cxx.py │ │ │ ├── my_ld.py │ │ │ └── test.c │ │ ├── configurations │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ └── entries │ │ │ ├── basics │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── configurations.c.svn-base │ │ │ │ │ │ ├── configurations.gyp.svn-base │ │ │ │ │ │ └── gyptest-configurations.py.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── configurations.c.svn-base │ │ │ │ │ │ ├── configurations.gyp.svn-base │ │ │ │ │ │ └── gyptest-configurations.py.svn-base │ │ │ │ ├── configurations.c │ │ │ │ ├── configurations.gyp │ │ │ │ └── gyptest-configurations.py │ │ │ ├── inheritance │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── gyptest-inheritance.py.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── configurations.c.svn-base │ │ │ │ │ │ ├── configurations.gyp.svn-base │ │ │ │ │ │ └── gyptest-inheritance.py.svn-base │ │ │ │ ├── configurations.c │ │ │ │ ├── configurations.gyp │ │ │ │ └── gyptest-inheritance.py │ │ │ ├── invalid │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── actions.gyp.svn-base │ │ │ │ │ │ ├── all_dependent_settings.gyp.svn-base │ │ │ │ │ │ ├── configurations.gyp.svn-base │ │ │ │ │ │ ├── dependencies.gyp.svn-base │ │ │ │ │ │ ├── direct_dependent_settings.gyp.svn-base │ │ │ │ │ │ ├── gyptest-configurations.py.svn-base │ │ │ │ │ │ ├── libraries.gyp.svn-base │ │ │ │ │ │ ├── link_settings.gyp.svn-base │ │ │ │ │ │ ├── sources.gyp.svn-base │ │ │ │ │ │ ├── standalone_static_library.gyp.svn-base │ │ │ │ │ │ ├── target_name.gyp.svn-base │ │ │ │ │ │ └── type.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── actions.gyp.svn-base │ │ │ │ │ │ ├── all_dependent_settings.gyp.svn-base │ │ │ │ │ │ ├── configurations.gyp.svn-base │ │ │ │ │ │ ├── dependencies.gyp.svn-base │ │ │ │ │ │ ├── direct_dependent_settings.gyp.svn-base │ │ │ │ │ │ ├── gyptest-configurations.py.svn-base │ │ │ │ │ │ ├── libraries.gyp.svn-base │ │ │ │ │ │ ├── link_settings.gyp.svn-base │ │ │ │ │ │ ├── sources.gyp.svn-base │ │ │ │ │ │ ├── standalone_static_library.gyp.svn-base │ │ │ │ │ │ ├── target_name.gyp.svn-base │ │ │ │ │ │ └── type.gyp.svn-base │ │ │ │ ├── actions.gyp │ │ │ │ ├── all_dependent_settings.gyp │ │ │ │ ├── configurations.gyp │ │ │ │ ├── dependencies.gyp │ │ │ │ ├── direct_dependent_settings.gyp │ │ │ │ ├── gyptest-configurations.py │ │ │ │ ├── libraries.gyp │ │ │ │ ├── link_settings.gyp │ │ │ │ ├── sources.gyp │ │ │ │ ├── standalone_static_library.gyp │ │ │ │ ├── target_name.gyp │ │ │ │ └── type.gyp │ │ │ ├── target_platform │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── gyptest-target_platform.py.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── configurations.gyp.svn-base │ │ │ │ │ │ ├── front.c.svn-base │ │ │ │ │ │ ├── gyptest-target_platform.py.svn-base │ │ │ │ │ │ ├── left.c.svn-base │ │ │ │ │ │ └── right.c.svn-base │ │ │ │ ├── configurations.gyp │ │ │ │ ├── front.c │ │ │ │ ├── gyptest-target_platform.py │ │ │ │ ├── left.c │ │ │ │ └── right.c │ │ │ └── x64 │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── gyptest-x86.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── configurations.c.svn-base │ │ │ │ │ ├── configurations.gyp.svn-base │ │ │ │ │ └── gyptest-x86.py.svn-base │ │ │ │ ├── configurations.c │ │ │ │ ├── configurations.gyp │ │ │ │ └── gyptest-x86.py │ │ ├── copies │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ ├── gyptest-default.py.svn-base │ │ │ │ │ ├── gyptest-samedir.py.svn-base │ │ │ │ │ ├── gyptest-slash.py.svn-base │ │ │ │ │ └── gyptest-updir.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ ├── gyptest-default.py.svn-base │ │ │ │ │ ├── gyptest-samedir.py.svn-base │ │ │ │ │ ├── gyptest-slash.py.svn-base │ │ │ │ │ └── gyptest-updir.py.svn-base │ │ │ ├── gyptest-all.py │ │ │ ├── gyptest-default.py │ │ │ ├── gyptest-samedir.py │ │ │ ├── gyptest-slash.py │ │ │ ├── gyptest-updir.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── copies-samedir.gyp.svn-base │ │ │ │ │ ├── copies-slash.gyp.svn-base │ │ │ │ │ ├── copies-updir.gyp.svn-base │ │ │ │ │ └── copies.gyp.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── copies-samedir.gyp.svn-base │ │ │ │ │ ├── copies-slash.gyp.svn-base │ │ │ │ │ ├── copies-updir.gyp.svn-base │ │ │ │ │ ├── copies.gyp.svn-base │ │ │ │ │ ├── file1.svn-base │ │ │ │ │ └── file2.svn-base │ │ │ │ ├── copies-samedir.gyp │ │ │ │ ├── copies-slash.gyp │ │ │ │ ├── copies-updir.gyp │ │ │ │ ├── copies.gyp │ │ │ │ ├── directory │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── file3.svn-base │ │ │ │ │ │ └── file4.svn-base │ │ │ │ ├── file3 │ │ │ │ ├── file4 │ │ │ │ └── subdir │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── file5.svn-base │ │ │ │ │ └── file5 │ │ │ │ ├── file1 │ │ │ │ ├── file2 │ │ │ │ └── parentdir │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ └── entries │ │ │ │ └── subdir │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ └── file6.svn-base │ │ │ │ └── file6 │ │ ├── custom-generator │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── gyptest-custom-generator.py.svn-base │ │ │ │ │ ├── mygenerator.py.svn-base │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-custom-generator.py.svn-base │ │ │ │ │ ├── mygenerator.py.svn-base │ │ │ │ │ └── test.gyp.svn-base │ │ │ ├── gyptest-custom-generator.py │ │ │ ├── mygenerator.py │ │ │ └── test.gyp │ │ ├── cxxflags │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── cxxflags.cc.svn-base │ │ │ │ │ ├── cxxflags.gyp.svn-base │ │ │ │ │ └── gyptest-cxxflags.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── cxxflags.cc.svn-base │ │ │ │ │ ├── cxxflags.gyp.svn-base │ │ │ │ │ └── gyptest-cxxflags.py.svn-base │ │ │ ├── cxxflags.cc │ │ │ ├── cxxflags.gyp │ │ │ └── gyptest-cxxflags.py │ │ ├── defines-escaping │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── defines-escaping.c.svn-base │ │ │ │ │ ├── defines-escaping.gyp.svn-base │ │ │ │ │ └── gyptest-defines-escaping.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── defines-escaping.c.svn-base │ │ │ │ │ ├── defines-escaping.gyp.svn-base │ │ │ │ │ └── gyptest-defines-escaping.py.svn-base │ │ │ ├── defines-escaping.c │ │ │ ├── defines-escaping.gyp │ │ │ └── gyptest-defines-escaping.py │ │ ├── defines │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── defines.c.svn-base │ │ │ │ │ ├── defines.gyp.svn-base │ │ │ │ │ ├── gyptest-define-override.py.svn-base │ │ │ │ │ ├── gyptest-defines-env-regyp.py.svn-base │ │ │ │ │ ├── gyptest-defines-env.py.svn-base │ │ │ │ │ └── gyptest-defines.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── defines-env.gyp.svn-base │ │ │ │ │ ├── defines.c.svn-base │ │ │ │ │ ├── defines.gyp.svn-base │ │ │ │ │ ├── gyptest-define-override.py.svn-base │ │ │ │ │ ├── gyptest-defines-env-regyp.py.svn-base │ │ │ │ │ ├── gyptest-defines-env.py.svn-base │ │ │ │ │ └── gyptest-defines.py.svn-base │ │ │ ├── defines-env.gyp │ │ │ ├── defines.c │ │ │ ├── defines.gyp │ │ │ ├── gyptest-define-override.py │ │ │ ├── gyptest-defines-env-regyp.py │ │ │ ├── gyptest-defines-env.py │ │ │ └── gyptest-defines.py │ │ ├── dependencies │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── a.c.svn-base │ │ │ │ │ ├── double_dependency.gyp.svn-base │ │ │ │ │ ├── double_dependent.gyp.svn-base │ │ │ │ │ ├── gyptest-double-dependency.py.svn-base │ │ │ │ │ ├── gyptest-extra-targets.py.svn-base │ │ │ │ │ ├── gyptest-lib-only.py.svn-base │ │ │ │ │ ├── gyptest-none-traversal.py.svn-base │ │ │ │ │ ├── lib_only.gyp.svn-base │ │ │ │ │ ├── main.c.svn-base │ │ │ │ │ └── none_traversal.gyp.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── a.c.svn-base │ │ │ │ │ ├── double_dependency.gyp.svn-base │ │ │ │ │ ├── double_dependent.gyp.svn-base │ │ │ │ │ ├── extra_targets.gyp.svn-base │ │ │ │ │ ├── gyptest-double-dependency.py.svn-base │ │ │ │ │ ├── gyptest-extra-targets.py.svn-base │ │ │ │ │ ├── gyptest-lib-only.py.svn-base │ │ │ │ │ ├── gyptest-none-traversal.py.svn-base │ │ │ │ │ ├── lib_only.gyp.svn-base │ │ │ │ │ ├── main.c.svn-base │ │ │ │ │ └── none_traversal.gyp.svn-base │ │ │ ├── a.c │ │ │ ├── b │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── b.c.svn-base │ │ │ │ │ │ ├── b.gyp.svn-base │ │ │ │ │ │ └── b3.c.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── b.c.svn-base │ │ │ │ │ │ ├── b.gyp.svn-base │ │ │ │ │ │ └── b3.c.svn-base │ │ │ │ ├── b.c │ │ │ │ ├── b.gyp │ │ │ │ └── b3.c │ │ │ ├── c │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── c.c.svn-base │ │ │ │ │ │ ├── c.gyp.svn-base │ │ │ │ │ │ └── d.c.svn-base │ │ │ │ ├── c.c │ │ │ │ ├── c.gyp │ │ │ │ └── d.c │ │ │ ├── double_dependency.gyp │ │ │ ├── double_dependent.gyp │ │ │ ├── extra_targets.gyp │ │ │ ├── gyptest-double-dependency.py │ │ │ ├── gyptest-extra-targets.py │ │ │ ├── gyptest-lib-only.py │ │ │ ├── gyptest-none-traversal.py │ │ │ ├── lib_only.gyp │ │ │ ├── main.c │ │ │ └── none_traversal.gyp │ │ ├── dependency-copy │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── gyptest-copy.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ └── gyptest-copy.py.svn-base │ │ │ ├── gyptest-copy.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── copies.gyp.svn-base │ │ │ │ │ ├── file1.c.svn-base │ │ │ │ │ └── file2.c.svn-base │ │ │ │ ├── copies.gyp │ │ │ │ ├── file1.c │ │ │ │ └── file2.c │ │ ├── errors │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── duplicate_basenames.gyp.svn-base │ │ │ │ │ ├── duplicate_node.gyp.svn-base │ │ │ │ │ ├── duplicate_rule.gyp.svn-base │ │ │ │ │ ├── duplicate_targets.gyp.svn-base │ │ │ │ │ ├── gyptest-errors.py.svn-base │ │ │ │ │ ├── missing_dep.gyp.svn-base │ │ │ │ │ └── missing_targets.gyp.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── duplicate_basenames.gyp.svn-base │ │ │ │ │ ├── duplicate_node.gyp.svn-base │ │ │ │ │ ├── duplicate_rule.gyp.svn-base │ │ │ │ │ ├── duplicate_targets.gyp.svn-base │ │ │ │ │ ├── gyptest-errors.py.svn-base │ │ │ │ │ ├── missing_dep.gyp.svn-base │ │ │ │ │ └── missing_targets.gyp.svn-base │ │ │ ├── duplicate_basenames.gyp │ │ │ ├── duplicate_node.gyp │ │ │ ├── duplicate_rule.gyp │ │ │ ├── duplicate_targets.gyp │ │ │ ├── gyptest-errors.py │ │ │ ├── missing_dep.gyp │ │ │ └── missing_targets.gyp │ │ ├── escaping │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── gyptest-colon.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ └── gyptest-colon.py.svn-base │ │ │ ├── colon │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ └── test.gyp │ │ │ └── gyptest-colon.py │ │ ├── exclusion │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── exclusion.gyp.svn-base │ │ │ │ │ ├── gyptest-exclusion.py.svn-base │ │ │ │ │ └── hello.c.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── exclusion.gyp.svn-base │ │ │ │ │ ├── gyptest-exclusion.py.svn-base │ │ │ │ │ └── hello.c.svn-base │ │ │ ├── exclusion.gyp │ │ │ ├── gyptest-exclusion.py │ │ │ └── hello.c │ │ ├── external-cross-compile │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── gyptest-cross.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ └── gyptest-cross.py.svn-base │ │ │ ├── gyptest-cross.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── bogus1.cc.svn-base │ │ │ │ │ ├── bogus2.c.svn-base │ │ │ │ │ ├── cross.gyp.svn-base │ │ │ │ │ ├── cross_compile.gypi.svn-base │ │ │ │ │ ├── fake_cross.py.svn-base │ │ │ │ │ ├── program.cc.svn-base │ │ │ │ │ ├── test1.cc.svn-base │ │ │ │ │ ├── test2.c.svn-base │ │ │ │ │ ├── test3.cc.svn-base │ │ │ │ │ ├── test4.c.svn-base │ │ │ │ │ └── tochar.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── bogus1.cc.svn-base │ │ │ │ │ ├── bogus2.c.svn-base │ │ │ │ │ ├── cross.gyp.svn-base │ │ │ │ │ ├── cross_compile.gypi.svn-base │ │ │ │ │ ├── fake_cross.py.svn-base │ │ │ │ │ ├── program.cc.svn-base │ │ │ │ │ ├── test1.cc.svn-base │ │ │ │ │ ├── test2.c.svn-base │ │ │ │ │ ├── test3.cc.svn-base │ │ │ │ │ ├── test4.c.svn-base │ │ │ │ │ └── tochar.py.svn-base │ │ │ │ ├── bogus1.cc │ │ │ │ ├── bogus2.c │ │ │ │ ├── cross.gyp │ │ │ │ ├── cross_compile.gypi │ │ │ │ ├── fake_cross.py │ │ │ │ ├── program.cc │ │ │ │ ├── test1.cc │ │ │ │ ├── test2.c │ │ │ │ ├── test3.cc │ │ │ │ ├── test4.c │ │ │ │ └── tochar.py │ │ ├── generator-output │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── gyptest-actions.py.svn-base │ │ │ │ │ ├── gyptest-copies.py.svn-base │ │ │ │ │ ├── gyptest-mac-bundle.py.svn-base │ │ │ │ │ ├── gyptest-relocate.py.svn-base │ │ │ │ │ ├── gyptest-rules.py.svn-base │ │ │ │ │ ├── gyptest-subdir2-deep.py.svn-base │ │ │ │ │ ├── gyptest-symlink.py.svn-base │ │ │ │ │ └── gyptest-top-all.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-actions.py.svn-base │ │ │ │ │ ├── gyptest-copies.py.svn-base │ │ │ │ │ ├── gyptest-mac-bundle.py.svn-base │ │ │ │ │ ├── gyptest-relocate.py.svn-base │ │ │ │ │ ├── gyptest-rules.py.svn-base │ │ │ │ │ ├── gyptest-subdir2-deep.py.svn-base │ │ │ │ │ ├── gyptest-symlink.py.svn-base │ │ │ │ │ └── gyptest-top-all.py.svn-base │ │ │ ├── actions │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── actions.gyp.svn-base │ │ │ │ ├── actions.gyp │ │ │ │ ├── build │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── README.txt.svn-base │ │ │ │ │ └── README.txt │ │ │ │ ├── subdir1 │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── make-prog1.py.svn-base │ │ │ │ │ │ │ └── make-prog2.py.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── executable.gyp.svn-base │ │ │ │ │ │ │ ├── make-prog1.py.svn-base │ │ │ │ │ │ │ ├── make-prog2.py.svn-base │ │ │ │ │ │ │ └── program.c.svn-base │ │ │ │ │ ├── actions-out │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ └── README.txt.svn-base │ │ │ │ │ │ └── README.txt │ │ │ │ │ ├── build │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ └── README.txt.svn-base │ │ │ │ │ │ └── README.txt │ │ │ │ │ ├── executable.gyp │ │ │ │ │ ├── make-prog1.py │ │ │ │ │ ├── make-prog2.py │ │ │ │ │ └── program.c │ │ │ │ └── subdir2 │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── make-file.py.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── make-file.py.svn-base │ │ │ │ │ │ └── none.gyp.svn-base │ │ │ │ │ ├── actions-out │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── README.txt.svn-base │ │ │ │ │ └── README.txt │ │ │ │ │ ├── build │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── README.txt.svn-base │ │ │ │ │ └── README.txt │ │ │ │ │ ├── make-file.py │ │ │ │ │ └── none.gyp │ │ │ ├── copies │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── copies.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── copies.gyp.svn-base │ │ │ │ │ │ ├── file1.svn-base │ │ │ │ │ │ └── file2.svn-base │ │ │ │ ├── build │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── README.txt.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── README.txt.svn-base │ │ │ │ │ └── README.txt │ │ │ │ ├── copies-out │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── README.txt.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── README.txt.svn-base │ │ │ │ │ └── README.txt │ │ │ │ ├── copies.gyp │ │ │ │ ├── file1 │ │ │ │ ├── file2 │ │ │ │ └── subdir │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── subdir.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── file3.svn-base │ │ │ │ │ │ ├── file4.svn-base │ │ │ │ │ │ └── subdir.gyp.svn-base │ │ │ │ │ ├── build │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── README.txt.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── README.txt.svn-base │ │ │ │ │ └── README.txt │ │ │ │ │ ├── copies-out │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── README.txt.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── README.txt.svn-base │ │ │ │ │ └── README.txt │ │ │ │ │ ├── file3 │ │ │ │ │ ├── file4 │ │ │ │ │ └── subdir.gyp │ │ │ ├── gyptest-actions.py │ │ │ ├── gyptest-copies.py │ │ │ ├── gyptest-mac-bundle.py │ │ │ ├── gyptest-relocate.py │ │ │ ├── gyptest-rules.py │ │ │ ├── gyptest-subdir2-deep.py │ │ │ ├── gyptest-symlink.py │ │ │ ├── gyptest-top-all.py │ │ │ ├── mac-bundle │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── header.h.svn-base │ │ │ │ │ │ ├── main.c.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── Info.plist.svn-base │ │ │ │ │ │ ├── app.order.svn-base │ │ │ │ │ │ ├── header.h.svn-base │ │ │ │ │ │ ├── main.c.svn-base │ │ │ │ │ │ ├── resource.sb.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ ├── Info.plist │ │ │ │ ├── app.order │ │ │ │ ├── header.h │ │ │ │ ├── main.c │ │ │ │ ├── resource.sb │ │ │ │ └── test.gyp │ │ │ ├── rules │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── copy-file.py.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── copy-file.py.svn-base │ │ │ │ │ │ └── rules.gyp.svn-base │ │ │ │ ├── build │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── README.txt.svn-base │ │ │ │ │ └── README.txt │ │ │ │ ├── copy-file.py │ │ │ │ ├── rules.gyp │ │ │ │ ├── subdir1 │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── define3.in0.svn-base │ │ │ │ │ │ │ ├── define4.in0.svn-base │ │ │ │ │ │ │ ├── executable.gyp.svn-base │ │ │ │ │ │ │ ├── function1.in1.svn-base │ │ │ │ │ │ │ ├── function2.in1.svn-base │ │ │ │ │ │ │ └── program.c.svn-base │ │ │ │ │ ├── build │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ └── README.txt.svn-base │ │ │ │ │ │ └── README.txt │ │ │ │ │ ├── define3.in0 │ │ │ │ │ ├── define4.in0 │ │ │ │ │ ├── executable.gyp │ │ │ │ │ ├── function1.in1 │ │ │ │ │ ├── function2.in1 │ │ │ │ │ └── program.c │ │ │ │ └── subdir2 │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── file1.in0.svn-base │ │ │ │ │ │ ├── file2.in0.svn-base │ │ │ │ │ │ ├── file3.in1.svn-base │ │ │ │ │ │ ├── file4.in1.svn-base │ │ │ │ │ │ └── none.gyp.svn-base │ │ │ │ │ ├── build │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── README.txt.svn-base │ │ │ │ │ └── README.txt │ │ │ │ │ ├── file1.in0 │ │ │ │ │ ├── file2.in0 │ │ │ │ │ ├── file3.in1 │ │ │ │ │ ├── file4.in1 │ │ │ │ │ ├── none.gyp │ │ │ │ │ └── rules-out │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── README.txt.svn-base │ │ │ │ │ └── README.txt │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── inc.h.svn-base │ │ │ │ │ ├── prog1.c.svn-base │ │ │ │ │ ├── prog1.gyp.svn-base │ │ │ │ │ └── symroot.gypi.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── inc.h.svn-base │ │ │ │ │ ├── prog1.c.svn-base │ │ │ │ │ ├── prog1.gyp.svn-base │ │ │ │ │ └── symroot.gypi.svn-base │ │ │ │ ├── build │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── README.txt.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ └── README.txt.svn-base │ │ │ │ └── README.txt │ │ │ │ ├── inc.h │ │ │ │ ├── inc1 │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── include1.h.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ └── include1.h.svn-base │ │ │ │ └── include1.h │ │ │ │ ├── prog1.c │ │ │ │ ├── prog1.gyp │ │ │ │ ├── subdir2 │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── prog2.c.svn-base │ │ │ │ │ │ └── prog2.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── prog2.c.svn-base │ │ │ │ │ │ └── prog2.gyp.svn-base │ │ │ │ ├── build │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── README.txt.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── README.txt.svn-base │ │ │ │ │ └── README.txt │ │ │ │ ├── deeper │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── deeper.c.svn-base │ │ │ │ │ │ │ ├── deeper.gyp.svn-base │ │ │ │ │ │ │ └── deeper.h.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── deeper.c.svn-base │ │ │ │ │ │ │ ├── deeper.gyp.svn-base │ │ │ │ │ │ │ └── deeper.h.svn-base │ │ │ │ │ ├── build │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ │ └── README.txt.svn-base │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ └── README.txt.svn-base │ │ │ │ │ │ └── README.txt │ │ │ │ │ ├── deeper.c │ │ │ │ │ ├── deeper.gyp │ │ │ │ │ └── deeper.h │ │ │ │ ├── inc2 │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── include2.h.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── include2.h.svn-base │ │ │ │ │ └── include2.h │ │ │ │ ├── prog2.c │ │ │ │ └── prog2.gyp │ │ │ │ ├── subdir3 │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── prog3.c.svn-base │ │ │ │ │ │ └── prog3.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── prog3.c.svn-base │ │ │ │ │ │ └── prog3.gyp.svn-base │ │ │ │ ├── build │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── README.txt.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── README.txt.svn-base │ │ │ │ │ └── README.txt │ │ │ │ ├── inc3 │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── include3.h.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── include3.h.svn-base │ │ │ │ │ └── include3.h │ │ │ │ ├── prog3.c │ │ │ │ └── prog3.gyp │ │ │ │ └── symroot.gypi │ │ ├── gyp-defines │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── defines.gyp.svn-base │ │ │ │ │ ├── echo.py.svn-base │ │ │ │ │ ├── gyptest-multiple-values.py.svn-base │ │ │ │ │ └── gyptest-regyp.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── defines.gyp.svn-base │ │ │ │ │ ├── echo.py.svn-base │ │ │ │ │ ├── gyptest-multiple-values.py.svn-base │ │ │ │ │ └── gyptest-regyp.py.svn-base │ │ │ ├── defines.gyp │ │ │ ├── echo.py │ │ │ ├── gyptest-multiple-values.py │ │ │ └── gyptest-regyp.py │ │ ├── hard_dependency │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── gyptest-exported-hard-dependency.py.svn-base │ │ │ │ │ └── gyptest-no-exported-hard-dependency.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-exported-hard-dependency.py.svn-base │ │ │ │ │ └── gyptest-no-exported-hard-dependency.py.svn-base │ │ │ ├── gyptest-exported-hard-dependency.py │ │ │ ├── gyptest-no-exported-hard-dependency.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── a.c.svn-base │ │ │ │ │ ├── a.h.svn-base │ │ │ │ │ ├── b.c.svn-base │ │ │ │ │ ├── b.h.svn-base │ │ │ │ │ ├── c.c.svn-base │ │ │ │ │ ├── c.h.svn-base │ │ │ │ │ ├── d.c.svn-base │ │ │ │ │ ├── emit.py.svn-base │ │ │ │ │ └── hard_dependency.gyp.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── a.c.svn-base │ │ │ │ │ ├── a.h.svn-base │ │ │ │ │ ├── b.c.svn-base │ │ │ │ │ ├── b.h.svn-base │ │ │ │ │ ├── c.c.svn-base │ │ │ │ │ ├── c.h.svn-base │ │ │ │ │ ├── d.c.svn-base │ │ │ │ │ ├── emit.py.svn-base │ │ │ │ │ └── hard_dependency.gyp.svn-base │ │ │ │ ├── a.c │ │ │ │ ├── a.h │ │ │ │ ├── b.c │ │ │ │ ├── b.h │ │ │ │ ├── c.c │ │ │ │ ├── c.h │ │ │ │ ├── d.c │ │ │ │ ├── emit.py │ │ │ │ └── hard_dependency.gyp │ │ ├── hello │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ ├── gyptest-default.py.svn-base │ │ │ │ │ ├── gyptest-disable-regyp.py.svn-base │ │ │ │ │ ├── gyptest-regyp.py.svn-base │ │ │ │ │ ├── gyptest-target.py.svn-base │ │ │ │ │ └── hello.c.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ ├── gyptest-default.py.svn-base │ │ │ │ │ ├── gyptest-disable-regyp.py.svn-base │ │ │ │ │ ├── gyptest-regyp.py.svn-base │ │ │ │ │ ├── gyptest-target.py.svn-base │ │ │ │ │ ├── hello.c.svn-base │ │ │ │ │ ├── hello.gyp.svn-base │ │ │ │ │ ├── hello2.c.svn-base │ │ │ │ │ └── hello2.gyp.svn-base │ │ │ ├── gyptest-all.py │ │ │ ├── gyptest-default.py │ │ │ ├── gyptest-disable-regyp.py │ │ │ ├── gyptest-regyp.py │ │ │ ├── gyptest-target.py │ │ │ ├── hello.c │ │ │ ├── hello.gyp │ │ │ ├── hello2.c │ │ │ └── hello2.gyp │ │ ├── home_dot_gyp │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── gyptest-home-includes-regyp.py.svn-base │ │ │ │ │ └── gyptest-home-includes.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-home-includes-regyp.py.svn-base │ │ │ │ │ └── gyptest-home-includes.py.svn-base │ │ │ ├── gyptest-home-includes-regyp.py │ │ │ ├── gyptest-home-includes.py │ │ │ ├── home │ │ │ │ ├── .gyp │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── include.gypi.svn-base │ │ │ │ │ └── include.gypi │ │ │ │ └── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ └── entries │ │ │ ├── home2 │ │ │ │ ├── .gyp │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── include.gypi.svn-base │ │ │ │ │ └── include.gypi │ │ │ │ └── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ └── entries │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── all.gyp.svn-base │ │ │ │ │ └── printfoo.c.svn-base │ │ │ │ ├── all.gyp │ │ │ │ └── printfoo.c │ │ ├── include_dirs │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ └── gyptest-default.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ └── gyptest-default.py.svn-base │ │ │ ├── gyptest-all.py │ │ │ ├── gyptest-default.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── inc.h.svn-base │ │ │ │ │ ├── includes.c.svn-base │ │ │ │ │ └── includes.gyp.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── inc.h.svn-base │ │ │ │ │ ├── includes.c.svn-base │ │ │ │ │ └── includes.gyp.svn-base │ │ │ │ ├── inc.h │ │ │ │ ├── inc1 │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── include1.h.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ └── include1.h.svn-base │ │ │ │ └── include1.h │ │ │ │ ├── includes.c │ │ │ │ ├── includes.gyp │ │ │ │ ├── shadow1 │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── shadow.h.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ └── shadow.h.svn-base │ │ │ │ └── shadow.h │ │ │ │ ├── shadow2 │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── shadow.h.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ └── shadow.h.svn-base │ │ │ │ └── shadow.h │ │ │ │ └── subdir │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── inc.h.svn-base │ │ │ │ │ ├── subdir_includes.c.svn-base │ │ │ │ │ └── subdir_includes.gyp.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── inc.h.svn-base │ │ │ │ │ ├── subdir_includes.c.svn-base │ │ │ │ │ └── subdir_includes.gyp.svn-base │ │ │ │ ├── inc.h │ │ │ │ ├── inc2 │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── include2.h.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ └── include2.h.svn-base │ │ │ │ └── include2.h │ │ │ │ ├── subdir_includes.c │ │ │ │ └── subdir_includes.gyp │ │ ├── intermediate_dir │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── gyptest-intermediate-dir.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ └── gyptest-intermediate-dir.py.svn-base │ │ │ ├── gyptest-intermediate-dir.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── script.py.svn-base │ │ │ │ │ ├── shared_infile.txt.svn-base │ │ │ │ │ ├── test.gyp.svn-base │ │ │ │ │ └── test2.gyp.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── script.py.svn-base │ │ │ │ │ ├── shared_infile.txt.svn-base │ │ │ │ │ ├── test.gyp.svn-base │ │ │ │ │ └── test2.gyp.svn-base │ │ │ │ ├── script.py │ │ │ │ ├── shared_infile.txt │ │ │ │ ├── test.gyp │ │ │ │ └── test2.gyp │ │ ├── lib │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── dir-prop-base │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── README.txt.svn-base │ │ │ │ │ ├── TestCmd.py.svn-base │ │ │ │ │ ├── TestCommon.py.svn-base │ │ │ │ │ └── TestGyp.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── README.txt.svn-base │ │ │ │ │ ├── TestCmd.py.svn-base │ │ │ │ │ ├── TestCommon.py.svn-base │ │ │ │ │ └── TestGyp.py.svn-base │ │ │ ├── README.txt │ │ │ ├── TestCmd.py │ │ │ ├── TestCommon.py │ │ │ └── TestGyp.py │ │ ├── library │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── gyptest-shared-obj-install-path.py.svn-base │ │ │ │ │ ├── gyptest-shared.py.svn-base │ │ │ │ │ └── gyptest-static.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-shared-obj-install-path.py.svn-base │ │ │ │ │ ├── gyptest-shared.py.svn-base │ │ │ │ │ └── gyptest-static.py.svn-base │ │ │ ├── gyptest-shared-obj-install-path.py │ │ │ ├── gyptest-shared.py │ │ │ ├── gyptest-static.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── lib1.c.svn-base │ │ │ │ │ ├── library.gyp.svn-base │ │ │ │ │ └── program.c.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── lib1.c.svn-base │ │ │ │ │ ├── lib1_moveable.c.svn-base │ │ │ │ │ ├── lib2.c.svn-base │ │ │ │ │ ├── lib2_moveable.c.svn-base │ │ │ │ │ ├── library.gyp.svn-base │ │ │ │ │ ├── program.c.svn-base │ │ │ │ │ └── shared_dependency.gyp.svn-base │ │ │ │ ├── lib1.c │ │ │ │ ├── lib1_moveable.c │ │ │ │ ├── lib2.c │ │ │ │ ├── lib2_moveable.c │ │ │ │ ├── library.gyp │ │ │ │ ├── program.c │ │ │ │ └── shared_dependency.gyp │ │ ├── link-objects │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── base.c.svn-base │ │ │ │ │ ├── extra.c.svn-base │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ └── link-objects.gyp.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── base.c.svn-base │ │ │ │ │ ├── extra.c.svn-base │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ └── link-objects.gyp.svn-base │ │ │ ├── base.c │ │ │ ├── extra.c │ │ │ ├── gyptest-all.py │ │ │ └── link-objects.gyp │ │ ├── linux │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── gyptest-implicit-rpath.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ └── gyptest-implicit-rpath.py.svn-base │ │ │ ├── gyptest-implicit-rpath.py │ │ │ └── implicit-rpath │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── file.c.svn-base │ │ │ │ │ ├── main.c.svn-base │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── file.c.svn-base │ │ │ │ │ ├── main.c.svn-base │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ ├── file.c │ │ │ │ ├── main.c │ │ │ │ └── test.gyp │ │ ├── mac │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── gyptest-action-envvars.py.svn-base │ │ │ │ │ ├── gyptest-app-error.py.svn-base │ │ │ │ │ ├── gyptest-app.py.svn-base │ │ │ │ │ ├── gyptest-archs.py.svn-base │ │ │ │ │ ├── gyptest-cflags.py.svn-base │ │ │ │ │ ├── gyptest-copies.py.svn-base │ │ │ │ │ ├── gyptest-copy-dylib.py.svn-base │ │ │ │ │ ├── gyptest-debuginfo.py.svn-base │ │ │ │ │ ├── gyptest-depend-on-bundle.py.svn-base │ │ │ │ │ ├── gyptest-framework-dirs.py.svn-base │ │ │ │ │ ├── gyptest-framework-headers.py.svn-base │ │ │ │ │ ├── gyptest-framework.py.svn-base │ │ │ │ │ ├── gyptest-global-settings.py.svn-base │ │ │ │ │ ├── gyptest-infoplist-process.py.svn-base │ │ │ │ │ ├── gyptest-installname.py.svn-base │ │ │ │ │ ├── gyptest-ldflags-passed-to-libtool.py.svn-base │ │ │ │ │ ├── gyptest-ldflags.py.svn-base │ │ │ │ │ ├── gyptest-libraries.py.svn-base │ │ │ │ │ ├── gyptest-loadable-module.py.svn-base │ │ │ │ │ ├── gyptest-missing-cfbundlesignature.py.svn-base │ │ │ │ │ ├── gyptest-non-strs-flattened-to-env.py.svn-base │ │ │ │ │ ├── gyptest-objc-gc.py.svn-base │ │ │ │ │ ├── gyptest-postbuild-copy-bundle.py.svn-base │ │ │ │ │ ├── gyptest-postbuild-defaults.py.svn-base │ │ │ │ │ ├── gyptest-postbuild-fail.py.svn-base │ │ │ │ │ ├── gyptest-postbuild-multiple-configurations.py.svn-base │ │ │ │ │ ├── gyptest-postbuild-static-library.gyp.svn-base │ │ │ │ │ ├── gyptest-postbuild.py.svn-base │ │ │ │ │ ├── gyptest-prefixheader.py.svn-base │ │ │ │ │ ├── gyptest-rebuild.py.svn-base │ │ │ │ │ ├── gyptest-rpath.py.svn-base │ │ │ │ │ ├── gyptest-sdkroot.py.svn-base │ │ │ │ │ ├── gyptest-sourceless-module.gyp.svn-base │ │ │ │ │ ├── gyptest-strip.py.svn-base │ │ │ │ │ ├── gyptest-type-envvars.py.svn-base │ │ │ │ │ ├── gyptest-xcode-env-order.py.svn-base │ │ │ │ │ └── gyptest-xcode-gcc.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-action-envvars.py.svn-base │ │ │ │ │ ├── gyptest-app-error.py.svn-base │ │ │ │ │ ├── gyptest-app.py.svn-base │ │ │ │ │ ├── gyptest-archs.py.svn-base │ │ │ │ │ ├── gyptest-cflags.py.svn-base │ │ │ │ │ ├── gyptest-copies.py.svn-base │ │ │ │ │ ├── gyptest-copy-dylib.py.svn-base │ │ │ │ │ ├── gyptest-debuginfo.py.svn-base │ │ │ │ │ ├── gyptest-depend-on-bundle.py.svn-base │ │ │ │ │ ├── gyptest-framework-dirs.py.svn-base │ │ │ │ │ ├── gyptest-framework-headers.py.svn-base │ │ │ │ │ ├── gyptest-framework.py.svn-base │ │ │ │ │ ├── gyptest-global-settings.py.svn-base │ │ │ │ │ ├── gyptest-infoplist-process.py.svn-base │ │ │ │ │ ├── gyptest-installname.py.svn-base │ │ │ │ │ ├── gyptest-ldflags-passed-to-libtool.py.svn-base │ │ │ │ │ ├── gyptest-ldflags.py.svn-base │ │ │ │ │ ├── gyptest-libraries.py.svn-base │ │ │ │ │ ├── gyptest-loadable-module.py.svn-base │ │ │ │ │ ├── gyptest-missing-cfbundlesignature.py.svn-base │ │ │ │ │ ├── gyptest-non-strs-flattened-to-env.py.svn-base │ │ │ │ │ ├── gyptest-objc-gc.py.svn-base │ │ │ │ │ ├── gyptest-postbuild-copy-bundle.py.svn-base │ │ │ │ │ ├── gyptest-postbuild-defaults.py.svn-base │ │ │ │ │ ├── gyptest-postbuild-fail.py.svn-base │ │ │ │ │ ├── gyptest-postbuild-multiple-configurations.py.svn-base │ │ │ │ │ ├── gyptest-postbuild-static-library.gyp.svn-base │ │ │ │ │ ├── gyptest-postbuild.py.svn-base │ │ │ │ │ ├── gyptest-prefixheader.py.svn-base │ │ │ │ │ ├── gyptest-rebuild.py.svn-base │ │ │ │ │ ├── gyptest-rpath.py.svn-base │ │ │ │ │ ├── gyptest-sdkroot.py.svn-base │ │ │ │ │ ├── gyptest-sourceless-module.gyp.svn-base │ │ │ │ │ ├── gyptest-strip.py.svn-base │ │ │ │ │ ├── gyptest-type-envvars.py.svn-base │ │ │ │ │ ├── gyptest-xcode-env-order.py.svn-base │ │ │ │ │ └── gyptest-xcode-gcc.py.svn-base │ │ │ ├── action-envvars │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ └── entries │ │ │ │ └── action │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── action.gyp.svn-base │ │ │ │ │ │ └── action.sh.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── action.gyp.svn-base │ │ │ │ │ │ └── action.sh.svn-base │ │ │ │ │ ├── action.gyp │ │ │ │ │ └── action.sh │ │ │ ├── app-bundle │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── empty.c.svn-base │ │ │ │ │ │ ├── test-error.gyp.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── empty.c.svn-base │ │ │ │ │ │ ├── test-error.gyp.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ ├── TestApp │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── TestAppAppDelegate.h.svn-base │ │ │ │ │ │ │ ├── TestAppAppDelegate.m.svn-base │ │ │ │ │ │ │ └── main.m.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── TestApp-Info.plist.svn-base │ │ │ │ │ │ │ ├── TestAppAppDelegate.h.svn-base │ │ │ │ │ │ │ ├── TestAppAppDelegate.m.svn-base │ │ │ │ │ │ │ └── main.m.svn-base │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ ├── InfoPlist-error.strings.svn-base │ │ │ │ │ │ │ │ ├── InfoPlist.strings.svn-base │ │ │ │ │ │ │ │ └── MainMenu.xib.svn-base │ │ │ │ │ │ ├── InfoPlist-error.strings │ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ │ └── MainMenu.xib │ │ │ │ │ ├── TestApp-Info.plist │ │ │ │ │ ├── TestAppAppDelegate.h │ │ │ │ │ ├── TestAppAppDelegate.m │ │ │ │ │ └── main.m │ │ │ │ ├── empty.c │ │ │ │ ├── test-error.gyp │ │ │ │ └── test.gyp │ │ │ ├── archs │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── my_file.cc.svn-base │ │ │ │ │ │ ├── my_main_file.cc.svn-base │ │ │ │ │ │ ├── test-archs-x86_64.gyp.svn-base │ │ │ │ │ │ └── test-no-archs.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── my_file.cc.svn-base │ │ │ │ │ │ ├── my_main_file.cc.svn-base │ │ │ │ │ │ ├── test-archs-x86_64.gyp.svn-base │ │ │ │ │ │ └── test-no-archs.gyp.svn-base │ │ │ │ ├── my_file.cc │ │ │ │ ├── my_main_file.cc │ │ │ │ ├── test-archs-x86_64.gyp │ │ │ │ └── test-no-archs.gyp │ │ │ ├── cflags │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── ccfile.cc.svn-base │ │ │ │ │ │ ├── ccfile_withcflags.cc.svn-base │ │ │ │ │ │ ├── cfile.c.svn-base │ │ │ │ │ │ ├── cppfile.cpp.svn-base │ │ │ │ │ │ ├── cppfile_withcflags.cpp.svn-base │ │ │ │ │ │ ├── mfile.m.svn-base │ │ │ │ │ │ ├── mmfile.mm.svn-base │ │ │ │ │ │ ├── mmfile_withcflags.mm.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── ccfile.cc.svn-base │ │ │ │ │ │ ├── ccfile_withcflags.cc.svn-base │ │ │ │ │ │ ├── cfile.c.svn-base │ │ │ │ │ │ ├── cppfile.cpp.svn-base │ │ │ │ │ │ ├── cppfile_withcflags.cpp.svn-base │ │ │ │ │ │ ├── cxxfile.cxx.svn-base │ │ │ │ │ │ ├── cxxfile_withcflags.cxx.svn-base │ │ │ │ │ │ ├── mfile.m.svn-base │ │ │ │ │ │ ├── mmfile.mm.svn-base │ │ │ │ │ │ ├── mmfile_withcflags.mm.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ ├── ccfile.cc │ │ │ │ ├── ccfile_withcflags.cc │ │ │ │ ├── cfile.c │ │ │ │ ├── cppfile.cpp │ │ │ │ ├── cppfile_withcflags.cpp │ │ │ │ ├── cxxfile.cxx │ │ │ │ ├── cxxfile_withcflags.cxx │ │ │ │ ├── mfile.m │ │ │ │ ├── mmfile.mm │ │ │ │ ├── mmfile_withcflags.mm │ │ │ │ └── test.gyp │ │ │ ├── copy-dylib │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── empty.c.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── empty.c.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ ├── empty.c │ │ │ │ └── test.gyp │ │ │ ├── debuginfo │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── file.c.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── file.c.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ ├── file.c │ │ │ │ └── test.gyp │ │ │ ├── depend-on-bundle │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── bundle.c.svn-base │ │ │ │ │ │ ├── executable.c.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── Info.plist.svn-base │ │ │ │ │ │ ├── bundle.c.svn-base │ │ │ │ │ │ ├── executable.c.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ ├── English.lproj │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── InfoPlist.strings.svn-base │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ ├── bundle.c │ │ │ │ ├── executable.c │ │ │ │ └── test.gyp │ │ │ ├── framework-dirs │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── calculate.c.svn-base │ │ │ │ │ │ └── framework-dirs.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── calculate.c.svn-base │ │ │ │ │ │ └── framework-dirs.gyp.svn-base │ │ │ │ ├── calculate.c │ │ │ │ └── framework-dirs.gyp │ │ │ ├── framework-headers │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── myframework.h.svn-base │ │ │ │ │ │ ├── myframework.m.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── myframework.h.svn-base │ │ │ │ │ │ ├── myframework.m.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ ├── myframework.h │ │ │ │ ├── myframework.m │ │ │ │ └── test.gyp │ │ │ ├── framework │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── empty.c.svn-base │ │ │ │ │ │ └── framework.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── empty.c.svn-base │ │ │ │ │ │ └── framework.gyp.svn-base │ │ │ │ ├── TestFramework │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── ObjCVector.h.svn-base │ │ │ │ │ │ │ ├── ObjCVector.mm.svn-base │ │ │ │ │ │ │ └── ObjCVectorInternal.h.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── Info.plist.svn-base │ │ │ │ │ │ │ ├── ObjCVector.h.svn-base │ │ │ │ │ │ │ ├── ObjCVector.mm.svn-base │ │ │ │ │ │ │ ├── ObjCVectorInternal.h.svn-base │ │ │ │ │ │ │ └── TestFramework_Prefix.pch.svn-base │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ │ ├── entries │ │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ │ └── InfoPlist.strings.svn-base │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── ObjCVector.h │ │ │ │ │ ├── ObjCVector.mm │ │ │ │ │ ├── ObjCVectorInternal.h │ │ │ │ │ └── TestFramework_Prefix.pch │ │ │ │ ├── empty.c │ │ │ │ └── framework.gyp │ │ │ ├── global-settings │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ └── entries │ │ │ │ └── src │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ └── entries │ │ │ │ │ ├── dir1 │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── dir1.gyp.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── dir1.gyp.svn-base │ │ │ │ │ └── dir1.gyp │ │ │ │ │ └── dir2 │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── dir2.gyp.svn-base │ │ │ │ │ │ └── file.txt.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── dir2.gyp.svn-base │ │ │ │ │ │ └── file.txt.svn-base │ │ │ │ │ ├── dir2.gyp │ │ │ │ │ └── file.txt │ │ │ ├── gyptest-action-envvars.py │ │ │ ├── gyptest-app-error.py │ │ │ ├── gyptest-app.py │ │ │ ├── gyptest-archs.py │ │ │ ├── gyptest-cflags.py │ │ │ ├── gyptest-copies.py │ │ │ ├── gyptest-copy-dylib.py │ │ │ ├── gyptest-debuginfo.py │ │ │ ├── gyptest-depend-on-bundle.py │ │ │ ├── gyptest-framework-dirs.py │ │ │ ├── gyptest-framework-headers.py │ │ │ ├── gyptest-framework.py │ │ │ ├── gyptest-global-settings.py │ │ │ ├── gyptest-infoplist-process.py │ │ │ ├── gyptest-installname.py │ │ │ ├── gyptest-ldflags-passed-to-libtool.py │ │ │ ├── gyptest-ldflags.py │ │ │ ├── gyptest-libraries.py │ │ │ ├── gyptest-loadable-module.py │ │ │ ├── gyptest-missing-cfbundlesignature.py │ │ │ ├── gyptest-non-strs-flattened-to-env.py │ │ │ ├── gyptest-objc-gc.py │ │ │ ├── gyptest-postbuild-copy-bundle.py │ │ │ ├── gyptest-postbuild-defaults.py │ │ │ ├── gyptest-postbuild-fail.py │ │ │ ├── gyptest-postbuild-multiple-configurations.py │ │ │ ├── gyptest-postbuild-static-library.gyp │ │ │ ├── gyptest-postbuild.py │ │ │ ├── gyptest-prefixheader.py │ │ │ ├── gyptest-rebuild.py │ │ │ ├── gyptest-rpath.py │ │ │ ├── gyptest-sdkroot.py │ │ │ ├── gyptest-sourceless-module.gyp │ │ │ ├── gyptest-strip.py │ │ │ ├── gyptest-type-envvars.py │ │ │ ├── gyptest-xcode-env-order.py │ │ │ ├── gyptest-xcode-gcc.py │ │ │ ├── infoplist-process │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── main.c.svn-base │ │ │ │ │ │ ├── test1.gyp.svn-base │ │ │ │ │ │ ├── test2.gyp.svn-base │ │ │ │ │ │ └── test3.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── Info.plist.svn-base │ │ │ │ │ │ ├── main.c.svn-base │ │ │ │ │ │ ├── test1.gyp.svn-base │ │ │ │ │ │ ├── test2.gyp.svn-base │ │ │ │ │ │ └── test3.gyp.svn-base │ │ │ │ ├── Info.plist │ │ │ │ ├── main.c │ │ │ │ ├── test1.gyp │ │ │ │ ├── test2.gyp │ │ │ │ └── test3.gyp │ │ │ ├── installname │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── file.c.svn-base │ │ │ │ │ │ ├── main.c.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── Info.plist.svn-base │ │ │ │ │ │ ├── file.c.svn-base │ │ │ │ │ │ ├── main.c.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ ├── Info.plist │ │ │ │ ├── file.c │ │ │ │ ├── main.c │ │ │ │ └── test.gyp │ │ │ ├── ldflags-libtool │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── file.c.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── file.c.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ ├── file.c │ │ │ │ └── test.gyp │ │ │ ├── ldflags │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ └── entries │ │ │ │ └── subdirectory │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── file.c.svn-base │ │ │ │ │ │ ├── symbol_list.def.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── Info.plist.svn-base │ │ │ │ │ │ ├── file.c.svn-base │ │ │ │ │ │ ├── symbol_list.def.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── file.c │ │ │ │ │ ├── symbol_list.def │ │ │ │ │ └── test.gyp │ │ │ ├── libraries │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ └── entries │ │ │ │ └── subdir │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── README.txt.svn-base │ │ │ │ │ │ ├── hello.cc.svn-base │ │ │ │ │ │ └── mylib.c.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── README.txt.svn-base │ │ │ │ │ │ ├── hello.cc.svn-base │ │ │ │ │ │ ├── mylib.c.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── hello.cc │ │ │ │ │ ├── mylib.c │ │ │ │ │ └── test.gyp │ │ │ ├── loadable-module │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── module.c.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── Info.plist.svn-base │ │ │ │ │ │ ├── module.c.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ ├── Info.plist │ │ │ │ ├── module.c │ │ │ │ └── test.gyp │ │ │ ├── missing-cfbundlesignature │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── file.c.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── Info.plist.svn-base │ │ │ │ │ │ ├── Other-Info.plist.svn-base │ │ │ │ │ │ ├── Third-Info.plist.svn-base │ │ │ │ │ │ ├── file.c.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ ├── Info.plist │ │ │ │ ├── Other-Info.plist │ │ │ │ ├── Third-Info.plist │ │ │ │ ├── file.c │ │ │ │ └── test.gyp │ │ │ ├── non-strs-flattened-to-env │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── main.c.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── Info.plist.svn-base │ │ │ │ │ │ ├── main.c.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ ├── Info.plist │ │ │ │ ├── main.c │ │ │ │ └── test.gyp │ │ │ ├── objc-gc │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── c-file.c.svn-base │ │ │ │ │ │ ├── cc-file.cc.svn-base │ │ │ │ │ │ ├── main.m.svn-base │ │ │ │ │ │ ├── needs-gc-mm.mm.svn-base │ │ │ │ │ │ ├── needs-gc.m.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── c-file.c.svn-base │ │ │ │ │ │ ├── cc-file.cc.svn-base │ │ │ │ │ │ ├── main.m.svn-base │ │ │ │ │ │ ├── needs-gc-mm.mm.svn-base │ │ │ │ │ │ ├── needs-gc.m.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ ├── c-file.c │ │ │ │ ├── cc-file.cc │ │ │ │ ├── main.m │ │ │ │ ├── needs-gc-mm.mm │ │ │ │ ├── needs-gc.m │ │ │ │ └── test.gyp │ │ │ ├── postbuild-copy-bundle │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── copied.txt.svn-base │ │ │ │ │ │ ├── empty.c.svn-base │ │ │ │ │ │ ├── main.c.svn-base │ │ │ │ │ │ ├── postbuild-copy-framework.sh.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── Framework-Info.plist.svn-base │ │ │ │ │ │ ├── TestApp-Info.plist.svn-base │ │ │ │ │ │ ├── copied.txt.svn-base │ │ │ │ │ │ ├── empty.c.svn-base │ │ │ │ │ │ ├── main.c.svn-base │ │ │ │ │ │ ├── postbuild-copy-framework.sh.svn-base │ │ │ │ │ │ ├── resource_file.sb.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ ├── Framework-Info.plist │ │ │ │ ├── TestApp-Info.plist │ │ │ │ ├── copied.txt │ │ │ │ ├── empty.c │ │ │ │ ├── main.c │ │ │ │ ├── postbuild-copy-framework.sh │ │ │ │ ├── resource_file.sb │ │ │ │ └── test.gyp │ │ │ ├── postbuild-defaults │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── main.c.svn-base │ │ │ │ │ │ ├── postbuild-defaults.sh.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── Info.plist.svn-base │ │ │ │ │ │ ├── main.c.svn-base │ │ │ │ │ │ ├── postbuild-defaults.sh.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ ├── Info.plist │ │ │ │ ├── main.c │ │ │ │ ├── postbuild-defaults.sh │ │ │ │ └── test.gyp │ │ │ ├── postbuild-fail │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── file.c.svn-base │ │ │ │ │ │ ├── postbuild-fail.sh.svn-base │ │ │ │ │ │ ├── test.gyp.svn-base │ │ │ │ │ │ ├── touch-dynamic.sh.svn-base │ │ │ │ │ │ └── touch-static.sh.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── file.c.svn-base │ │ │ │ │ │ ├── postbuild-fail.sh.svn-base │ │ │ │ │ │ ├── test.gyp.svn-base │ │ │ │ │ │ ├── touch-dynamic.sh.svn-base │ │ │ │ │ │ └── touch-static.sh.svn-base │ │ │ │ ├── file.c │ │ │ │ ├── postbuild-fail.sh │ │ │ │ ├── test.gyp │ │ │ │ ├── touch-dynamic.sh │ │ │ │ └── touch-static.sh │ │ │ ├── postbuild-multiple-configurations │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── main.c.svn-base │ │ │ │ │ │ ├── postbuild-touch-file.sh.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── main.c.svn-base │ │ │ │ │ │ ├── postbuild-touch-file.sh.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ ├── main.c │ │ │ │ ├── postbuild-touch-file.sh │ │ │ │ └── test.gyp │ │ │ ├── postbuild-static-library │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── empty.c.svn-base │ │ │ │ │ │ ├── postbuild-touch-file.sh.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── empty.c.svn-base │ │ │ │ │ │ ├── postbuild-touch-file.sh.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ ├── empty.c │ │ │ │ ├── postbuild-touch-file.sh │ │ │ │ └── test.gyp │ │ │ ├── postbuilds │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── copy.sh.svn-base │ │ │ │ │ │ ├── file.c.svn-base │ │ │ │ │ │ ├── file_g.c.svn-base │ │ │ │ │ │ └── file_h.c.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── copy.sh.svn-base │ │ │ │ │ │ ├── file.c.svn-base │ │ │ │ │ │ ├── file_g.c.svn-base │ │ │ │ │ │ ├── file_h.c.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ ├── copy.sh │ │ │ │ ├── file.c │ │ │ │ ├── file_g.c │ │ │ │ ├── file_h.c │ │ │ │ ├── script │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── shared_library_postbuild.sh.svn-base │ │ │ │ │ │ │ └── static_library_postbuild.sh.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── shared_library_postbuild.sh.svn-base │ │ │ │ │ │ │ └── static_library_postbuild.sh.svn-base │ │ │ │ │ ├── shared_library_postbuild.sh │ │ │ │ │ └── static_library_postbuild.sh │ │ │ │ ├── subdirectory │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── copied_file.txt.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── copied_file.txt.svn-base │ │ │ │ │ │ │ └── nested_target.gyp.svn-base │ │ │ │ │ ├── copied_file.txt │ │ │ │ │ └── nested_target.gyp │ │ │ │ └── test.gyp │ │ │ ├── prefixheader │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── file.c.svn-base │ │ │ │ │ │ ├── file.cc.svn-base │ │ │ │ │ │ ├── file.m.svn-base │ │ │ │ │ │ ├── file.mm.svn-base │ │ │ │ │ │ ├── header.h.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── file.c.svn-base │ │ │ │ │ │ ├── file.cc.svn-base │ │ │ │ │ │ ├── file.m.svn-base │ │ │ │ │ │ ├── file.mm.svn-base │ │ │ │ │ │ ├── header.h.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ ├── file.c │ │ │ │ ├── file.cc │ │ │ │ ├── file.m │ │ │ │ ├── file.mm │ │ │ │ ├── header.h │ │ │ │ └── test.gyp │ │ │ ├── rebuild │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── delay-touch.sh.svn-base │ │ │ │ │ │ ├── empty.c.svn-base │ │ │ │ │ │ ├── main.c.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── TestApp-Info.plist.svn-base │ │ │ │ │ │ ├── delay-touch.sh.svn-base │ │ │ │ │ │ ├── empty.c.svn-base │ │ │ │ │ │ ├── main.c.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ ├── TestApp-Info.plist │ │ │ │ ├── delay-touch.sh │ │ │ │ ├── empty.c │ │ │ │ ├── main.c │ │ │ │ └── test.gyp │ │ │ ├── rpath │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── file.c.svn-base │ │ │ │ │ │ ├── main.c.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── file.c.svn-base │ │ │ │ │ │ ├── main.c.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ ├── file.c │ │ │ │ ├── main.c │ │ │ │ └── test.gyp │ │ │ ├── sdkroot │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── file.cc.svn-base │ │ │ │ │ │ ├── test.gyp.svn-base │ │ │ │ │ │ └── test_shorthand.sh.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── file.cc.svn-base │ │ │ │ │ │ ├── test.gyp.svn-base │ │ │ │ │ │ └── test_shorthand.sh.svn-base │ │ │ │ ├── file.cc │ │ │ │ ├── test.gyp │ │ │ │ └── test_shorthand.sh │ │ │ ├── sourceless-module │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── empty.c.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── empty.c.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ ├── empty.c │ │ │ │ └── test.gyp │ │ │ ├── strip │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── file.c.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── file.c.svn-base │ │ │ │ │ │ ├── strip.saves.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ ├── file.c │ │ │ │ ├── strip.saves │ │ │ │ ├── subdirectory │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ ├── nested_file.c.svn-base │ │ │ │ │ │ │ ├── subdirectory.gyp.svn-base │ │ │ │ │ │ │ └── test_reading_save_file_from_postbuild.sh.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── nested_file.c.svn-base │ │ │ │ │ │ │ ├── nested_strip.saves.svn-base │ │ │ │ │ │ │ ├── subdirectory.gyp.svn-base │ │ │ │ │ │ │ └── test_reading_save_file_from_postbuild.sh.svn-base │ │ │ │ │ ├── nested_file.c │ │ │ │ │ ├── nested_strip.saves │ │ │ │ │ ├── subdirectory.gyp │ │ │ │ │ └── test_reading_save_file_from_postbuild.sh │ │ │ │ └── test.gyp │ │ │ ├── type_envvars │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── file.c.svn-base │ │ │ │ │ │ ├── test.gyp.svn-base │ │ │ │ │ │ ├── test_bundle_executable.sh.svn-base │ │ │ │ │ │ ├── test_bundle_loadable_module.sh.svn-base │ │ │ │ │ │ ├── test_bundle_shared_library.sh.svn-base │ │ │ │ │ │ ├── test_nonbundle_executable.sh.svn-base │ │ │ │ │ │ ├── test_nonbundle_loadable_module.sh.svn-base │ │ │ │ │ │ ├── test_nonbundle_none.sh.svn-base │ │ │ │ │ │ ├── test_nonbundle_shared_library.sh.svn-base │ │ │ │ │ │ └── test_nonbundle_static_library.sh.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── file.c.svn-base │ │ │ │ │ │ ├── test.gyp.svn-base │ │ │ │ │ │ ├── test_bundle_executable.sh.svn-base │ │ │ │ │ │ ├── test_bundle_loadable_module.sh.svn-base │ │ │ │ │ │ ├── test_bundle_shared_library.sh.svn-base │ │ │ │ │ │ ├── test_nonbundle_executable.sh.svn-base │ │ │ │ │ │ ├── test_nonbundle_loadable_module.sh.svn-base │ │ │ │ │ │ ├── test_nonbundle_none.sh.svn-base │ │ │ │ │ │ ├── test_nonbundle_shared_library.sh.svn-base │ │ │ │ │ │ └── test_nonbundle_static_library.sh.svn-base │ │ │ │ ├── file.c │ │ │ │ ├── test.gyp │ │ │ │ ├── test_bundle_executable.sh │ │ │ │ ├── test_bundle_loadable_module.sh │ │ │ │ ├── test_bundle_shared_library.sh │ │ │ │ ├── test_nonbundle_executable.sh │ │ │ │ ├── test_nonbundle_loadable_module.sh │ │ │ │ ├── test_nonbundle_none.sh │ │ │ │ ├── test_nonbundle_shared_library.sh │ │ │ │ └── test_nonbundle_static_library.sh │ │ │ ├── xcode-env-order │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── main.c.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── Info.plist.svn-base │ │ │ │ │ │ ├── file.ext1.svn-base │ │ │ │ │ │ ├── file.ext2.svn-base │ │ │ │ │ │ ├── file.ext3.svn-base │ │ │ │ │ │ ├── main.c.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ ├── Info.plist │ │ │ │ ├── file.ext1 │ │ │ │ ├── file.ext2 │ │ │ │ ├── file.ext3 │ │ │ │ ├── main.c │ │ │ │ └── test.gyp │ │ │ └── xcode-gcc │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── valid_c.c.svn-base │ │ │ │ │ ├── valid_cc.cc.svn-base │ │ │ │ │ ├── valid_m.m.svn-base │ │ │ │ │ ├── valid_mm.mm.svn-base │ │ │ │ │ ├── warn_about_invalid_offsetof_macro.cc.svn-base │ │ │ │ │ └── warn_about_missing_newline.c.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── test.gyp.svn-base │ │ │ │ │ ├── valid_c.c.svn-base │ │ │ │ │ ├── valid_cc.cc.svn-base │ │ │ │ │ ├── valid_m.m.svn-base │ │ │ │ │ ├── valid_mm.mm.svn-base │ │ │ │ │ ├── warn_about_invalid_offsetof_macro.cc.svn-base │ │ │ │ │ └── warn_about_missing_newline.c.svn-base │ │ │ │ ├── test.gyp │ │ │ │ ├── valid_c.c │ │ │ │ ├── valid_cc.cc │ │ │ │ ├── valid_m.m │ │ │ │ ├── valid_mm.mm │ │ │ │ ├── warn_about_invalid_offsetof_macro.cc │ │ │ │ └── warn_about_missing_newline.c │ │ ├── make │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── gyptest-dependencies.py.svn-base │ │ │ │ │ ├── gyptest-noload.py.svn-base │ │ │ │ │ ├── main.cc.svn-base │ │ │ │ │ └── main.h.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── dependencies.gyp.svn-base │ │ │ │ │ ├── gyptest-dependencies.py.svn-base │ │ │ │ │ ├── gyptest-noload.py.svn-base │ │ │ │ │ ├── main.cc.svn-base │ │ │ │ │ └── main.h.svn-base │ │ │ ├── dependencies.gyp │ │ │ ├── gyptest-dependencies.py │ │ │ ├── gyptest-noload.py │ │ │ ├── main.cc │ │ │ ├── main.h │ │ │ └── noload │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── main.c.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── all.gyp.svn-base │ │ │ │ │ └── main.c.svn-base │ │ │ │ ├── all.gyp │ │ │ │ ├── lib │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── shared.c.svn-base │ │ │ │ │ │ └── shared.h.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── shared.c.svn-base │ │ │ │ │ │ ├── shared.gyp.svn-base │ │ │ │ │ │ └── shared.h.svn-base │ │ │ │ ├── shared.c │ │ │ │ ├── shared.gyp │ │ │ │ └── shared.h │ │ │ │ └── main.c │ │ ├── make_global_settings │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ └── entries │ │ │ ├── basics │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── gyptest-make_global_settings.py.svn-base │ │ │ │ │ │ └── make_global_settings.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── gyptest-make_global_settings.py.svn-base │ │ │ │ │ │ └── make_global_settings.gyp.svn-base │ │ │ │ ├── gyptest-make_global_settings.py │ │ │ │ └── make_global_settings.gyp │ │ │ └── wrapper │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── gyptest-wrapper.py.svn-base │ │ │ │ │ └── wrapper.gyp.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-wrapper.py.svn-base │ │ │ │ │ └── wrapper.gyp.svn-base │ │ │ │ ├── gyptest-wrapper.py │ │ │ │ └── wrapper.gyp │ │ ├── many-actions │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── file0.svn-base │ │ │ │ │ ├── file1.svn-base │ │ │ │ │ ├── file2.svn-base │ │ │ │ │ ├── file3.svn-base │ │ │ │ │ ├── file4.svn-base │ │ │ │ │ ├── gyptest-many-actions-unsorted.py.svn-base │ │ │ │ │ ├── gyptest-many-actions.py.svn-base │ │ │ │ │ ├── many-actions-unsorted.gyp.svn-base │ │ │ │ │ └── many-actions.gyp.svn-base │ │ │ ├── file0 │ │ │ ├── file1 │ │ │ ├── file2 │ │ │ ├── file3 │ │ │ ├── file4 │ │ │ ├── gyptest-many-actions-unsorted.py │ │ │ ├── gyptest-many-actions.py │ │ │ ├── many-actions-unsorted.gyp │ │ │ └── many-actions.gyp │ │ ├── module │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── gyptest-default.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ └── gyptest-default.py.svn-base │ │ │ ├── gyptest-default.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── program.c.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── lib1.c.svn-base │ │ │ │ │ ├── lib2.c.svn-base │ │ │ │ │ ├── module.gyp.svn-base │ │ │ │ │ └── program.c.svn-base │ │ │ │ ├── lib1.c │ │ │ │ ├── lib2.c │ │ │ │ ├── module.gyp │ │ │ │ └── program.c │ │ ├── msvs │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ └── entries │ │ │ ├── config_attrs │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── gyptest-config_attrs.py.svn-base │ │ │ │ │ │ ├── hello.c.svn-base │ │ │ │ │ │ └── hello.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── gyptest-config_attrs.py.svn-base │ │ │ │ │ │ ├── hello.c.svn-base │ │ │ │ │ │ └── hello.gyp.svn-base │ │ │ │ ├── gyptest-config_attrs.py │ │ │ │ ├── hello.c │ │ │ │ └── hello.gyp │ │ │ ├── express │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── gyptest-express.py.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── express.gyp.svn-base │ │ │ │ │ │ └── gyptest-express.py.svn-base │ │ │ │ ├── base │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── base.gyp.svn-base │ │ │ │ │ └── base.gyp │ │ │ │ ├── express.gyp │ │ │ │ └── gyptest-express.py │ │ │ ├── list_excluded │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ │ ├── hello.cpp.svn-base │ │ │ │ │ │ ├── hello_exclude.gyp.svn-base │ │ │ │ │ │ └── hello_mac.cpp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ │ ├── hello.cpp.svn-base │ │ │ │ │ │ ├── hello_exclude.gyp.svn-base │ │ │ │ │ │ └── hello_mac.cpp.svn-base │ │ │ │ ├── gyptest-all.py │ │ │ │ ├── hello.cpp │ │ │ │ ├── hello_exclude.gyp │ │ │ │ └── hello_mac.cpp │ │ │ ├── missing_sources │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── gyptest-missing.py.svn-base │ │ │ │ │ │ └── hello_missing.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── gyptest-missing.py.svn-base │ │ │ │ │ │ └── hello_missing.gyp.svn-base │ │ │ │ ├── gyptest-missing.py │ │ │ │ └── hello_missing.gyp │ │ │ ├── precompiled │ │ │ │ └── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ └── entries │ │ │ ├── props │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── gyptest-props.py.svn-base │ │ │ │ │ │ ├── hello.c.svn-base │ │ │ │ │ │ └── hello.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── AppName.props.svn-base │ │ │ │ │ │ ├── AppName.vsprops.svn-base │ │ │ │ │ │ ├── gyptest-props.py.svn-base │ │ │ │ │ │ ├── hello.c.svn-base │ │ │ │ │ │ └── hello.gyp.svn-base │ │ │ │ ├── AppName.props │ │ │ │ ├── AppName.vsprops │ │ │ │ ├── gyptest-props.py │ │ │ │ ├── hello.c │ │ │ │ └── hello.gyp │ │ │ ├── shared_output │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── common.gypi.svn-base │ │ │ │ │ │ ├── gyptest-shared_output.py.svn-base │ │ │ │ │ │ ├── hello.c.svn-base │ │ │ │ │ │ └── hello.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── common.gypi.svn-base │ │ │ │ │ │ ├── gyptest-shared_output.py.svn-base │ │ │ │ │ │ ├── hello.c.svn-base │ │ │ │ │ │ └── hello.gyp.svn-base │ │ │ │ ├── common.gypi │ │ │ │ ├── gyptest-shared_output.py │ │ │ │ ├── hello.c │ │ │ │ ├── hello.gyp │ │ │ │ └── there │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── there.c.svn-base │ │ │ │ │ │ └── there.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── there.c.svn-base │ │ │ │ │ │ └── there.gyp.svn-base │ │ │ │ │ ├── there.c │ │ │ │ │ └── there.gyp │ │ │ └── uldi2010 │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ ├── hello.c.svn-base │ │ │ │ │ ├── hello.gyp.svn-base │ │ │ │ │ └── hello2.c.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ ├── hello.c.svn-base │ │ │ │ │ ├── hello.gyp.svn-base │ │ │ │ │ └── hello2.c.svn-base │ │ │ │ ├── gyptest-all.py │ │ │ │ ├── hello.c │ │ │ │ ├── hello.gyp │ │ │ │ └── hello2.c │ │ ├── multiple-targets │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ └── gyptest-default.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ └── gyptest-default.py.svn-base │ │ │ ├── gyptest-all.py │ │ │ ├── gyptest-default.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── common.c.svn-base │ │ │ │ │ ├── multiple.gyp.svn-base │ │ │ │ │ ├── prog1.c.svn-base │ │ │ │ │ └── prog2.c.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── common.c.svn-base │ │ │ │ │ ├── multiple.gyp.svn-base │ │ │ │ │ ├── prog1.c.svn-base │ │ │ │ │ └── prog2.c.svn-base │ │ │ │ ├── common.c │ │ │ │ ├── multiple.gyp │ │ │ │ ├── prog1.c │ │ │ │ └── prog2.c │ │ ├── ninja │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ └── entries │ │ │ ├── action_dependencies │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── gyptest-action-dependencies.py.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ └── gyptest-action-dependencies.py.svn-base │ │ │ │ ├── gyptest-action-dependencies.py │ │ │ │ └── src │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── a.c.svn-base │ │ │ │ │ │ ├── a.h.svn-base │ │ │ │ │ │ ├── action_dependencies.gyp.svn-base │ │ │ │ │ │ ├── b.c.svn-base │ │ │ │ │ │ ├── b.h.svn-base │ │ │ │ │ │ ├── c.c.svn-base │ │ │ │ │ │ ├── c.h.svn-base │ │ │ │ │ │ └── emit.py.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── a.c.svn-base │ │ │ │ │ │ ├── a.h.svn-base │ │ │ │ │ │ ├── action_dependencies.gyp.svn-base │ │ │ │ │ │ ├── b.c.svn-base │ │ │ │ │ │ ├── b.h.svn-base │ │ │ │ │ │ ├── c.c.svn-base │ │ │ │ │ │ ├── c.h.svn-base │ │ │ │ │ │ └── emit.py.svn-base │ │ │ │ │ ├── a.c │ │ │ │ │ ├── a.h │ │ │ │ │ ├── action_dependencies.gyp │ │ │ │ │ ├── b.c │ │ │ │ │ ├── b.h │ │ │ │ │ ├── c.c │ │ │ │ │ ├── c.h │ │ │ │ │ └── emit.py │ │ │ ├── chained-dependency │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── gyptest-chained-dependency.py.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── chained-dependency.gyp.svn-base │ │ │ │ │ │ ├── chained.c.svn-base │ │ │ │ │ │ └── gyptest-chained-dependency.py.svn-base │ │ │ │ ├── chained-dependency.gyp │ │ │ │ ├── chained.c │ │ │ │ └── gyptest-chained-dependency.py │ │ │ ├── normalize-paths-win │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── gyptest-normalize-paths.py.svn-base │ │ │ │ │ │ ├── hello.cc.svn-base │ │ │ │ │ │ └── normalize-paths.gyp.svn-base │ │ │ │ ├── gyptest-normalize-paths.py │ │ │ │ ├── hello.cc │ │ │ │ └── normalize-paths.gyp │ │ │ ├── s-needs-no-depfiles │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── gyptest-s-needs-no-depfiles.py.svn-base │ │ │ │ │ │ └── s-needs-no-depfiles.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── empty.s.svn-base │ │ │ │ │ │ ├── gyptest-s-needs-no-depfiles.py.svn-base │ │ │ │ │ │ └── s-needs-no-depfiles.gyp.svn-base │ │ │ │ ├── empty.s │ │ │ │ ├── gyptest-s-needs-no-depfiles.py │ │ │ │ └── s-needs-no-depfiles.gyp │ │ │ ├── solibs_avoid_relinking │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── gyptest-solibs-avoid-relinking.py.svn-base │ │ │ │ │ │ ├── main.cc.svn-base │ │ │ │ │ │ ├── solib.cc.svn-base │ │ │ │ │ │ └── solibs_avoid_relinking.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── gyptest-solibs-avoid-relinking.py.svn-base │ │ │ │ │ │ ├── main.cc.svn-base │ │ │ │ │ │ ├── solib.cc.svn-base │ │ │ │ │ │ └── solibs_avoid_relinking.gyp.svn-base │ │ │ │ ├── gyptest-solibs-avoid-relinking.py │ │ │ │ ├── main.cc │ │ │ │ ├── solib.cc │ │ │ │ └── solibs_avoid_relinking.gyp │ │ │ └── use-custom-environment-files │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── gyptest-use-custom-environment-files.py.svn-base │ │ │ │ │ └── use-custom-environment-files.cc.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-use-custom-environment-files.py.svn-base │ │ │ │ │ ├── use-custom-environment-files.cc.svn-base │ │ │ │ │ └── use-custom-environment-files.gyp.svn-base │ │ │ │ ├── gyptest-use-custom-environment-files.py │ │ │ │ ├── use-custom-environment-files.cc │ │ │ │ └── use-custom-environment-files.gyp │ │ ├── no-output │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── gyptest-no-output.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ └── gyptest-no-output.py.svn-base │ │ │ ├── gyptest-no-output.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ └── nooutput.gyp.svn-base │ │ │ │ └── nooutput.gyp │ │ ├── product │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── gyptest-product.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-product.py.svn-base │ │ │ │ │ ├── hello.c.svn-base │ │ │ │ │ └── product.gyp.svn-base │ │ │ ├── gyptest-product.py │ │ │ ├── hello.c │ │ │ └── product.gyp │ │ ├── relative │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── gyptest-default.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ └── gyptest-default.py.svn-base │ │ │ ├── foo │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ └── entries │ │ │ │ ├── a │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── a.cc.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── a.cc.svn-base │ │ │ │ │ │ │ └── a.gyp.svn-base │ │ │ │ │ ├── a.cc │ │ │ │ │ ├── a.gyp │ │ │ │ │ └── c │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── c.cc.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── c.cc.svn-base │ │ │ │ │ │ │ └── c.gyp.svn-base │ │ │ │ │ │ ├── c.cc │ │ │ │ │ │ └── c.gyp │ │ │ │ └── b │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── b.cc.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── b.cc.svn-base │ │ │ │ │ │ └── b.gyp.svn-base │ │ │ │ │ ├── b.cc │ │ │ │ │ └── b.gyp │ │ │ └── gyptest-default.py │ │ ├── rename │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── gyptest-filecase.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ └── gyptest-filecase.py.svn-base │ │ │ ├── filecase │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── file.c.svn-base │ │ │ │ │ │ ├── test-casesensitive.gyp.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── file.c.svn-base │ │ │ │ │ │ ├── test-casesensitive.gyp.svn-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ ├── file.c │ │ │ │ ├── test-casesensitive.gyp │ │ │ │ └── test.gyp │ │ │ └── gyptest-filecase.py │ │ ├── restat │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── gyptest-restat.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ └── gyptest-restat.py.svn-base │ │ │ ├── gyptest-restat.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── create_intermediate.py.svn-base │ │ │ │ │ ├── restat.gyp.svn-base │ │ │ │ │ └── touch.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── create_intermediate.py.svn-base │ │ │ │ │ ├── restat.gyp.svn-base │ │ │ │ │ └── touch.py.svn-base │ │ │ │ ├── create_intermediate.py │ │ │ │ ├── restat.gyp │ │ │ │ └── touch.py │ │ ├── rules-dirname │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── gyptest-dirname.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ └── gyptest-dirname.py.svn-base │ │ │ ├── gyptest-dirname.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── copy-file.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── actions.gyp.svn-base │ │ │ │ │ └── copy-file.py.svn-base │ │ │ │ ├── actions.gyp │ │ │ │ ├── copy-file.py │ │ │ │ └── subdir │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── main.cc.svn-base │ │ │ │ │ └── printvars.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── input-rule-dirname.gyp.svn-base │ │ │ │ │ ├── main.cc.svn-base │ │ │ │ │ └── printvars.py.svn-base │ │ │ │ ├── a │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ └── entries │ │ │ │ └── b │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── c.gencc.svn-base │ │ │ │ │ │ └── c.printvars.svn-base │ │ │ │ │ ├── c.gencc │ │ │ │ │ └── c.printvars │ │ │ │ ├── foo │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ └── entries │ │ │ │ └── bar │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── baz.gencc.svn-base │ │ │ │ │ │ └── baz.printvars.svn-base │ │ │ │ │ ├── baz.gencc │ │ │ │ │ └── baz.printvars │ │ │ │ ├── input-rule-dirname.gyp │ │ │ │ ├── main.cc │ │ │ │ └── printvars.py │ │ ├── rules-rebuild │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ └── gyptest-default.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ └── gyptest-default.py.svn-base │ │ │ ├── gyptest-all.py │ │ │ ├── gyptest-default.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── make-sources.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── main.c.svn-base │ │ │ │ │ ├── make-sources.py.svn-base │ │ │ │ │ ├── prog1.in.svn-base │ │ │ │ │ ├── prog2.in.svn-base │ │ │ │ │ └── same_target.gyp.svn-base │ │ │ │ ├── main.c │ │ │ │ ├── make-sources.py │ │ │ │ ├── prog1.in │ │ │ │ ├── prog2.in │ │ │ │ └── same_target.gyp │ │ ├── rules-variables │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── gyptest-rules-variables.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ └── gyptest-rules-variables.py.svn-base │ │ │ ├── gyptest-rules-variables.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── input_ext.c.svn-base │ │ │ │ │ ├── test.input_root.c.svn-base │ │ │ │ │ └── variables.gyp.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── input_ext.c.svn-base │ │ │ │ │ ├── test.input_root.c.svn-base │ │ │ │ │ └── variables.gyp.svn-base │ │ │ │ ├── input_ext.c │ │ │ │ ├── input_name │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── test.c.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ └── test.c.svn-base │ │ │ │ └── test.c │ │ │ │ ├── input_path │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ └── entries │ │ │ │ └── subdir │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── test.c.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ └── test.c.svn-base │ │ │ │ │ └── test.c │ │ │ │ ├── subdir │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── input_dirname.c.svn-base │ │ │ │ │ │ └── test.c.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── input_dirname.c.svn-base │ │ │ │ │ │ └── test.c.svn-base │ │ │ │ ├── input_dirname.c │ │ │ │ └── test.c │ │ │ │ ├── test.input_root.c │ │ │ │ └── variables.gyp │ │ ├── rules │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ ├── gyptest-default.py.svn-base │ │ │ │ │ ├── gyptest-input-root.py.svn-base │ │ │ │ │ └── gyptest-special-variables.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ ├── gyptest-default.py.svn-base │ │ │ │ │ ├── gyptest-input-root.py.svn-base │ │ │ │ │ └── gyptest-special-variables.py.svn-base │ │ │ ├── gyptest-all.py │ │ │ ├── gyptest-default.py │ │ │ ├── gyptest-input-root.py │ │ │ ├── gyptest-special-variables.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── actions.gyp.svn-base │ │ │ │ │ ├── an_asm.S.svn-base │ │ │ │ │ ├── as.bat.svn-base │ │ │ │ │ ├── copy-file.py.svn-base │ │ │ │ │ ├── input-root.gyp.svn-base │ │ │ │ │ ├── rule.py.svn-base │ │ │ │ │ └── special-variables.gyp.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── actions.gyp.svn-base │ │ │ │ │ ├── an_asm.S.svn-base │ │ │ │ │ ├── as.bat.svn-base │ │ │ │ │ ├── copy-file.py.svn-base │ │ │ │ │ ├── input-root.gyp.svn-base │ │ │ │ │ ├── rule.py.svn-base │ │ │ │ │ ├── somefile.ext.svn-base │ │ │ │ │ └── special-variables.gyp.svn-base │ │ │ │ ├── actions.gyp │ │ │ │ ├── an_asm.S │ │ │ │ ├── as.bat │ │ │ │ ├── copy-file.py │ │ │ │ ├── external │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── external.gyp.svn-base │ │ │ │ │ │ ├── file1.in.svn-base │ │ │ │ │ │ └── file2.in.svn-base │ │ │ │ ├── external.gyp │ │ │ │ ├── file1.in │ │ │ │ └── file2.in │ │ │ │ ├── input-root.gyp │ │ │ │ ├── noaction │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── no_action_with_rules_fails.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── file1.in.svn-base │ │ │ │ │ │ └── no_action_with_rules_fails.gyp.svn-base │ │ │ │ ├── file1.in │ │ │ │ └── no_action_with_rules_fails.gyp │ │ │ │ ├── rule.py │ │ │ │ ├── somefile.ext │ │ │ │ ├── special-variables.gyp │ │ │ │ ├── subdir1 │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── executable.gyp.svn-base │ │ │ │ │ │ ├── function1.in.svn-base │ │ │ │ │ │ ├── function2.in.svn-base │ │ │ │ │ │ └── program.c.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── executable.gyp.svn-base │ │ │ │ │ │ ├── function1.in.svn-base │ │ │ │ │ │ ├── function2.in.svn-base │ │ │ │ │ │ └── program.c.svn-base │ │ │ │ ├── executable.gyp │ │ │ │ ├── function1.in │ │ │ │ ├── function2.in │ │ │ │ └── program.c │ │ │ │ ├── subdir2 │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── file1.in.svn-base │ │ │ │ │ │ ├── file2.in.svn-base │ │ │ │ │ │ ├── no_action.gyp.svn-base │ │ │ │ │ │ └── none.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── file1.in.svn-base │ │ │ │ │ │ ├── file2.in.svn-base │ │ │ │ │ │ ├── never_used.gyp.svn-base │ │ │ │ │ │ ├── no_action.gyp.svn-base │ │ │ │ │ │ ├── no_inputs.gyp.svn-base │ │ │ │ │ │ └── none.gyp.svn-base │ │ │ │ ├── file1.in │ │ │ │ ├── file2.in │ │ │ │ ├── never_used.gyp │ │ │ │ ├── no_action.gyp │ │ │ │ ├── no_inputs.gyp │ │ │ │ └── none.gyp │ │ │ │ ├── subdir3 │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── executable2.gyp.svn-base │ │ │ │ │ │ ├── function3.in.svn-base │ │ │ │ │ │ └── program.c.svn-base │ │ │ │ ├── executable2.gyp │ │ │ │ ├── function3.in │ │ │ │ └── program.c │ │ │ │ └── subdir4 │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── asm-function.assem.svn-base │ │ │ │ │ ├── build-asm.gyp.svn-base │ │ │ │ │ └── program.c.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── asm-function.assem.svn-base │ │ │ │ │ ├── build-asm.gyp.svn-base │ │ │ │ │ └── program.c.svn-base │ │ │ │ ├── asm-function.assem │ │ │ │ ├── build-asm.gyp │ │ │ │ └── program.c │ │ ├── same-gyp-name │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ ├── gyptest-default.py.svn-base │ │ │ │ │ └── gyptest-library.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ ├── gyptest-default.py.svn-base │ │ │ │ │ └── gyptest-library.py.svn-base │ │ │ ├── gyptest-all.py │ │ │ ├── gyptest-default.py │ │ │ ├── gyptest-library.py │ │ │ ├── library │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ └── test.gyp.svn-base │ │ │ │ ├── one │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── prop-base │ │ │ │ │ │ │ └── sub.gyp.svn-base │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── sub.gyp.svn-base │ │ │ │ │ └── sub.gyp │ │ │ │ ├── test.gyp │ │ │ │ └── two │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── sub.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ └── sub.gyp.svn-base │ │ │ │ │ └── sub.gyp │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ └── all.gyp.svn-base │ │ │ │ ├── all.gyp │ │ │ │ ├── subdir1 │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── executable.gyp.svn-base │ │ │ │ │ │ └── main1.cc.svn-base │ │ │ │ ├── executable.gyp │ │ │ │ └── main1.cc │ │ │ │ └── subdir2 │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── executable.gyp.svn-base │ │ │ │ │ └── main2.cc.svn-base │ │ │ │ ├── executable.gyp │ │ │ │ └── main2.cc │ │ ├── same-rule-output-file-name │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── gyptest-all.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ └── gyptest-all.py.svn-base │ │ │ ├── gyptest-all.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── subdirs.gyp.svn-base │ │ │ │ │ └── touch.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── subdirs.gyp.svn-base │ │ │ │ │ └── touch.py.svn-base │ │ │ │ ├── subdir1 │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── subdir1.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ └── subdir1.gyp.svn-base │ │ │ │ └── subdir1.gyp │ │ │ │ ├── subdir2 │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── subdir2.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ └── subdir2.gyp.svn-base │ │ │ │ └── subdir2.gyp │ │ │ │ ├── subdirs.gyp │ │ │ │ └── touch.py │ │ ├── same-source-file-name │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ ├── gyptest-default.py.svn-base │ │ │ │ │ ├── gyptest-fail-shared.py.svn-base │ │ │ │ │ ├── gyptest-fail-static.py.svn-base │ │ │ │ │ └── gyptest-pass-executable.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ ├── gyptest-default.py.svn-base │ │ │ │ │ ├── gyptest-fail-shared.py.svn-base │ │ │ │ │ ├── gyptest-fail-static.py.svn-base │ │ │ │ │ └── gyptest-pass-executable.py.svn-base │ │ │ ├── gyptest-all.py │ │ │ ├── gyptest-default.py │ │ │ ├── gyptest-fail-shared.py │ │ │ ├── gyptest-fail-static.py │ │ │ ├── gyptest-pass-executable.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── all.gyp.svn-base │ │ │ │ │ ├── double-executable.gyp.svn-base │ │ │ │ │ ├── double-shared.gyp.svn-base │ │ │ │ │ ├── double-static.gyp.svn-base │ │ │ │ │ └── prog3.c.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── all.gyp.svn-base │ │ │ │ │ ├── double-executable.gyp.svn-base │ │ │ │ │ ├── double-shared.gyp.svn-base │ │ │ │ │ ├── double-static.gyp.svn-base │ │ │ │ │ ├── func.c.svn-base │ │ │ │ │ ├── prog1.c.svn-base │ │ │ │ │ ├── prog2.c.svn-base │ │ │ │ │ └── prog3.c.svn-base │ │ │ │ ├── all.gyp │ │ │ │ ├── double-executable.gyp │ │ │ │ ├── double-shared.gyp │ │ │ │ ├── double-static.gyp │ │ │ │ ├── func.c │ │ │ │ ├── prog1.c │ │ │ │ ├── prog2.c │ │ │ │ ├── prog3.c │ │ │ │ ├── subdir1 │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── func.c.svn-base │ │ │ │ └── func.c │ │ │ │ └── subdir2 │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ └── func.c.svn-base │ │ │ │ └── func.c │ │ ├── same-target-name-different-directory │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── gyptest-all.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ └── gyptest-all.py.svn-base │ │ │ ├── gyptest-all.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── subdirs.gyp.svn-base │ │ │ │ │ └── touch.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── subdirs.gyp.svn-base │ │ │ │ │ └── touch.py.svn-base │ │ │ │ ├── subdir1 │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── subdir1.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ └── subdir1.gyp.svn-base │ │ │ │ └── subdir1.gyp │ │ │ │ ├── subdir2 │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── subdir2.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ └── subdir2.gyp.svn-base │ │ │ │ └── subdir2.gyp │ │ │ │ ├── subdirs.gyp │ │ │ │ └── touch.py │ │ ├── same-target-name │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── gyptest-same-target-name.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ └── gyptest-same-target-name.py.svn-base │ │ │ ├── gyptest-same-target-name.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── all.gyp.svn-base │ │ │ │ │ ├── executable1.gyp.svn-base │ │ │ │ │ └── executable2.gyp.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── all.gyp.svn-base │ │ │ │ │ ├── executable1.gyp.svn-base │ │ │ │ │ └── executable2.gyp.svn-base │ │ │ │ ├── all.gyp │ │ │ │ ├── executable1.gyp │ │ │ │ └── executable2.gyp │ │ ├── sanitize-rule-names │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── blah.S.svn-base │ │ │ │ │ └── sanitize-rule-names.gyp.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── blah.S.svn-base │ │ │ │ │ ├── gyptest-sanitize-rule-names.py.svn-base │ │ │ │ │ ├── hello.cc.svn-base │ │ │ │ │ ├── sanitize-rule-names.gyp.svn-base │ │ │ │ │ └── script.py.svn-base │ │ │ ├── blah.S │ │ │ ├── gyptest-sanitize-rule-names.py │ │ │ ├── hello.cc │ │ │ ├── sanitize-rule-names.gyp │ │ │ └── script.py │ │ ├── scons_tools │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── gyptest-tools.py.svn-base │ │ │ │ │ ├── tools.c.svn-base │ │ │ │ │ └── tools.gyp.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-tools.py.svn-base │ │ │ │ │ ├── tools.c.svn-base │ │ │ │ │ └── tools.gyp.svn-base │ │ │ ├── gyptest-tools.py │ │ │ ├── site_scons │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ └── entries │ │ │ │ └── site_tools │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── this_tool.py.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ └── this_tool.py.svn-base │ │ │ │ │ └── this_tool.py │ │ │ ├── tools.c │ │ │ └── tools.gyp │ │ ├── self-dependency │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── common.gypi.svn-base │ │ │ │ │ ├── dep.gyp.svn-base │ │ │ │ │ ├── gyptest-self-dependency.py.svn-base │ │ │ │ │ └── self_dependency.gyp.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── common.gypi.svn-base │ │ │ │ │ ├── dep.gyp.svn-base │ │ │ │ │ ├── gyptest-self-dependency.py.svn-base │ │ │ │ │ └── self_dependency.gyp.svn-base │ │ │ ├── common.gypi │ │ │ ├── dep.gyp │ │ │ ├── gyptest-self-dependency.py │ │ │ └── self_dependency.gyp │ │ ├── sibling │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ └── gyptest-relocate.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ └── gyptest-relocate.py.svn-base │ │ │ ├── gyptest-all.py │ │ │ ├── gyptest-relocate.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ └── entries │ │ │ │ ├── build │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── all.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ └── all.gyp.svn-base │ │ │ │ └── all.gyp │ │ │ │ ├── prog1 │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── prog1.c.svn-base │ │ │ │ │ │ └── prog1.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── prog1.c.svn-base │ │ │ │ │ │ └── prog1.gyp.svn-base │ │ │ │ ├── prog1.c │ │ │ │ └── prog1.gyp │ │ │ │ └── prog2 │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── prog2.c.svn-base │ │ │ │ │ └── prog2.gyp.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── prog2.c.svn-base │ │ │ │ │ └── prog2.gyp.svn-base │ │ │ │ ├── prog2.c │ │ │ │ └── prog2.gyp │ │ ├── small │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── gyptest-small.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ └── gyptest-small.py.svn-base │ │ │ └── gyptest-small.py │ │ ├── standalone-static-library │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── gyptest-standalone-static-library.py.svn-base │ │ │ │ │ ├── invalid.gyp.svn-base │ │ │ │ │ ├── mylib.c.svn-base │ │ │ │ │ ├── mylib.gyp.svn-base │ │ │ │ │ └── prog.c.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-standalone-static-library.py.svn-base │ │ │ │ │ ├── invalid.gyp.svn-base │ │ │ │ │ ├── mylib.c.svn-base │ │ │ │ │ ├── mylib.gyp.svn-base │ │ │ │ │ └── prog.c.svn-base │ │ │ ├── gyptest-standalone-static-library.py │ │ │ ├── invalid.gyp │ │ │ ├── mylib.c │ │ │ ├── mylib.gyp │ │ │ └── prog.c │ │ ├── standalone │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-standalone.py.svn-base │ │ │ │ │ └── standalone.gyp.svn-base │ │ │ ├── gyptest-standalone.py │ │ │ └── standalone.gyp │ │ ├── subdirectory │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── gyptest-SYMROOT-all.py.svn-base │ │ │ │ │ ├── gyptest-SYMROOT-default.py.svn-base │ │ │ │ │ ├── gyptest-subdir-all.py.svn-base │ │ │ │ │ ├── gyptest-subdir-default.py.svn-base │ │ │ │ │ ├── gyptest-subdir2-deep.py.svn-base │ │ │ │ │ ├── gyptest-top-all.py.svn-base │ │ │ │ │ └── gyptest-top-default.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-SYMROOT-all.py.svn-base │ │ │ │ │ ├── gyptest-SYMROOT-default.py.svn-base │ │ │ │ │ ├── gyptest-subdir-all.py.svn-base │ │ │ │ │ ├── gyptest-subdir-default.py.svn-base │ │ │ │ │ ├── gyptest-subdir2-deep.py.svn-base │ │ │ │ │ ├── gyptest-top-all.py.svn-base │ │ │ │ │ └── gyptest-top-default.py.svn-base │ │ │ ├── gyptest-SYMROOT-all.py │ │ │ ├── gyptest-SYMROOT-default.py │ │ │ ├── gyptest-subdir-all.py │ │ │ ├── gyptest-subdir-default.py │ │ │ ├── gyptest-subdir2-deep.py │ │ │ ├── gyptest-top-all.py │ │ │ ├── gyptest-top-default.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── prog1.c.svn-base │ │ │ │ │ ├── prog1.gyp.svn-base │ │ │ │ │ └── symroot.gypi.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── prog1.c.svn-base │ │ │ │ │ ├── prog1.gyp.svn-base │ │ │ │ │ └── symroot.gypi.svn-base │ │ │ │ ├── prog1.c │ │ │ │ ├── prog1.gyp │ │ │ │ ├── subdir │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── prog2.c.svn-base │ │ │ │ │ │ └── prog2.gyp.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── prog2.c.svn-base │ │ │ │ │ │ └── prog2.gyp.svn-base │ │ │ │ ├── prog2.c │ │ │ │ ├── prog2.gyp │ │ │ │ └── subdir2 │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── prog3.c.svn-base │ │ │ │ │ │ └── prog3.gyp.svn-base │ │ │ │ │ ├── prog3.c │ │ │ │ │ └── prog3.gyp │ │ │ │ └── symroot.gypi │ │ ├── toolsets │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── gyptest-toolsets.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-toolsets.py.svn-base │ │ │ │ │ ├── main.cc.svn-base │ │ │ │ │ ├── toolsets.cc.svn-base │ │ │ │ │ └── toolsets.gyp.svn-base │ │ │ ├── gyptest-toolsets.py │ │ │ ├── main.cc │ │ │ ├── toolsets.cc │ │ │ └── toolsets.gyp │ │ ├── toplevel-dir │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── gyptest-toplevel-dir.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ └── gyptest-toplevel-dir.py.svn-base │ │ │ ├── gyptest-toplevel-dir.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ └── entries │ │ │ │ ├── sub1 │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── main.gyp.svn-base │ │ │ │ │ │ └── prog1.c.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── main.gyp.svn-base │ │ │ │ │ │ └── prog1.c.svn-base │ │ │ │ ├── main.gyp │ │ │ │ └── prog1.c │ │ │ │ └── sub2 │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── prog2.c.svn-base │ │ │ │ │ └── prog2.gyp.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── prog2.c.svn-base │ │ │ │ │ └── prog2.gyp.svn-base │ │ │ │ ├── prog2.c │ │ │ │ └── prog2.gyp │ │ ├── variables │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ └── entries │ │ │ ├── commands │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── commands-repeated.gyp.stdout.svn-base │ │ │ │ │ │ ├── commands-repeated.gyp.svn-base │ │ │ │ │ │ ├── commands-repeated.gypd.golden.svn-base │ │ │ │ │ │ ├── commands.gyp.ignore-env.stdout.svn-base │ │ │ │ │ │ ├── commands.gyp.stdout.svn-base │ │ │ │ │ │ ├── commands.gyp.svn-base │ │ │ │ │ │ ├── commands.gypd.golden.svn-base │ │ │ │ │ │ ├── commands.gypi.svn-base │ │ │ │ │ │ ├── gyptest-commands-ignore-env.py.svn-base │ │ │ │ │ │ ├── gyptest-commands-repeated.py.svn-base │ │ │ │ │ │ ├── gyptest-commands.py.svn-base │ │ │ │ │ │ ├── test.py.svn-base │ │ │ │ │ │ └── update_golden.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── commands-repeated.gyp.stdout.svn-base │ │ │ │ │ │ ├── commands-repeated.gyp.svn-base │ │ │ │ │ │ ├── commands-repeated.gypd.golden.svn-base │ │ │ │ │ │ ├── commands.gyp.ignore-env.stdout.svn-base │ │ │ │ │ │ ├── commands.gyp.stdout.svn-base │ │ │ │ │ │ ├── commands.gyp.svn-base │ │ │ │ │ │ ├── commands.gypd.golden.svn-base │ │ │ │ │ │ ├── commands.gypi.svn-base │ │ │ │ │ │ ├── gyptest-commands-ignore-env.py.svn-base │ │ │ │ │ │ ├── gyptest-commands-repeated.py.svn-base │ │ │ │ │ │ ├── gyptest-commands.py.svn-base │ │ │ │ │ │ ├── test.py.svn-base │ │ │ │ │ │ └── update_golden.svn-base │ │ │ │ ├── commands-repeated.gyp │ │ │ │ ├── commands-repeated.gyp.stdout │ │ │ │ ├── commands-repeated.gypd.golden │ │ │ │ ├── commands.gyp │ │ │ │ ├── commands.gyp.ignore-env.stdout │ │ │ │ ├── commands.gyp.stdout │ │ │ │ ├── commands.gypd.golden │ │ │ │ ├── commands.gypi │ │ │ │ ├── gyptest-commands-ignore-env.py │ │ │ │ ├── gyptest-commands-repeated.py │ │ │ │ ├── gyptest-commands.py │ │ │ │ ├── test.py │ │ │ │ └── update_golden │ │ │ ├── filelist │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── gyptest-filelist.py.svn-base │ │ │ │ │ │ └── update_golden.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── filelist.gyp.stdout.svn-base │ │ │ │ │ │ ├── filelist.gypd.golden.svn-base │ │ │ │ │ │ ├── gyptest-filelist.py.svn-base │ │ │ │ │ │ └── update_golden.svn-base │ │ │ │ ├── filelist.gyp.stdout │ │ │ │ ├── filelist.gypd.golden │ │ │ │ ├── gyptest-filelist.py │ │ │ │ ├── src │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ └── filelist.gyp.svn-base │ │ │ │ │ └── filelist.gyp │ │ │ │ └── update_golden │ │ │ ├── latelate │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── gyptest-latelate.py.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ └── gyptest-latelate.py.svn-base │ │ │ │ ├── gyptest-latelate.py │ │ │ │ └── src │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ ├── latelate.gyp.svn-base │ │ │ │ │ │ └── program.cc.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── latelate.gyp.svn-base │ │ │ │ │ │ └── program.cc.svn-base │ │ │ │ │ ├── latelate.gyp │ │ │ │ │ └── program.cc │ │ │ └── variable-in-path │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── gyptest-variable-in-path.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-variable-in-path.py.svn-base │ │ │ │ │ └── variable-in-path.gyp.svn-base │ │ │ │ ├── C1 │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ ├── prop-base │ │ │ │ │ │ └── hello.cc.svn-base │ │ │ │ │ └── text-base │ │ │ │ │ │ └── hello.cc.svn-base │ │ │ │ └── hello.cc │ │ │ │ ├── gyptest-variable-in-path.py │ │ │ │ └── variable-in-path.gyp │ │ ├── variants │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ └── gyptest-variants.py.svn-base │ │ │ │ └── text-base │ │ │ │ │ └── gyptest-variants.py.svn-base │ │ │ ├── gyptest-variants.py │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── variants.c.svn-base │ │ │ │ │ └── variants.gyp.svn-base │ │ │ │ ├── variants.c │ │ │ │ └── variants.gyp │ │ └── win │ │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ ├── entries │ │ │ ├── prop-base │ │ │ │ ├── gyptest-cl-analysis.py.svn-base │ │ │ │ ├── gyptest-cl-default-char-is-unsigned.py.svn-base │ │ │ │ ├── gyptest-cl-force-include-files.py.svn-base │ │ │ │ ├── gyptest-cl-pdbname-override.py.svn-base │ │ │ │ ├── gyptest-cl-pdbname.py.svn-base │ │ │ │ ├── gyptest-cl-treat-wchar-t-as-built-in-type.py.svn-base │ │ │ │ ├── gyptest-lib-ltcg.py.svn-base │ │ │ │ ├── gyptest-link-entrypointsymbol.py.svn-base │ │ │ │ ├── gyptest-link-large-address-aware.py.svn-base │ │ │ │ ├── gyptest-link-pdb.py.svn-base │ │ │ │ ├── gyptest-link-profile.py.svn-base │ │ │ │ └── gyptest-link-shard.py.svn-base │ │ │ └── text-base │ │ │ │ ├── gyptest-asm-files.py.svn-base │ │ │ │ ├── gyptest-cl-additional-include-dirs.py.svn-base │ │ │ │ ├── gyptest-cl-additional-options.py.svn-base │ │ │ │ ├── gyptest-cl-analysis.py.svn-base │ │ │ │ ├── gyptest-cl-buffer-security-check.py.svn-base │ │ │ │ ├── gyptest-cl-character-set.py.svn-base │ │ │ │ ├── gyptest-cl-debug-format.py.svn-base │ │ │ │ ├── gyptest-cl-default-char-is-unsigned.py.svn-base │ │ │ │ ├── gyptest-cl-exception-handling.py.svn-base │ │ │ │ ├── gyptest-cl-force-include-files.py.svn-base │ │ │ │ ├── gyptest-cl-function-level-linking.py.svn-base │ │ │ │ ├── gyptest-cl-optimizations.py.svn-base │ │ │ │ ├── gyptest-cl-pdbname-override.py.svn-base │ │ │ │ ├── gyptest-cl-pdbname.py.svn-base │ │ │ │ ├── gyptest-cl-rtti.py.svn-base │ │ │ │ ├── gyptest-cl-runtime-checks.py.svn-base │ │ │ │ ├── gyptest-cl-runtime-library.py.svn-base │ │ │ │ ├── gyptest-cl-treat-wchar-t-as-built-in-type.py.svn-base │ │ │ │ ├── gyptest-cl-warning-as-error.py.svn-base │ │ │ │ ├── gyptest-cl-warning-level.py.svn-base │ │ │ │ ├── gyptest-command-quote.py.svn-base │ │ │ │ ├── gyptest-lib-ltcg.py.svn-base │ │ │ │ ├── gyptest-link-additional-deps.py.svn-base │ │ │ │ ├── gyptest-link-additional-options.py.svn-base │ │ │ │ ├── gyptest-link-aslr.py.svn-base │ │ │ │ ├── gyptest-link-debug-info.py.svn-base │ │ │ │ ├── gyptest-link-default-libs.py.svn-base │ │ │ │ ├── gyptest-link-deffile.py.svn-base │ │ │ │ ├── gyptest-link-delay-load-dlls.py.svn-base │ │ │ │ ├── gyptest-link-entrypointsymbol.py.svn-base │ │ │ │ ├── gyptest-link-fixed-base.py.svn-base │ │ │ │ ├── gyptest-link-generate-manifest.py.svn-base │ │ │ │ ├── gyptest-link-incremental.py.svn-base │ │ │ │ ├── gyptest-link-large-address-aware.py.svn-base │ │ │ │ ├── gyptest-link-library-adjust.py.svn-base │ │ │ │ ├── gyptest-link-library-directories.py.svn-base │ │ │ │ ├── gyptest-link-nodefaultlib.py.svn-base │ │ │ │ ├── gyptest-link-nxcompat.py.svn-base │ │ │ │ ├── gyptest-link-opt-icf.py.svn-base │ │ │ │ ├── gyptest-link-opt-ref.py.svn-base │ │ │ │ ├── gyptest-link-outputfile.py.svn-base │ │ │ │ ├── gyptest-link-pdb.py.svn-base │ │ │ │ ├── gyptest-link-profile.py.svn-base │ │ │ │ ├── gyptest-link-restat-importlib.py.svn-base │ │ │ │ ├── gyptest-link-shard.py.svn-base │ │ │ │ ├── gyptest-link-subsystem.py.svn-base │ │ │ │ ├── gyptest-link-tsaware.py.svn-base │ │ │ │ ├── gyptest-link-uldi.py.svn-base │ │ │ │ ├── gyptest-long-command-line.py.svn-base │ │ │ │ ├── gyptest-macro-projectname.py.svn-base │ │ │ │ ├── gyptest-macro-vcinstalldir.py.svn-base │ │ │ │ ├── gyptest-macros-containing-gyp.py.svn-base │ │ │ │ ├── gyptest-macros-in-inputs-and-outputs.py.svn-base │ │ │ │ ├── gyptest-midl-rules.py.svn-base │ │ │ │ ├── gyptest-quoting-commands.py.svn-base │ │ │ │ └── gyptest-rc-build.py.svn-base │ │ │ ├── asm-files │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── asm-files.gyp.svn-base │ │ │ │ │ ├── b.s.svn-base │ │ │ │ │ ├── c.S.svn-base │ │ │ │ │ └── hello.cc.svn-base │ │ │ ├── asm-files.gyp │ │ │ ├── b.s │ │ │ ├── c.S │ │ │ └── hello.cc │ │ │ ├── batch-file-action │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── batch-file-action.gyp.svn-base │ │ │ │ │ ├── infile.svn-base │ │ │ │ │ └── somecmd.bat.svn-base │ │ │ ├── batch-file-action.gyp │ │ │ ├── infile │ │ │ └── somecmd.bat │ │ │ ├── command-quote │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── a.S.svn-base │ │ │ │ │ ├── bat with spaces.bat.svn-base │ │ │ │ │ ├── command-quote.gyp.svn-base │ │ │ │ │ └── go.bat.svn-base │ │ │ ├── a.S │ │ │ ├── bat with spaces.bat │ │ │ ├── command-quote.gyp │ │ │ ├── go.bat │ │ │ └── subdir │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ └── entries │ │ │ │ └── and │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ └── entries │ │ │ │ └── another │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ └── in-subdir.gyp.svn-base │ │ │ │ └── in-subdir.gyp │ │ │ ├── compiler-flags │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── analysis.gyp.svn-base │ │ │ │ │ ├── default-char-is-unsigned.cc.svn-base │ │ │ │ │ ├── force-include-files.cc.svn-base │ │ │ │ │ ├── pdbname-override.gyp.svn-base │ │ │ │ │ ├── treat-wchar-t-as-built-in-type1.cc.svn-base │ │ │ │ │ ├── treat-wchar-t-as-built-in-type2.cc.svn-base │ │ │ │ │ └── uninit.cc.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── additional-include-dirs.cc.svn-base │ │ │ │ │ ├── additional-include-dirs.gyp.svn-base │ │ │ │ │ ├── additional-options.cc.svn-base │ │ │ │ │ ├── additional-options.gyp.svn-base │ │ │ │ │ ├── analysis.gyp.svn-base │ │ │ │ │ ├── buffer-security-check.gyp.svn-base │ │ │ │ │ ├── buffer-security.cc.svn-base │ │ │ │ │ ├── character-set-mbcs.cc.svn-base │ │ │ │ │ ├── character-set-unicode.cc.svn-base │ │ │ │ │ ├── character-set.gyp.svn-base │ │ │ │ │ ├── debug-format.gyp.svn-base │ │ │ │ │ ├── default-char-is-unsigned.cc.svn-base │ │ │ │ │ ├── default-char-is-unsigned.gyp.svn-base │ │ │ │ │ ├── exception-handling-on.cc.svn-base │ │ │ │ │ ├── exception-handling.gyp.svn-base │ │ │ │ │ ├── force-include-files.cc.svn-base │ │ │ │ │ ├── force-include-files.gyp.svn-base │ │ │ │ │ ├── function-level-linking.cc.svn-base │ │ │ │ │ ├── function-level-linking.gyp.svn-base │ │ │ │ │ ├── hello.cc.svn-base │ │ │ │ │ ├── optimizations.gyp.svn-base │ │ │ │ │ ├── pdbname-override.gyp.svn-base │ │ │ │ │ ├── pdbname.cc.svn-base │ │ │ │ │ ├── pdbname.gyp.svn-base │ │ │ │ │ ├── rtti-on.cc.svn-base │ │ │ │ │ ├── rtti.gyp.svn-base │ │ │ │ │ ├── runtime-checks.cc.svn-base │ │ │ │ │ ├── runtime-checks.gyp.svn-base │ │ │ │ │ ├── runtime-library-md.cc.svn-base │ │ │ │ │ ├── runtime-library-mdd.cc.svn-base │ │ │ │ │ ├── runtime-library-mt.cc.svn-base │ │ │ │ │ ├── runtime-library-mtd.cc.svn-base │ │ │ │ │ ├── runtime-library.gyp.svn-base │ │ │ │ │ ├── treat-wchar-t-as-built-in-type.gyp.svn-base │ │ │ │ │ ├── treat-wchar-t-as-built-in-type1.cc.svn-base │ │ │ │ │ ├── treat-wchar-t-as-built-in-type2.cc.svn-base │ │ │ │ │ ├── uninit.cc.svn-base │ │ │ │ │ ├── warning-as-error.cc.svn-base │ │ │ │ │ ├── warning-as-error.gyp.svn-base │ │ │ │ │ ├── warning-level.gyp.svn-base │ │ │ │ │ ├── warning-level1.cc.svn-base │ │ │ │ │ ├── warning-level2.cc.svn-base │ │ │ │ │ ├── warning-level3.cc.svn-base │ │ │ │ │ └── warning-level4.cc.svn-base │ │ │ ├── additional-include-dirs.cc │ │ │ ├── additional-include-dirs.gyp │ │ │ ├── additional-options.cc │ │ │ ├── additional-options.gyp │ │ │ ├── analysis.gyp │ │ │ ├── buffer-security-check.gyp │ │ │ ├── buffer-security.cc │ │ │ ├── character-set-mbcs.cc │ │ │ ├── character-set-unicode.cc │ │ │ ├── character-set.gyp │ │ │ ├── debug-format.gyp │ │ │ ├── default-char-is-unsigned.cc │ │ │ ├── default-char-is-unsigned.gyp │ │ │ ├── exception-handling-on.cc │ │ │ ├── exception-handling.gyp │ │ │ ├── force-include-files.cc │ │ │ ├── force-include-files.gyp │ │ │ ├── function-level-linking.cc │ │ │ ├── function-level-linking.gyp │ │ │ ├── hello.cc │ │ │ ├── optimizations.gyp │ │ │ ├── pdbname-override.gyp │ │ │ ├── pdbname.cc │ │ │ ├── pdbname.gyp │ │ │ ├── rtti-on.cc │ │ │ ├── rtti.gyp │ │ │ ├── runtime-checks.cc │ │ │ ├── runtime-checks.gyp │ │ │ ├── runtime-library-md.cc │ │ │ ├── runtime-library-mdd.cc │ │ │ ├── runtime-library-mt.cc │ │ │ ├── runtime-library-mtd.cc │ │ │ ├── runtime-library.gyp │ │ │ ├── subdir │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── header.h.svn-base │ │ │ │ └── header.h │ │ │ ├── treat-wchar-t-as-built-in-type.gyp │ │ │ ├── treat-wchar-t-as-built-in-type1.cc │ │ │ ├── treat-wchar-t-as-built-in-type2.cc │ │ │ ├── uninit.cc │ │ │ ├── warning-as-error.cc │ │ │ ├── warning-as-error.gyp │ │ │ ├── warning-level.gyp │ │ │ ├── warning-level1.cc │ │ │ ├── warning-level2.cc │ │ │ ├── warning-level3.cc │ │ │ └── warning-level4.cc │ │ │ ├── gyptest-asm-files.py │ │ │ ├── gyptest-cl-additional-include-dirs.py │ │ │ ├── gyptest-cl-additional-options.py │ │ │ ├── gyptest-cl-analysis.py │ │ │ ├── gyptest-cl-buffer-security-check.py │ │ │ ├── gyptest-cl-character-set.py │ │ │ ├── gyptest-cl-debug-format.py │ │ │ ├── gyptest-cl-default-char-is-unsigned.py │ │ │ ├── gyptest-cl-exception-handling.py │ │ │ ├── gyptest-cl-force-include-files.py │ │ │ ├── gyptest-cl-function-level-linking.py │ │ │ ├── gyptest-cl-optimizations.py │ │ │ ├── gyptest-cl-pdbname-override.py │ │ │ ├── gyptest-cl-pdbname.py │ │ │ ├── gyptest-cl-rtti.py │ │ │ ├── gyptest-cl-runtime-checks.py │ │ │ ├── gyptest-cl-runtime-library.py │ │ │ ├── gyptest-cl-treat-wchar-t-as-built-in-type.py │ │ │ ├── gyptest-cl-warning-as-error.py │ │ │ ├── gyptest-cl-warning-level.py │ │ │ ├── gyptest-command-quote.py │ │ │ ├── gyptest-lib-ltcg.py │ │ │ ├── gyptest-link-additional-deps.py │ │ │ ├── gyptest-link-additional-options.py │ │ │ ├── gyptest-link-aslr.py │ │ │ ├── gyptest-link-debug-info.py │ │ │ ├── gyptest-link-default-libs.py │ │ │ ├── gyptest-link-deffile.py │ │ │ ├── gyptest-link-delay-load-dlls.py │ │ │ ├── gyptest-link-entrypointsymbol.py │ │ │ ├── gyptest-link-fixed-base.py │ │ │ ├── gyptest-link-generate-manifest.py │ │ │ ├── gyptest-link-incremental.py │ │ │ ├── gyptest-link-large-address-aware.py │ │ │ ├── gyptest-link-library-adjust.py │ │ │ ├── gyptest-link-library-directories.py │ │ │ ├── gyptest-link-nodefaultlib.py │ │ │ ├── gyptest-link-nxcompat.py │ │ │ ├── gyptest-link-opt-icf.py │ │ │ ├── gyptest-link-opt-ref.py │ │ │ ├── gyptest-link-outputfile.py │ │ │ ├── gyptest-link-pdb.py │ │ │ ├── gyptest-link-profile.py │ │ │ ├── gyptest-link-restat-importlib.py │ │ │ ├── gyptest-link-shard.py │ │ │ ├── gyptest-link-subsystem.py │ │ │ ├── gyptest-link-tsaware.py │ │ │ ├── gyptest-link-uldi.py │ │ │ ├── gyptest-long-command-line.py │ │ │ ├── gyptest-macro-projectname.py │ │ │ ├── gyptest-macro-vcinstalldir.py │ │ │ ├── gyptest-macros-containing-gyp.py │ │ │ ├── gyptest-macros-in-inputs-and-outputs.py │ │ │ ├── gyptest-midl-rules.py │ │ │ ├── gyptest-quoting-commands.py │ │ │ ├── gyptest-rc-build.py │ │ │ ├── idl-rules │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── basic-idl.gyp.svn-base │ │ │ │ │ ├── history_indexer.idl.svn-base │ │ │ │ │ └── history_indexer_user.cc.svn-base │ │ │ ├── basic-idl.gyp │ │ │ ├── history_indexer.idl │ │ │ └── history_indexer_user.cc │ │ │ ├── importlib │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── has-exports.cc.svn-base │ │ │ │ │ ├── hello.cc.svn-base │ │ │ │ │ └── importlib.gyp.svn-base │ │ │ ├── has-exports.cc │ │ │ ├── hello.cc │ │ │ └── importlib.gyp │ │ │ ├── lib-flags │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── answer.cc.svn-base │ │ │ │ │ └── answer.h.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── answer.cc.svn-base │ │ │ │ │ ├── answer.h.svn-base │ │ │ │ │ └── ltcg.gyp.svn-base │ │ │ ├── answer.cc │ │ │ ├── answer.h │ │ │ └── ltcg.gyp │ │ │ ├── linker-flags │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── entrypointsymbol.cc.svn-base │ │ │ │ │ ├── entrypointsymbol.gyp.svn-base │ │ │ │ │ ├── profile.gyp.svn-base │ │ │ │ │ └── program-database.gyp.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── additional-deps.cc.svn-base │ │ │ │ │ ├── additional-deps.gyp.svn-base │ │ │ │ │ ├── additional-options.gyp.svn-base │ │ │ │ │ ├── aslr.gyp.svn-base │ │ │ │ │ ├── debug-info.gyp.svn-base │ │ │ │ │ ├── deffile-multiple.gyp.svn-base │ │ │ │ │ ├── deffile.cc.svn-base │ │ │ │ │ ├── deffile.def.svn-base │ │ │ │ │ ├── deffile.gyp.svn-base │ │ │ │ │ ├── delay-load-dlls.gyp.svn-base │ │ │ │ │ ├── delay-load.cc.svn-base │ │ │ │ │ ├── entrypointsymbol.cc.svn-base │ │ │ │ │ ├── entrypointsymbol.gyp.svn-base │ │ │ │ │ ├── extra.manifest.svn-base │ │ │ │ │ ├── extra2.manifest.svn-base │ │ │ │ │ ├── fixed-base.gyp.svn-base │ │ │ │ │ ├── generate-manifest.gyp.svn-base │ │ │ │ │ ├── hello.cc.svn-base │ │ │ │ │ ├── incremental.gyp.svn-base │ │ │ │ │ ├── large-address-aware.gyp.svn-base │ │ │ │ │ ├── library-adjust.cc.svn-base │ │ │ │ │ ├── library-adjust.gyp.svn-base │ │ │ │ │ ├── library-directories-define.cc.svn-base │ │ │ │ │ ├── library-directories-reference.cc.svn-base │ │ │ │ │ ├── library-directories.gyp.svn-base │ │ │ │ │ ├── no-default-libs.cc.svn-base │ │ │ │ │ ├── no-default-libs.gyp.svn-base │ │ │ │ │ ├── nodefaultlib.cc.svn-base │ │ │ │ │ ├── nodefaultlib.gyp.svn-base │ │ │ │ │ ├── nxcompat.gyp.svn-base │ │ │ │ │ ├── opt-icf.cc.svn-base │ │ │ │ │ ├── opt-icf.gyp.svn-base │ │ │ │ │ ├── opt-ref.cc.svn-base │ │ │ │ │ ├── opt-ref.gyp.svn-base │ │ │ │ │ ├── outputfile.gyp.svn-base │ │ │ │ │ ├── profile.gyp.svn-base │ │ │ │ │ ├── program-database.gyp.svn-base │ │ │ │ │ ├── subsystem-windows.cc.svn-base │ │ │ │ │ ├── subsystem.gyp.svn-base │ │ │ │ │ └── tsaware.gyp.svn-base │ │ │ ├── additional-deps.cc │ │ │ ├── additional-deps.gyp │ │ │ ├── additional-options.gyp │ │ │ ├── aslr.gyp │ │ │ ├── debug-info.gyp │ │ │ ├── deffile-multiple.gyp │ │ │ ├── deffile.cc │ │ │ ├── deffile.def │ │ │ ├── deffile.gyp │ │ │ ├── delay-load-dlls.gyp │ │ │ ├── delay-load.cc │ │ │ ├── entrypointsymbol.cc │ │ │ ├── entrypointsymbol.gyp │ │ │ ├── extra.manifest │ │ │ ├── extra2.manifest │ │ │ ├── fixed-base.gyp │ │ │ ├── generate-manifest.gyp │ │ │ ├── hello.cc │ │ │ ├── incremental.gyp │ │ │ ├── large-address-aware.gyp │ │ │ ├── library-adjust.cc │ │ │ ├── library-adjust.gyp │ │ │ ├── library-directories-define.cc │ │ │ ├── library-directories-reference.cc │ │ │ ├── library-directories.gyp │ │ │ ├── no-default-libs.cc │ │ │ ├── no-default-libs.gyp │ │ │ ├── nodefaultlib.cc │ │ │ ├── nodefaultlib.gyp │ │ │ ├── nxcompat.gyp │ │ │ ├── opt-icf.cc │ │ │ ├── opt-icf.gyp │ │ │ ├── opt-ref.cc │ │ │ ├── opt-ref.gyp │ │ │ ├── outputfile.gyp │ │ │ ├── profile.gyp │ │ │ ├── program-database.gyp │ │ │ ├── subdir │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── library.gyp.svn-base │ │ │ │ └── library.gyp │ │ │ ├── subsystem-windows.cc │ │ │ ├── subsystem.gyp │ │ │ └── tsaware.gyp │ │ │ ├── long-command-line │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── function.cc.svn-base │ │ │ │ │ ├── hello.cc.svn-base │ │ │ │ │ └── long-command-line.gyp.svn-base │ │ │ ├── function.cc │ │ │ ├── hello.cc │ │ │ └── long-command-line.gyp │ │ │ ├── precompiled │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ ├── hello.c.svn-base │ │ │ │ │ ├── hello.gyp.svn-base │ │ │ │ │ ├── hello2.c.svn-base │ │ │ │ │ └── precomp.c.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── gyptest-all.py.svn-base │ │ │ │ │ ├── hello.c.svn-base │ │ │ │ │ ├── hello.gyp.svn-base │ │ │ │ │ ├── hello2.c.svn-base │ │ │ │ │ └── precomp.c.svn-base │ │ │ ├── gyptest-all.py │ │ │ ├── hello.c │ │ │ ├── hello.gyp │ │ │ ├── hello2.c │ │ │ └── precomp.c │ │ │ ├── rc-build │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── Resource.h.svn-base │ │ │ │ │ ├── hello.cpp.svn-base │ │ │ │ │ ├── hello.gyp.svn-base │ │ │ │ │ ├── hello.h.svn-base │ │ │ │ │ ├── hello.ico.svn-base │ │ │ │ │ ├── hello.rc.svn-base │ │ │ │ │ ├── small.ico.svn-base │ │ │ │ │ └── targetver.h.svn-base │ │ │ ├── Resource.h │ │ │ ├── hello.cpp │ │ │ ├── hello.gyp │ │ │ ├── hello.h │ │ │ ├── hello.ico │ │ │ ├── hello.rc │ │ │ ├── small.ico │ │ │ ├── subdir │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── hello2.rc.svn-base │ │ │ │ │ │ └── include.h.svn-base │ │ │ │ ├── hello2.rc │ │ │ │ └── include.h │ │ │ └── targetver.h │ │ │ ├── shard │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ ├── prop-base │ │ │ │ │ ├── hello1.cc.svn-base │ │ │ │ │ ├── hello2.cc.svn-base │ │ │ │ │ ├── hello3.cc.svn-base │ │ │ │ │ ├── hello4.cc.svn-base │ │ │ │ │ └── shard.gyp.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── hello1.cc.svn-base │ │ │ │ │ ├── hello2.cc.svn-base │ │ │ │ │ ├── hello3.cc.svn-base │ │ │ │ │ ├── hello4.cc.svn-base │ │ │ │ │ └── shard.gyp.svn-base │ │ │ ├── hello1.cc │ │ │ ├── hello2.cc │ │ │ ├── hello3.cc │ │ │ ├── hello4.cc │ │ │ └── shard.gyp │ │ │ ├── uldi │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── a.cc.svn-base │ │ │ │ │ ├── b.cc.svn-base │ │ │ │ │ ├── main.cc.svn-base │ │ │ │ │ └── uldi.gyp.svn-base │ │ │ ├── a.cc │ │ │ ├── b.cc │ │ │ ├── main.cc │ │ │ └── uldi.gyp │ │ │ └── vs-macros │ │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ ├── as.py.svn-base │ │ │ │ ├── containing-gyp.gyp.svn-base │ │ │ │ ├── do_stuff.py.svn-base │ │ │ │ ├── hello.cc.svn-base │ │ │ │ ├── input-output-macros.gyp.svn-base │ │ │ │ ├── input.S.svn-base │ │ │ │ ├── projectname.gyp.svn-base │ │ │ │ ├── stuff.blah.svn-base │ │ │ │ ├── test_exists.py.svn-base │ │ │ │ └── vcinstalldir.gyp.svn-base │ │ │ ├── as.py │ │ │ ├── containing-gyp.gyp │ │ │ ├── do_stuff.py │ │ │ ├── hello.cc │ │ │ ├── input-output-macros.gyp │ │ │ ├── input.S │ │ │ ├── projectname.gyp │ │ │ ├── stuff.blah │ │ │ ├── test_exists.py │ │ │ └── vcinstalldir.gyp │ └── tools │ │ ├── .svn │ │ ├── all-wcprops │ │ ├── entries │ │ ├── prop-base │ │ │ ├── README.svn-base │ │ │ ├── graphviz.py.svn-base │ │ │ ├── pretty_gyp.py.svn-base │ │ │ ├── pretty_sln.py.svn-base │ │ │ └── pretty_vcproj.py.svn-base │ │ └── text-base │ │ │ ├── README.svn-base │ │ │ ├── graphviz.py.svn-base │ │ │ ├── pretty_gyp.py.svn-base │ │ │ ├── pretty_sln.py.svn-base │ │ │ └── pretty_vcproj.py.svn-base │ │ ├── README │ │ ├── Xcode │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ └── README.svn-base │ │ ├── README │ │ └── Specifications │ │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ ├── gyp.pbfilespec.svn-base │ │ │ │ └── gyp.xclangspec.svn-base │ │ │ ├── gyp.pbfilespec │ │ │ └── gyp.xclangspec │ │ ├── emacs │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ ├── entries │ │ │ ├── prop-base │ │ │ │ └── run-unit-tests.sh.svn-base │ │ │ └── text-base │ │ │ │ ├── README.svn-base │ │ │ │ ├── gyp-tests.el.svn-base │ │ │ │ ├── gyp.el.svn-base │ │ │ │ └── run-unit-tests.sh.svn-base │ │ ├── README │ │ ├── gyp-tests.el │ │ ├── gyp.el │ │ ├── run-unit-tests.sh │ │ └── testdata │ │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ ├── entries │ │ │ ├── prop-base │ │ │ │ └── media.gyp.svn-base │ │ │ └── text-base │ │ │ │ ├── media.gyp.fontified.svn-base │ │ │ │ └── media.gyp.svn-base │ │ │ ├── media.gyp │ │ │ └── media.gyp.fontified │ │ ├── graphviz.py │ │ ├── pretty_gyp.py │ │ ├── pretty_sln.py │ │ └── pretty_vcproj.py └── gyp_server ├── tree.h ├── webserver.c └── webserver.h /.gitignore: -------------------------------------------------------------------------------- 1 | config.gypi 2 | config.mk 3 | out/ 4 | server 5 | -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip" : "0.0.0.0", 3 | "port": 9999, 4 | 5 | "cachesize": 32 6 | } 7 | -------------------------------------------------------------------------------- /deps/libuv/src/win/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubbelboer/libuv-lua-http-server/d24660cb7669a3234b10bbed7152fa0d7d7c911a/deps/libuv/src/win/fs.c -------------------------------------------------------------------------------- /deps/libuv/test/fixtures/load_error.node: -------------------------------------------------------------------------------- 1 | foobar 2 | -------------------------------------------------------------------------------- /deps/luajit/.gitignore: -------------------------------------------------------------------------------- 1 | *.[oa] 2 | *.so 3 | *.obj 4 | *.lib 5 | *.exp 6 | *.dll 7 | *.exe 8 | *.manifest 9 | *.dmp 10 | *.swp 11 | .tags 12 | -------------------------------------------------------------------------------- /deps/luajit/src/.gitignore: -------------------------------------------------------------------------------- 1 | luajit 2 | lj_bcdef.h 3 | lj_ffdef.h 4 | lj_libdef.h 5 | lj_recdef.h 6 | lj_folddef.h 7 | lj_vm.s 8 | -------------------------------------------------------------------------------- /deps/luajit/src/host/.gitignore: -------------------------------------------------------------------------------- 1 | minilua 2 | buildvm 3 | buildvm_arch.h 4 | -------------------------------------------------------------------------------- /deps/luajit/src/jit/.gitignore: -------------------------------------------------------------------------------- 1 | vmdef.lua 2 | -------------------------------------------------------------------------------- /deps/parson/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | test -------------------------------------------------------------------------------- /deps/parson/tests/test_1_2.txt: -------------------------------------------------------------------------------- 1 | [[[[[[[[[[[[[[[[[[["Not too deep"]]]]]]]]]]]]]]]]]]] -------------------------------------------------------------------------------- /redirect.lua: -------------------------------------------------------------------------------- 1 | 2 | response.status = 302 3 | response.headers["Location"] = "http://blog.dubbelboer.com" 4 | 5 | -------------------------------------------------------------------------------- /test/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip" : "0.0.0.0", 3 | "port": 9999, 4 | 5 | "cachesize": 32 6 | } 7 | -------------------------------------------------------------------------------- /test/headers.lua: -------------------------------------------------------------------------------- 1 | 2 | for key,value in pairs(request) do 3 | response.body = response.body .. key .. ": " .. value .. "\n" 4 | end 5 | 6 | -------------------------------------------------------------------------------- /test/shutdown.lua: -------------------------------------------------------------------------------- 1 | 2 | shutdown() 3 | 4 | -------------------------------------------------------------------------------- /tools/gyp/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /tools/gyp/.svn/prop-base/DEPS.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/.svn/prop-base/PRESUBMIT.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/.svn/prop-base/gyp.bat.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 4 4 | CRLF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/.svn/prop-base/gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/.svn/prop-base/gyptest.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/.svn/prop-base/setup.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/.svn/text-base/.gitignore.svn-base: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /tools/gyp/.svn/text-base/OWNERS.svn-base: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /tools/gyp/OWNERS: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /tools/gyp/buildbot/.svn/prop-base/buildbot_run.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/pylib/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 30 4 | /svn/!svn/ver/1591/trunk/pylib 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/.svn/dir-prop-base: -------------------------------------------------------------------------------- 1 | K 10 2 | svn:ignore 3 | V 12 4 | *.pyc 5 | *.pyo 6 | 7 | END 8 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/.svn/prop-base/MSVSNew.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/.svn/prop-base/MSVSProject.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/.svn/prop-base/MSVSSettings.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/.svn/prop-base/MSVSSettings_test.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/.svn/prop-base/MSVSToolFile.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/.svn/prop-base/MSVSUserFile.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/.svn/prop-base/MSVSUtil.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/.svn/prop-base/MSVSVersion.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/.svn/prop-base/SCons.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/.svn/prop-base/__init__.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/.svn/prop-base/common.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/.svn/prop-base/common_test.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/.svn/prop-base/easy_xml.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/.svn/prop-base/easy_xml_test.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/.svn/prop-base/input.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/.svn/prop-base/mac_tool.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/.svn/prop-base/msvs_emulation.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/.svn/prop-base/ninja_syntax.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/.svn/prop-base/sun_tool.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/.svn/prop-base/win_tool.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/.svn/prop-base/xcode_emulation.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/.svn/prop-base/xcodeproj_file.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/.svn/prop-base/xml_fix.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/.svn/dir-prop-base: -------------------------------------------------------------------------------- 1 | K 10 2 | svn:ignore 3 | V 12 4 | *.pyc 5 | *.pyo 6 | 7 | END 8 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/.svn/prop-base/__init__.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/.svn/prop-base/android.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/.svn/prop-base/dump_dependency_json.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/.svn/prop-base/eclipse.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/.svn/prop-base/gypd.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/.svn/prop-base/gypsh.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/.svn/prop-base/make.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/.svn/prop-base/msvs.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/.svn/prop-base/msvs_test.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/.svn/prop-base/ninja.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/.svn/prop-base/ninja_test.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/.svn/prop-base/scons.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/.svn/prop-base/xcode.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/samples/.svn/prop-base/samples.bat.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 4 4 | CRLF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/samples/.svn/prop-base/samples.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 29 4 | /svn/!svn/ver/1591/trunk/test 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/actions-bare/.svn/prop-base/gyptest-bare.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/actions-bare/src/.svn/prop-base/bare.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/actions-multiple/src/.svn/prop-base/actions.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/actions-multiple/src/.svn/prop-base/foo.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/actions-multiple/src/.svn/prop-base/input.txt.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/actions-multiple/src/.svn/prop-base/main.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/actions-multiple/src/.svn/text-base/input.txt.svn-base: -------------------------------------------------------------------------------- 1 | hello there 2 | -------------------------------------------------------------------------------- /tools/gyp/test/actions-multiple/src/input.txt: -------------------------------------------------------------------------------- 1 | hello there 2 | -------------------------------------------------------------------------------- /tools/gyp/test/actions-none/src/.svn/prop-base/fake_cross.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/actions-none/src/.svn/prop-base/foo.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/actions-none/src/.svn/prop-base/none_with_source_files.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/actions-none/src/.svn/text-base/foo.cc.svn-base: -------------------------------------------------------------------------------- 1 | foo.cc 2 | -------------------------------------------------------------------------------- /tools/gyp/test/actions-none/src/foo.cc: -------------------------------------------------------------------------------- 1 | foo.cc 2 | -------------------------------------------------------------------------------- /tools/gyp/test/actions-subdir/.svn/prop-base/gyptest-action.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/actions-subdir/src/.svn/prop-base/make-file.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/actions-subdir/src/subdir/.svn/prop-base/make-subdir-file.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/actions/.svn/prop-base/gyptest-all.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/actions/.svn/prop-base/gyptest-default.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/actions/.svn/prop-base/gyptest-errors.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/actions/src/.svn/prop-base/action_missing_name.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/actions/src/.svn/prop-base/actions.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/actions/src/.svn/prop-base/confirm-dep-files.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/actions/src/subdir1/.svn/prop-base/counter.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/actions/src/subdir1/.svn/prop-base/executable.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/actions/src/subdir1/.svn/prop-base/make-prog2.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/actions/src/subdir2/.svn/prop-base/none.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/actions/src/subdir3/.svn/prop-base/generate_main.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/actions/src/subdir3/.svn/prop-base/null_input.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/additional-targets/src/dir1/.svn/prop-base/emit.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/additional-targets/src/dir1/lib1.c: -------------------------------------------------------------------------------- 1 | #ifdef _WIN32 2 | __declspec(dllexport) 3 | #endif 4 | int func1(void) { 5 | return 42; 6 | } 7 | -------------------------------------------------------------------------------- /tools/gyp/test/assembly/.svn/prop-base/gyptest-override.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/assembly/src/.svn/prop-base/lib1.S.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/assembly/src/.svn/prop-base/override.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/assembly/src/.svn/prop-base/override_asm.asm.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/assembly/src/.svn/text-base/as.bat.svn-base: -------------------------------------------------------------------------------- 1 | @echo off 2 | :: Mock windows assembler. 3 | cl /c %1 /Fo"%2" 4 | 5 | -------------------------------------------------------------------------------- /tools/gyp/test/assembly/src/.svn/text-base/lib1.c.svn-base: -------------------------------------------------------------------------------- 1 | int lib1_function(void) { 2 | return 42; 3 | } 4 | -------------------------------------------------------------------------------- /tools/gyp/test/assembly/src/as.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | :: Mock windows assembler. 3 | cl /c %1 /Fo"%2" 4 | 5 | -------------------------------------------------------------------------------- /tools/gyp/test/assembly/src/lib1.c: -------------------------------------------------------------------------------- 1 | int lib1_function(void) { 2 | return 42; 3 | } 4 | -------------------------------------------------------------------------------- /tools/gyp/test/build-option/.svn/prop-base/hello.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/build-option/.svn/prop-base/hello.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/builddir/.svn/prop-base/gyptest-all.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/builddir/.svn/prop-base/gyptest-default.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/builddir/src/.svn/text-base/func1.c.svn-base: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void func1(void) 4 | { 5 | printf("Hello from func1.c\n"); 6 | } 7 | -------------------------------------------------------------------------------- /tools/gyp/test/builddir/src/.svn/text-base/func2.c.svn-base: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void func2(void) 4 | { 5 | printf("Hello from func2.c\n"); 6 | } 7 | -------------------------------------------------------------------------------- /tools/gyp/test/builddir/src/.svn/text-base/func3.c.svn-base: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void func3(void) 4 | { 5 | printf("Hello from func3.c\n"); 6 | } 7 | -------------------------------------------------------------------------------- /tools/gyp/test/builddir/src/.svn/text-base/func4.c.svn-base: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void func4(void) 4 | { 5 | printf("Hello from func4.c\n"); 6 | } 7 | -------------------------------------------------------------------------------- /tools/gyp/test/builddir/src/.svn/text-base/func5.c.svn-base: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void func5(void) 4 | { 5 | printf("Hello from func5.c\n"); 6 | } 7 | -------------------------------------------------------------------------------- /tools/gyp/test/builddir/src/func1.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void func1(void) 4 | { 5 | printf("Hello from func1.c\n"); 6 | } 7 | -------------------------------------------------------------------------------- /tools/gyp/test/builddir/src/func2.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void func2(void) 4 | { 5 | printf("Hello from func2.c\n"); 6 | } 7 | -------------------------------------------------------------------------------- /tools/gyp/test/builddir/src/func3.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void func3(void) 4 | { 5 | printf("Hello from func3.c\n"); 6 | } 7 | -------------------------------------------------------------------------------- /tools/gyp/test/builddir/src/func4.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void func4(void) 4 | { 5 | printf("Hello from func4.c\n"); 6 | } 7 | -------------------------------------------------------------------------------- /tools/gyp/test/builddir/src/func5.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void func5(void) 4 | { 5 | printf("Hello from func5.c\n"); 6 | } 7 | -------------------------------------------------------------------------------- /tools/gyp/test/cflags/.svn/prop-base/cflags.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/cflags/.svn/prop-base/cflags.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/cflags/.svn/prop-base/gyptest-cflags.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/compilable/.svn/prop-base/gyptest-headers.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/compilable/src/.svn/text-base/lib1.hpp.svn-base: -------------------------------------------------------------------------------- 1 | #ifndef _lib1_hpp 2 | #define _lib1_hpp 3 | 4 | extern void lib1_function(void); 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /tools/gyp/test/compilable/src/lib1.hpp: -------------------------------------------------------------------------------- 1 | #ifndef _lib1_hpp 2 | #define _lib1_hpp 3 | 4 | extern void lib1_function(void); 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /tools/gyp/test/compiler-override/.svn/prop-base/compiler-host.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/compiler-override/.svn/prop-base/compiler.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/compiler-override/.svn/prop-base/cxxtest.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/compiler-override/.svn/prop-base/my_cc.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/compiler-override/.svn/prop-base/my_cxx.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/compiler-override/.svn/prop-base/my_ld.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/compiler-override/.svn/prop-base/test.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/configurations/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 44 4 | /svn/!svn/ver/1517/trunk/test/configurations 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/configurations/basics/.svn/prop-base/configurations.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/configurations/basics/.svn/prop-base/configurations.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/configurations/inheritance/.svn/prop-base/gyptest-inheritance.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/configurations/invalid/.svn/prop-base/actions.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/configurations/invalid/.svn/prop-base/all_dependent_settings.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/configurations/invalid/.svn/prop-base/configurations.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/configurations/invalid/.svn/prop-base/dependencies.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/configurations/invalid/.svn/prop-base/direct_dependent_settings.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/configurations/invalid/.svn/prop-base/libraries.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/configurations/invalid/.svn/prop-base/link_settings.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/configurations/invalid/.svn/prop-base/sources.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/configurations/invalid/.svn/prop-base/standalone_static_library.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/configurations/invalid/.svn/prop-base/target_name.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/configurations/invalid/.svn/prop-base/type.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/configurations/target_platform/.svn/text-base/left.c.svn-base: -------------------------------------------------------------------------------- 1 | const char *message(void) { 2 | return "left"; 3 | } 4 | -------------------------------------------------------------------------------- /tools/gyp/test/configurations/target_platform/.svn/text-base/right.c.svn-base: -------------------------------------------------------------------------------- 1 | const char *message(void) { 2 | return "right"; 3 | } 4 | -------------------------------------------------------------------------------- /tools/gyp/test/configurations/target_platform/left.c: -------------------------------------------------------------------------------- 1 | const char *message(void) { 2 | return "left"; 3 | } 4 | -------------------------------------------------------------------------------- /tools/gyp/test/configurations/target_platform/right.c: -------------------------------------------------------------------------------- 1 | const char *message(void) { 2 | return "right"; 3 | } 4 | -------------------------------------------------------------------------------- /tools/gyp/test/copies/.svn/prop-base/gyptest-all.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/copies/.svn/prop-base/gyptest-default.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/copies/.svn/prop-base/gyptest-samedir.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/copies/.svn/prop-base/gyptest-slash.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/copies/.svn/prop-base/gyptest-updir.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/copies/src/.svn/prop-base/copies-samedir.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/copies/src/.svn/prop-base/copies-slash.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/copies/src/.svn/prop-base/copies-updir.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/copies/src/.svn/prop-base/copies.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/copies/src/.svn/text-base/file1.svn-base: -------------------------------------------------------------------------------- 1 | file1 contents 2 | -------------------------------------------------------------------------------- /tools/gyp/test/copies/src/.svn/text-base/file2.svn-base: -------------------------------------------------------------------------------- 1 | file2 contents 2 | -------------------------------------------------------------------------------- /tools/gyp/test/copies/src/directory/.svn/text-base/file3.svn-base: -------------------------------------------------------------------------------- 1 | file3 contents 2 | -------------------------------------------------------------------------------- /tools/gyp/test/copies/src/directory/.svn/text-base/file4.svn-base: -------------------------------------------------------------------------------- 1 | file4 contents 2 | -------------------------------------------------------------------------------- /tools/gyp/test/copies/src/directory/file3: -------------------------------------------------------------------------------- 1 | file3 contents 2 | -------------------------------------------------------------------------------- /tools/gyp/test/copies/src/directory/file4: -------------------------------------------------------------------------------- 1 | file4 contents 2 | -------------------------------------------------------------------------------- /tools/gyp/test/copies/src/directory/subdir/.svn/text-base/file5.svn-base: -------------------------------------------------------------------------------- 1 | file5 contents 2 | -------------------------------------------------------------------------------- /tools/gyp/test/copies/src/directory/subdir/file5: -------------------------------------------------------------------------------- 1 | file5 contents 2 | -------------------------------------------------------------------------------- /tools/gyp/test/copies/src/file1: -------------------------------------------------------------------------------- 1 | file1 contents 2 | -------------------------------------------------------------------------------- /tools/gyp/test/copies/src/file2: -------------------------------------------------------------------------------- 1 | file2 contents 2 | -------------------------------------------------------------------------------- /tools/gyp/test/copies/src/parentdir/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 49 4 | /svn/!svn/ver/792/trunk/test/copies/src/parentdir 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/copies/src/parentdir/subdir/.svn/text-base/file6.svn-base: -------------------------------------------------------------------------------- 1 | file6 contents 2 | -------------------------------------------------------------------------------- /tools/gyp/test/copies/src/parentdir/subdir/file6: -------------------------------------------------------------------------------- 1 | file6 contents 2 | -------------------------------------------------------------------------------- /tools/gyp/test/custom-generator/.svn/prop-base/mygenerator.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/custom-generator/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/cxxflags/.svn/prop-base/cxxflags.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/cxxflags/.svn/prop-base/cxxflags.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/defines-escaping/.svn/prop-base/defines-escaping.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/defines-escaping/.svn/prop-base/defines-escaping.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/defines/.svn/prop-base/defines.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/defines/.svn/prop-base/defines.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/defines/.svn/prop-base/gyptest-defines-env.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/defines/.svn/prop-base/gyptest-defines.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/dependencies/.svn/prop-base/a.c.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/dependencies/.svn/prop-base/double_dependency.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/dependencies/.svn/prop-base/double_dependent.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/dependencies/.svn/prop-base/gyptest-double-dependency.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/dependencies/.svn/prop-base/gyptest-extra-targets.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/dependencies/.svn/prop-base/lib_only.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/dependencies/.svn/prop-base/main.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/dependencies/.svn/prop-base/none_traversal.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/dependencies/b/.svn/prop-base/b.c.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/dependencies/b/.svn/prop-base/b.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/dependencies/b/.svn/prop-base/b3.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/dependencies/b/.svn/text-base/b.c.svn-base: -------------------------------------------------------------------------------- 1 | int funcB() { 2 | return 2; 3 | } 4 | -------------------------------------------------------------------------------- /tools/gyp/test/dependencies/b/b.c: -------------------------------------------------------------------------------- 1 | int funcB() { 2 | return 2; 3 | } 4 | -------------------------------------------------------------------------------- /tools/gyp/test/dependencies/c/.svn/text-base/d.c.svn-base: -------------------------------------------------------------------------------- 1 | int funcD() { 2 | return 4; 3 | } 4 | -------------------------------------------------------------------------------- /tools/gyp/test/dependencies/c/d.c: -------------------------------------------------------------------------------- 1 | int funcD() { 2 | return 4; 3 | } 4 | -------------------------------------------------------------------------------- /tools/gyp/test/dependency-copy/.svn/prop-base/gyptest-copy.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/errors/.svn/prop-base/duplicate_basenames.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/errors/.svn/prop-base/duplicate_node.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/errors/.svn/prop-base/duplicate_rule.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/errors/.svn/prop-base/duplicate_targets.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/errors/.svn/prop-base/gyptest-errors.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/errors/.svn/prop-base/missing_dep.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/errors/.svn/prop-base/missing_targets.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/escaping/.svn/prop-base/gyptest-colon.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/escaping/colon/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/exclusion/.svn/prop-base/exclusion.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/exclusion/.svn/prop-base/hello.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/external-cross-compile/src/.svn/prop-base/bogus1.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/external-cross-compile/src/.svn/prop-base/bogus2.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/external-cross-compile/src/.svn/prop-base/cross.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/external-cross-compile/src/.svn/prop-base/cross_compile.gypi.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/external-cross-compile/src/.svn/prop-base/fake_cross.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/external-cross-compile/src/.svn/prop-base/program.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/external-cross-compile/src/.svn/prop-base/test1.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/external-cross-compile/src/.svn/prop-base/test2.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/external-cross-compile/src/.svn/prop-base/test3.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/external-cross-compile/src/.svn/prop-base/test4.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/external-cross-compile/src/.svn/prop-base/tochar.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/external-cross-compile/src/.svn/text-base/bogus1.cc.svn-base: -------------------------------------------------------------------------------- 1 | From bogus1.cc 2 | -------------------------------------------------------------------------------- /tools/gyp/test/external-cross-compile/src/.svn/text-base/bogus2.c.svn-base: -------------------------------------------------------------------------------- 1 | From bogus2.c 2 | -------------------------------------------------------------------------------- /tools/gyp/test/external-cross-compile/src/.svn/text-base/test1.cc.svn-base: -------------------------------------------------------------------------------- 1 | From test1.cc 2 | -------------------------------------------------------------------------------- /tools/gyp/test/external-cross-compile/src/.svn/text-base/test2.c.svn-base: -------------------------------------------------------------------------------- 1 | From test2.c 2 | -------------------------------------------------------------------------------- /tools/gyp/test/external-cross-compile/src/.svn/text-base/test3.cc.svn-base: -------------------------------------------------------------------------------- 1 | From test3.cc 2 | -------------------------------------------------------------------------------- /tools/gyp/test/external-cross-compile/src/.svn/text-base/test4.c.svn-base: -------------------------------------------------------------------------------- 1 | From test4.c 2 | -------------------------------------------------------------------------------- /tools/gyp/test/external-cross-compile/src/bogus1.cc: -------------------------------------------------------------------------------- 1 | From bogus1.cc 2 | -------------------------------------------------------------------------------- /tools/gyp/test/external-cross-compile/src/bogus2.c: -------------------------------------------------------------------------------- 1 | From bogus2.c 2 | -------------------------------------------------------------------------------- /tools/gyp/test/external-cross-compile/src/test1.cc: -------------------------------------------------------------------------------- 1 | From test1.cc 2 | -------------------------------------------------------------------------------- /tools/gyp/test/external-cross-compile/src/test2.c: -------------------------------------------------------------------------------- 1 | From test2.c 2 | -------------------------------------------------------------------------------- /tools/gyp/test/external-cross-compile/src/test3.cc: -------------------------------------------------------------------------------- 1 | From test3.cc 2 | -------------------------------------------------------------------------------- /tools/gyp/test/external-cross-compile/src/test4.c: -------------------------------------------------------------------------------- 1 | From test4.c 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/.svn/prop-base/gyptest-mac-bundle.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/actions/subdir1/.svn/prop-base/make-prog1.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/actions/subdir1/.svn/prop-base/make-prog2.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/actions/subdir2/.svn/prop-base/make-file.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/copies/.svn/prop-base/copies.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/copies/.svn/text-base/file1.svn-base: -------------------------------------------------------------------------------- 1 | file1 contents 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/copies/.svn/text-base/file2.svn-base: -------------------------------------------------------------------------------- 1 | file2 contents 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/copies/build/.svn/prop-base/README.txt.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 6 4 | native 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/copies/copies-out/.svn/prop-base/README.txt.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 6 4 | native 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/copies/file1: -------------------------------------------------------------------------------- 1 | file1 contents 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/copies/file2: -------------------------------------------------------------------------------- 1 | file2 contents 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/copies/subdir/.svn/prop-base/subdir.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/copies/subdir/.svn/text-base/file3.svn-base: -------------------------------------------------------------------------------- 1 | file3 contents 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/copies/subdir/.svn/text-base/file4.svn-base: -------------------------------------------------------------------------------- 1 | file4 contents 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/copies/subdir/build/.svn/prop-base/README.txt.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 6 4 | native 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/copies/subdir/copies-out/.svn/prop-base/README.txt.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 6 4 | native 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/copies/subdir/file3: -------------------------------------------------------------------------------- 1 | file3 contents 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/copies/subdir/file4: -------------------------------------------------------------------------------- 1 | file4 contents 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/mac-bundle/.svn/prop-base/header.h.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/mac-bundle/.svn/prop-base/main.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/mac-bundle/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/mac-bundle/.svn/text-base/app.order.svn-base: -------------------------------------------------------------------------------- 1 | _main 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/mac-bundle/.svn/text-base/header.h.svn-base: -------------------------------------------------------------------------------- 1 | int f(); 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/mac-bundle/.svn/text-base/main.c.svn-base: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/mac-bundle/.svn/text-base/resource.sb.svn-base: -------------------------------------------------------------------------------- 1 | A text file. 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/mac-bundle/app.order: -------------------------------------------------------------------------------- 1 | _main 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/mac-bundle/header.h: -------------------------------------------------------------------------------- 1 | int f(); 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/mac-bundle/main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/mac-bundle/resource.sb: -------------------------------------------------------------------------------- 1 | A text file. 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/rules/.svn/prop-base/copy-file.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/rules/subdir1/.svn/text-base/define3.in0.svn-base: -------------------------------------------------------------------------------- 1 | #define STRING3 "Hello from define3.in0\n" 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/rules/subdir1/.svn/text-base/define4.in0.svn-base: -------------------------------------------------------------------------------- 1 | #define STRING4 "Hello from define4.in0\n" 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/rules/subdir1/define3.in0: -------------------------------------------------------------------------------- 1 | #define STRING3 "Hello from define3.in0\n" 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/rules/subdir1/define4.in0: -------------------------------------------------------------------------------- 1 | #define STRING4 "Hello from define4.in0\n" 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/rules/subdir1/function1.in1: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void function1(void) 4 | { 5 | printf("Hello from function1.in1\n"); 6 | } 7 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/rules/subdir1/function2.in1: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void function2(void) 4 | { 5 | printf("Hello from function2.in1\n"); 6 | } 7 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/rules/subdir2/.svn/text-base/file1.in0.svn-base: -------------------------------------------------------------------------------- 1 | Hello from file1.in0 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/rules/subdir2/.svn/text-base/file2.in0.svn-base: -------------------------------------------------------------------------------- 1 | Hello from file2.in0 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/rules/subdir2/.svn/text-base/file3.in1.svn-base: -------------------------------------------------------------------------------- 1 | Hello from file3.in1 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/rules/subdir2/.svn/text-base/file4.in1.svn-base: -------------------------------------------------------------------------------- 1 | Hello from file4.in1 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/rules/subdir2/file1.in0: -------------------------------------------------------------------------------- 1 | Hello from file1.in0 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/rules/subdir2/file2.in0: -------------------------------------------------------------------------------- 1 | Hello from file2.in0 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/rules/subdir2/file3.in1: -------------------------------------------------------------------------------- 1 | Hello from file3.in1 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/rules/subdir2/file4.in1: -------------------------------------------------------------------------------- 1 | Hello from file4.in1 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/src/.svn/prop-base/inc.h.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/src/.svn/prop-base/prog1.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/src/.svn/prop-base/prog1.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/src/.svn/prop-base/symroot.gypi.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/src/.svn/text-base/inc.h.svn-base: -------------------------------------------------------------------------------- 1 | #define INC_STRING "inc.h" 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/src/build/.svn/prop-base/README.txt.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 6 4 | native 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/src/inc.h: -------------------------------------------------------------------------------- 1 | #define INC_STRING "inc.h" 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/src/inc1/.svn/prop-base/include1.h.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/src/inc1/.svn/text-base/include1.h.svn-base: -------------------------------------------------------------------------------- 1 | #define INCLUDE1_STRING "inc1/include1.h" 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/src/inc1/include1.h: -------------------------------------------------------------------------------- 1 | #define INCLUDE1_STRING "inc1/include1.h" 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/src/subdir2/.svn/prop-base/prog2.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/src/subdir2/.svn/prop-base/prog2.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/src/subdir2/build/.svn/prop-base/README.txt.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 6 4 | native 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/src/subdir2/deeper/.svn/prop-base/deeper.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/src/subdir2/deeper/.svn/prop-base/deeper.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/src/subdir2/deeper/.svn/prop-base/deeper.h.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/src/subdir2/deeper/.svn/text-base/deeper.h.svn-base: -------------------------------------------------------------------------------- 1 | #define DEEPER_STRING "subdir2/deeper/deeper.h" 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/src/subdir2/deeper/build/.svn/prop-base/README.txt.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 6 4 | native 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/src/subdir2/deeper/deeper.h: -------------------------------------------------------------------------------- 1 | #define DEEPER_STRING "subdir2/deeper/deeper.h" 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/src/subdir2/inc2/.svn/prop-base/include2.h.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/src/subdir2/inc2/.svn/text-base/include2.h.svn-base: -------------------------------------------------------------------------------- 1 | #define INCLUDE2_STRING "inc2/include2.h" 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/src/subdir2/inc2/include2.h: -------------------------------------------------------------------------------- 1 | #define INCLUDE2_STRING "inc2/include2.h" 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/src/subdir3/.svn/prop-base/prog3.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/src/subdir3/.svn/prop-base/prog3.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/src/subdir3/build/.svn/prop-base/README.txt.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 6 4 | native 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/src/subdir3/inc3/.svn/prop-base/include3.h.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/src/subdir3/inc3/.svn/text-base/include3.h.svn-base: -------------------------------------------------------------------------------- 1 | #define INCLUDE3_STRING "inc3/include3.h" 2 | -------------------------------------------------------------------------------- /tools/gyp/test/generator-output/src/subdir3/inc3/include3.h: -------------------------------------------------------------------------------- 1 | #define INCLUDE3_STRING "inc3/include3.h" 2 | -------------------------------------------------------------------------------- /tools/gyp/test/gyp-defines/.svn/prop-base/defines.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/gyp-defines/.svn/prop-base/echo.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/gyp-defines/.svn/prop-base/gyptest-multiple-values.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/gyp-defines/.svn/prop-base/gyptest-regyp.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/hard_dependency/src/.svn/prop-base/a.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/hard_dependency/src/.svn/prop-base/a.h.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/hard_dependency/src/.svn/prop-base/b.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/hard_dependency/src/.svn/prop-base/b.h.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/hard_dependency/src/.svn/prop-base/c.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/hard_dependency/src/.svn/prop-base/c.h.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/hard_dependency/src/.svn/prop-base/d.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/hard_dependency/src/.svn/prop-base/emit.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/hard_dependency/src/.svn/prop-base/hard_dependency.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/hello/.svn/prop-base/gyptest-all.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/hello/.svn/prop-base/gyptest-default.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/hello/.svn/prop-base/gyptest-disable-regyp.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/hello/.svn/prop-base/gyptest-regyp.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/hello/.svn/prop-base/gyptest-target.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/hello/.svn/prop-base/hello.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/home_dot_gyp/home/.gyp/.svn/text-base/include.gypi.svn-base: -------------------------------------------------------------------------------- 1 | { 2 | 'variables': { 3 | 'foo': '"fromhome"', 4 | }, 5 | } 6 | -------------------------------------------------------------------------------- /tools/gyp/test/home_dot_gyp/home/.gyp/include.gypi: -------------------------------------------------------------------------------- 1 | { 2 | 'variables': { 3 | 'foo': '"fromhome"', 4 | }, 5 | } 6 | -------------------------------------------------------------------------------- /tools/gyp/test/home_dot_gyp/home/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 46 4 | /svn/!svn/ver/747/trunk/test/home_dot_gyp/home 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/home_dot_gyp/home2/.gyp/.svn/text-base/include.gypi.svn-base: -------------------------------------------------------------------------------- 1 | { 2 | 'variables': { 3 | 'foo': '"fromhome2"', 4 | }, 5 | } 6 | -------------------------------------------------------------------------------- /tools/gyp/test/home_dot_gyp/home2/.gyp/include.gypi: -------------------------------------------------------------------------------- 1 | { 2 | 'variables': { 3 | 'foo': '"fromhome2"', 4 | }, 5 | } 6 | -------------------------------------------------------------------------------- /tools/gyp/test/home_dot_gyp/home2/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 47 4 | /svn/!svn/ver/747/trunk/test/home_dot_gyp/home2 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/include_dirs/.svn/prop-base/gyptest-all.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/include_dirs/src/.svn/prop-base/inc.h.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/include_dirs/src/.svn/prop-base/includes.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/include_dirs/src/.svn/prop-base/includes.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/include_dirs/src/.svn/text-base/inc.h.svn-base: -------------------------------------------------------------------------------- 1 | #define INC_STRING "inc.h" 2 | -------------------------------------------------------------------------------- /tools/gyp/test/include_dirs/src/inc.h: -------------------------------------------------------------------------------- 1 | #define INC_STRING "inc.h" 2 | -------------------------------------------------------------------------------- /tools/gyp/test/include_dirs/src/inc1/.svn/prop-base/include1.h.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/include_dirs/src/inc1/.svn/text-base/include1.h.svn-base: -------------------------------------------------------------------------------- 1 | #define INCLUDE1_STRING "include1.h" 2 | -------------------------------------------------------------------------------- /tools/gyp/test/include_dirs/src/inc1/include1.h: -------------------------------------------------------------------------------- 1 | #define INCLUDE1_STRING "include1.h" 2 | -------------------------------------------------------------------------------- /tools/gyp/test/include_dirs/src/shadow1/.svn/prop-base/shadow.h.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/include_dirs/src/shadow1/.svn/text-base/shadow.h.svn-base: -------------------------------------------------------------------------------- 1 | #define SHADOW_STRING "shadow1/shadow.h" 2 | -------------------------------------------------------------------------------- /tools/gyp/test/include_dirs/src/shadow1/shadow.h: -------------------------------------------------------------------------------- 1 | #define SHADOW_STRING "shadow1/shadow.h" 2 | -------------------------------------------------------------------------------- /tools/gyp/test/include_dirs/src/shadow2/.svn/prop-base/shadow.h.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/include_dirs/src/shadow2/.svn/text-base/shadow.h.svn-base: -------------------------------------------------------------------------------- 1 | #define SHADOW_STRING "shadow2/shadow.h" 2 | -------------------------------------------------------------------------------- /tools/gyp/test/include_dirs/src/shadow2/shadow.h: -------------------------------------------------------------------------------- 1 | #define SHADOW_STRING "shadow2/shadow.h" 2 | -------------------------------------------------------------------------------- /tools/gyp/test/include_dirs/src/subdir/.svn/prop-base/inc.h.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/include_dirs/src/subdir/.svn/prop-base/subdir_includes.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/include_dirs/src/subdir/.svn/prop-base/subdir_includes.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/include_dirs/src/subdir/.svn/text-base/inc.h.svn-base: -------------------------------------------------------------------------------- 1 | #define INC_STRING "subdir/inc.h" 2 | -------------------------------------------------------------------------------- /tools/gyp/test/include_dirs/src/subdir/inc.h: -------------------------------------------------------------------------------- 1 | #define INC_STRING "subdir/inc.h" 2 | -------------------------------------------------------------------------------- /tools/gyp/test/include_dirs/src/subdir/inc2/.svn/prop-base/include2.h.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/include_dirs/src/subdir/inc2/.svn/text-base/include2.h.svn-base: -------------------------------------------------------------------------------- 1 | #define INCLUDE2_STRING "subdir/inc2/include2.h" 2 | -------------------------------------------------------------------------------- /tools/gyp/test/include_dirs/src/subdir/inc2/include2.h: -------------------------------------------------------------------------------- 1 | #define INCLUDE2_STRING "subdir/inc2/include2.h" 2 | -------------------------------------------------------------------------------- /tools/gyp/test/intermediate_dir/src/.svn/prop-base/shared_infile.txt.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/intermediate_dir/src/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/intermediate_dir/src/.svn/prop-base/test2.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/intermediate_dir/src/.svn/text-base/shared_infile.txt.svn-base: -------------------------------------------------------------------------------- 1 | dummy input 2 | -------------------------------------------------------------------------------- /tools/gyp/test/intermediate_dir/src/shared_infile.txt: -------------------------------------------------------------------------------- 1 | dummy input 2 | -------------------------------------------------------------------------------- /tools/gyp/test/lib/.svn/dir-prop-base: -------------------------------------------------------------------------------- 1 | K 10 2 | svn:ignore 3 | V 13 4 | .*.swp 5 | *.pyc 6 | 7 | END 8 | -------------------------------------------------------------------------------- /tools/gyp/test/lib/.svn/prop-base/README.txt.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 6 4 | native 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/lib/.svn/prop-base/TestCmd.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/lib/.svn/prop-base/TestCommon.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/lib/.svn/prop-base/TestGyp.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/library/.svn/prop-base/gyptest-shared.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/library/.svn/prop-base/gyptest-static.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/library/src/.svn/prop-base/lib1.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/library/src/.svn/prop-base/library.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/library/src/.svn/prop-base/program.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/link-objects/.svn/prop-base/base.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/link-objects/.svn/prop-base/extra.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/link-objects/.svn/prop-base/gyptest-all.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/link-objects/.svn/prop-base/link-objects.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/link-objects/.svn/text-base/base.c.svn-base: -------------------------------------------------------------------------------- 1 | void extra(); 2 | 3 | int main(int argc, char** argv) { 4 | extra(); 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /tools/gyp/test/link-objects/.svn/text-base/extra.c.svn-base: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void extra() { 4 | printf("PASS\n"); 5 | } 6 | -------------------------------------------------------------------------------- /tools/gyp/test/link-objects/base.c: -------------------------------------------------------------------------------- 1 | void extra(); 2 | 3 | int main(int argc, char** argv) { 4 | extra(); 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /tools/gyp/test/link-objects/extra.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void extra() { 4 | printf("PASS\n"); 5 | } 6 | -------------------------------------------------------------------------------- /tools/gyp/test/linux/.svn/prop-base/gyptest-implicit-rpath.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/linux/implicit-rpath/.svn/prop-base/file.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/linux/implicit-rpath/.svn/prop-base/main.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/linux/implicit-rpath/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/linux/implicit-rpath/.svn/text-base/file.c.svn-base: -------------------------------------------------------------------------------- 1 | void f() {} 2 | -------------------------------------------------------------------------------- /tools/gyp/test/linux/implicit-rpath/.svn/text-base/main.c.svn-base: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /tools/gyp/test/linux/implicit-rpath/file.c: -------------------------------------------------------------------------------- 1 | void f() {} 2 | -------------------------------------------------------------------------------- /tools/gyp/test/linux/implicit-rpath/main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-action-envvars.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-app-error.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-app.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-archs.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-cflags.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-copies.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-copy-dylib.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-debuginfo.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-depend-on-bundle.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-framework-dirs.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-framework-headers.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-framework.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-global-settings.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-installname.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-ldflags-passed-to-libtool.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-ldflags.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-libraries.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-missing-cfbundlesignature.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-non-strs-flattened-to-env.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-objc-gc.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-postbuild-copy-bundle.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-postbuild-defaults.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-postbuild-multiple-configurations.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-postbuild-static-library.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-postbuild.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-prefixheader.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-rebuild.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-rpath.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-sdkroot.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-sourceless-module.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-strip.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/.svn/prop-base/gyptest-xcode-gcc.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/action-envvars/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 48 4 | /svn/!svn/ver/1160/trunk/test/mac/action-envvars 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/action-envvars/action/.svn/prop-base/action.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/app-bundle/.svn/prop-base/empty.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/app-bundle/.svn/prop-base/test-error.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/app-bundle/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/app-bundle/TestApp/.svn/prop-base/TestAppAppDelegate.h.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/app-bundle/TestApp/.svn/prop-base/TestAppAppDelegate.m.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/app-bundle/TestApp/.svn/prop-base/main.m.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/archs/.svn/prop-base/my_file.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/archs/.svn/prop-base/my_main_file.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/archs/.svn/prop-base/test-archs-x86_64.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/archs/.svn/prop-base/test-no-archs.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/cflags/.svn/prop-base/ccfile.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/cflags/.svn/prop-base/ccfile_withcflags.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/cflags/.svn/prop-base/cfile.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/cflags/.svn/prop-base/cppfile.cpp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/cflags/.svn/prop-base/cppfile_withcflags.cpp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/cflags/.svn/prop-base/mfile.m.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/cflags/.svn/prop-base/mmfile.mm.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/cflags/.svn/prop-base/mmfile_withcflags.mm.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/cflags/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/cflags/cfile.c: -------------------------------------------------------------------------------- 1 | #ifndef CFLAG 2 | #error CFLAG should be set 3 | #endif 4 | 5 | #ifdef CCFLAG 6 | #error CCFLAG should not be set 7 | #endif 8 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/cflags/mfile.m: -------------------------------------------------------------------------------- 1 | #ifndef CFLAG 2 | #error CFLAG should be set 3 | #endif 4 | 5 | #ifdef CCFLAG 6 | #error CCFLAG should not be set 7 | #endif 8 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/copy-dylib/.svn/prop-base/empty.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/copy-dylib/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/copy-dylib/.svn/text-base/empty.c.svn-base: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/copy-dylib/empty.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/debuginfo/.svn/prop-base/file.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/debuginfo/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/depend-on-bundle/.svn/prop-base/bundle.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/depend-on-bundle/.svn/prop-base/executable.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/depend-on-bundle/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/depend-on-bundle/.svn/text-base/bundle.c.svn-base: -------------------------------------------------------------------------------- 1 | int f() { return 42; } 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/depend-on-bundle/.svn/text-base/executable.c.svn-base: -------------------------------------------------------------------------------- 1 | int f(); 2 | int main() { 3 | return f(); 4 | } 5 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/depend-on-bundle/English.lproj/.svn/text-base/InfoPlist.strings.svn-base: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/depend-on-bundle/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/depend-on-bundle/bundle.c: -------------------------------------------------------------------------------- 1 | int f() { return 42; } 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/depend-on-bundle/executable.c: -------------------------------------------------------------------------------- 1 | int f(); 2 | int main() { 3 | return f(); 4 | } 5 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/framework-dirs/.svn/prop-base/calculate.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/framework-dirs/.svn/prop-base/framework-dirs.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/framework-headers/.svn/prop-base/myframework.h.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/framework-headers/.svn/prop-base/myframework.m.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/framework-headers/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/framework/.svn/prop-base/empty.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/framework/.svn/prop-base/framework.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/framework/TestFramework/.svn/prop-base/ObjCVector.h.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/framework/TestFramework/.svn/prop-base/ObjCVector.mm.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/framework/TestFramework/.svn/prop-base/ObjCVectorInternal.h.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/framework/TestFramework/English.lproj/.svn/text-base/InfoPlist.strings.svn-base: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/framework/TestFramework/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/global-settings/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 49 4 | /svn/!svn/ver/1170/trunk/test/mac/global-settings 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/global-settings/src/dir1/.svn/prop-base/dir1.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/global-settings/src/dir2/.svn/prop-base/dir2.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/global-settings/src/dir2/.svn/prop-base/file.txt.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/global-settings/src/dir2/.svn/text-base/file.txt.svn-base: -------------------------------------------------------------------------------- 1 | File. 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/global-settings/src/dir2/file.txt: -------------------------------------------------------------------------------- 1 | File. 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/infoplist-process/.svn/prop-base/main.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/infoplist-process/.svn/prop-base/test1.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/infoplist-process/.svn/prop-base/test2.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/infoplist-process/.svn/prop-base/test3.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/installname/.svn/prop-base/file.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/installname/.svn/prop-base/main.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/installname/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/installname/.svn/text-base/file.c.svn-base: -------------------------------------------------------------------------------- 1 | int f() { return 0; } 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/installname/.svn/text-base/main.c.svn-base: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/installname/file.c: -------------------------------------------------------------------------------- 1 | int f() { return 0; } 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/installname/main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/ldflags-libtool/.svn/prop-base/file.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/ldflags-libtool/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/ldflags-libtool/.svn/text-base/file.c.svn-base: -------------------------------------------------------------------------------- 1 | void f() {} 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/ldflags-libtool/file.c: -------------------------------------------------------------------------------- 1 | void f() {} 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/ldflags/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 41 4 | /svn/!svn/ver/1325/trunk/test/mac/ldflags 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/ldflags/subdirectory/.svn/prop-base/file.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/ldflags/subdirectory/.svn/prop-base/symbol_list.def.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/ldflags/subdirectory/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/ldflags/subdirectory/.svn/text-base/file.c.svn-base: -------------------------------------------------------------------------------- 1 | void f() {} 2 | void g() {} 3 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/ldflags/subdirectory/.svn/text-base/symbol_list.def.svn-base: -------------------------------------------------------------------------------- 1 | _f 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/ldflags/subdirectory/file.c: -------------------------------------------------------------------------------- 1 | void f() {} 2 | void g() {} 3 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/ldflags/subdirectory/symbol_list.def: -------------------------------------------------------------------------------- 1 | _f 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/libraries/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 43 4 | /svn/!svn/ver/1173/trunk/test/mac/libraries 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/libraries/subdir/.svn/prop-base/README.txt.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/libraries/subdir/.svn/prop-base/hello.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/libraries/subdir/.svn/prop-base/mylib.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/libraries/subdir/.svn/text-base/README.txt.svn-base: -------------------------------------------------------------------------------- 1 | Make things live in a subdirectory, to make sure that DEPTH works correctly. 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/libraries/subdir/README.txt: -------------------------------------------------------------------------------- 1 | Make things live in a subdirectory, to make sure that DEPTH works correctly. 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/loadable-module/.svn/prop-base/module.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/loadable-module/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/missing-cfbundlesignature/.svn/prop-base/file.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/missing-cfbundlesignature/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/missing-cfbundlesignature/.svn/text-base/file.c.svn-base: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/missing-cfbundlesignature/file.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/non-strs-flattened-to-env/.svn/prop-base/main.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/non-strs-flattened-to-env/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/objc-gc/.svn/prop-base/c-file.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/objc-gc/.svn/prop-base/cc-file.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/objc-gc/.svn/prop-base/main.m.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/objc-gc/.svn/prop-base/needs-gc-mm.mm.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/objc-gc/.svn/prop-base/needs-gc.m.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/objc-gc/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/objc-gc/.svn/text-base/c-file.c.svn-base: -------------------------------------------------------------------------------- 1 | void c_fun() {} 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/objc-gc/.svn/text-base/cc-file.cc.svn-base: -------------------------------------------------------------------------------- 1 | void cc_fun() {} 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/objc-gc/.svn/text-base/needs-gc-mm.mm.svn-base: -------------------------------------------------------------------------------- 1 | void objcpp_fun() { } 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/objc-gc/.svn/text-base/needs-gc.m.svn-base: -------------------------------------------------------------------------------- 1 | void objc_fun() { } 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/objc-gc/c-file.c: -------------------------------------------------------------------------------- 1 | void c_fun() {} 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/objc-gc/cc-file.cc: -------------------------------------------------------------------------------- 1 | void cc_fun() {} 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/objc-gc/needs-gc-mm.mm: -------------------------------------------------------------------------------- 1 | void objcpp_fun() { } 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/objc-gc/needs-gc.m: -------------------------------------------------------------------------------- 1 | void objc_fun() { } 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/postbuild-copy-bundle/.svn/prop-base/copied.txt.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/postbuild-copy-bundle/.svn/prop-base/empty.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/postbuild-copy-bundle/.svn/prop-base/main.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/postbuild-copy-bundle/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/postbuild-copy-bundle/.svn/text-base/copied.txt.svn-base: -------------------------------------------------------------------------------- 1 | old copied file 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/postbuild-copy-bundle/.svn/text-base/resource_file.sb.svn-base: -------------------------------------------------------------------------------- 1 | This is included in the framework bundle. 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/postbuild-copy-bundle/copied.txt: -------------------------------------------------------------------------------- 1 | old copied file 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/postbuild-copy-bundle/resource_file.sb: -------------------------------------------------------------------------------- 1 | This is included in the framework bundle. 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/postbuild-defaults/.svn/prop-base/main.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/postbuild-defaults/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/postbuild-fail/.svn/prop-base/file.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/postbuild-fail/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/postbuild-multiple-configurations/.svn/prop-base/main.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/postbuild-multiple-configurations/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/postbuild-static-library/.svn/prop-base/empty.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/postbuild-static-library/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/postbuilds/.svn/prop-base/copy.sh.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/postbuilds/.svn/prop-base/file.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/postbuilds/.svn/prop-base/file_g.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/postbuilds/.svn/prop-base/file_h.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/postbuilds/.svn/text-base/copy.sh.svn-base: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cp "$@" 4 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/postbuilds/copy.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cp "$@" 4 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/postbuilds/subdirectory/.svn/prop-base/copied_file.txt.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/postbuilds/subdirectory/.svn/text-base/copied_file.txt.svn-base: -------------------------------------------------------------------------------- 1 | This file should be copied to the products dir. 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/postbuilds/subdirectory/copied_file.txt: -------------------------------------------------------------------------------- 1 | This file should be copied to the products dir. 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/prefixheader/.svn/prop-base/file.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/prefixheader/.svn/prop-base/file.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/prefixheader/.svn/prop-base/file.m.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/prefixheader/.svn/prop-base/file.mm.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/prefixheader/.svn/prop-base/header.h.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/prefixheader/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/prefixheader/.svn/text-base/file.c.svn-base: -------------------------------------------------------------------------------- 1 | MyInt f() { return 0; } 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/prefixheader/.svn/text-base/file.cc.svn-base: -------------------------------------------------------------------------------- 1 | MyInt f() { return 0; } 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/prefixheader/.svn/text-base/file.m.svn-base: -------------------------------------------------------------------------------- 1 | MyInt f() { return 0; } 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/prefixheader/.svn/text-base/file.mm.svn-base: -------------------------------------------------------------------------------- 1 | MyInt f() { return 0; } 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/prefixheader/.svn/text-base/header.h.svn-base: -------------------------------------------------------------------------------- 1 | typedef int MyInt; 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/prefixheader/file.c: -------------------------------------------------------------------------------- 1 | MyInt f() { return 0; } 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/prefixheader/file.cc: -------------------------------------------------------------------------------- 1 | MyInt f() { return 0; } 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/prefixheader/file.m: -------------------------------------------------------------------------------- 1 | MyInt f() { return 0; } 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/prefixheader/file.mm: -------------------------------------------------------------------------------- 1 | MyInt f() { return 0; } 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/prefixheader/header.h: -------------------------------------------------------------------------------- 1 | typedef int MyInt; 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/rebuild/.svn/prop-base/empty.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/rebuild/.svn/prop-base/main.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/rebuild/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/rebuild/.svn/text-base/main.c.svn-base: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/rebuild/delay-touch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | sleep 1 # mtime resolution is 1 sec on unix. 6 | touch "$1" 7 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/rebuild/main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/rpath/.svn/prop-base/file.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/rpath/.svn/prop-base/main.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/rpath/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/rpath/.svn/text-base/file.c.svn-base: -------------------------------------------------------------------------------- 1 | void f() {} 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/rpath/.svn/text-base/main.c.svn-base: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/rpath/file.c: -------------------------------------------------------------------------------- 1 | void f() {} 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/rpath/main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/sdkroot/.svn/prop-base/file.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/sdkroot/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/sdkroot/.svn/text-base/file.cc.svn-base: -------------------------------------------------------------------------------- 1 | #include 2 | using std::map; 3 | 4 | int main() { 5 | } 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/sdkroot/file.cc: -------------------------------------------------------------------------------- 1 | #include 2 | using std::map; 3 | 4 | int main() { 5 | } 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/sourceless-module/.svn/prop-base/empty.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/sourceless-module/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/sourceless-module/.svn/text-base/empty.c.svn-base: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/sourceless-module/empty.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/strip/.svn/prop-base/file.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/strip/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/strip/subdirectory/.svn/prop-base/nested_file.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/strip/subdirectory/.svn/prop-base/subdirectory.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/strip/subdirectory/.svn/text-base/nested_file.c.svn-base: -------------------------------------------------------------------------------- 1 | void nested_f() {} 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/strip/subdirectory/nested_file.c: -------------------------------------------------------------------------------- 1 | void nested_f() {} 2 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/strip/subdirectory/test_reading_save_file_from_postbuild.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | test -f ${CHROMIUM_STRIP_SAVE_FILE} 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/type_envvars/.svn/prop-base/file.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/type_envvars/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/xcode-env-order/.svn/prop-base/main.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/xcode-env-order/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/xcode-gcc/.svn/prop-base/valid_c.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/xcode-gcc/.svn/prop-base/valid_cc.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/xcode-gcc/.svn/prop-base/valid_m.m.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/xcode-gcc/.svn/prop-base/valid_mm.mm.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/xcode-gcc/.svn/prop-base/warn_about_invalid_offsetof_macro.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/mac/xcode-gcc/.svn/prop-base/warn_about_missing_newline.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/make/.svn/prop-base/gyptest-noload.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/make/.svn/prop-base/main.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/make/.svn/prop-base/main.h.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/make/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikdubbelboer/libuv-lua-http-server/d24660cb7669a3234b10bbed7152fa0d7d7c911a/tools/gyp/test/make/main.h -------------------------------------------------------------------------------- /tools/gyp/test/make/noload/.svn/prop-base/main.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/make/noload/lib/.svn/prop-base/shared.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/make/noload/lib/.svn/prop-base/shared.h.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/make/noload/lib/.svn/text-base/shared.c.svn-base: -------------------------------------------------------------------------------- 1 | #include "shared.h" 2 | 3 | const char kSharedStr[] = "shared.c"; 4 | -------------------------------------------------------------------------------- /tools/gyp/test/make/noload/lib/.svn/text-base/shared.h.svn-base: -------------------------------------------------------------------------------- 1 | extern const char kSharedStr[]; 2 | -------------------------------------------------------------------------------- /tools/gyp/test/make/noload/lib/shared.c: -------------------------------------------------------------------------------- 1 | #include "shared.h" 2 | 3 | const char kSharedStr[] = "shared.c"; 4 | -------------------------------------------------------------------------------- /tools/gyp/test/make/noload/lib/shared.h: -------------------------------------------------------------------------------- 1 | extern const char kSharedStr[]; 2 | -------------------------------------------------------------------------------- /tools/gyp/test/make_global_settings/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 50 4 | /svn/!svn/ver/1591/trunk/test/make_global_settings 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/make_global_settings/basics/.svn/prop-base/gyptest-make_global_settings.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/make_global_settings/basics/.svn/prop-base/make_global_settings.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/make_global_settings/wrapper/.svn/prop-base/gyptest-wrapper.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/make_global_settings/wrapper/.svn/prop-base/wrapper.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/module/src/.svn/prop-base/program.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/msvs/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 34 4 | /svn/!svn/ver/1527/trunk/test/msvs 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/msvs/config_attrs/.svn/prop-base/gyptest-config_attrs.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/msvs/config_attrs/.svn/prop-base/hello.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/msvs/config_attrs/.svn/prop-base/hello.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/msvs/express/.svn/prop-base/gyptest-express.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/msvs/list_excluded/.svn/prop-base/gyptest-all.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/msvs/list_excluded/.svn/prop-base/hello.cpp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/msvs/list_excluded/.svn/prop-base/hello_exclude.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/msvs/list_excluded/.svn/prop-base/hello_mac.cpp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/msvs/missing_sources/.svn/prop-base/gyptest-missing.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/msvs/missing_sources/.svn/prop-base/hello_missing.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/msvs/precompiled/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 46 4 | /svn/!svn/ver/1397/trunk/test/msvs/precompiled 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/msvs/props/.svn/prop-base/gyptest-props.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/msvs/props/.svn/prop-base/hello.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/msvs/props/.svn/prop-base/hello.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/msvs/shared_output/.svn/prop-base/common.gypi.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/msvs/shared_output/.svn/prop-base/gyptest-shared_output.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/msvs/shared_output/.svn/prop-base/hello.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/msvs/shared_output/.svn/prop-base/hello.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/msvs/shared_output/there/.svn/prop-base/there.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/msvs/shared_output/there/.svn/prop-base/there.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/msvs/uldi2010/.svn/prop-base/gyptest-all.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/msvs/uldi2010/.svn/prop-base/hello.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/msvs/uldi2010/.svn/prop-base/hello.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/msvs/uldi2010/.svn/prop-base/hello2.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/multiple-targets/src/.svn/prop-base/common.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/multiple-targets/src/.svn/prop-base/multiple.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/multiple-targets/src/.svn/prop-base/prog1.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/multiple-targets/src/.svn/prop-base/prog2.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/multiple-targets/src/common.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void common(void) 4 | { 5 | printf("hello from common.c\n"); 6 | return; 7 | } 8 | -------------------------------------------------------------------------------- /tools/gyp/test/ninja/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 35 4 | /svn/!svn/ver/1544/trunk/test/ninja 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/ninja/action_dependencies/src/.svn/prop-base/a.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/ninja/action_dependencies/src/.svn/prop-base/a.h.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/ninja/action_dependencies/src/.svn/prop-base/action_dependencies.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/ninja/action_dependencies/src/.svn/prop-base/b.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/ninja/action_dependencies/src/.svn/prop-base/b.h.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/ninja/action_dependencies/src/.svn/prop-base/c.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/ninja/action_dependencies/src/.svn/prop-base/c.h.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/ninja/chained-dependency/chained.c: -------------------------------------------------------------------------------- 1 | #include "generated/header.h" 2 | 3 | int main(int argc, char** argv) { 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /tools/gyp/test/ninja/s-needs-no-depfiles/.svn/prop-base/s-needs-no-depfiles.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/ninja/s-needs-no-depfiles/.svn/text-base/empty.s.svn-base: -------------------------------------------------------------------------------- 1 | # This file intentionally left blank. 2 | -------------------------------------------------------------------------------- /tools/gyp/test/ninja/s-needs-no-depfiles/empty.s: -------------------------------------------------------------------------------- 1 | # This file intentionally left blank. 2 | -------------------------------------------------------------------------------- /tools/gyp/test/ninja/solibs_avoid_relinking/.svn/prop-base/main.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/ninja/solibs_avoid_relinking/.svn/prop-base/solib.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/ninja/solibs_avoid_relinking/.svn/prop-base/solibs_avoid_relinking.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/ninja/solibs_avoid_relinking/.svn/text-base/main.cc.svn-base: -------------------------------------------------------------------------------- 1 | extern int foo(); 2 | 3 | int main() { 4 | return foo(); 5 | } 6 | -------------------------------------------------------------------------------- /tools/gyp/test/ninja/solibs_avoid_relinking/main.cc: -------------------------------------------------------------------------------- 1 | extern int foo(); 2 | 3 | int main() { 4 | return foo(); 5 | } 6 | -------------------------------------------------------------------------------- /tools/gyp/test/ninja/use-custom-environment-files/.svn/prop-base/gyptest-use-custom-environment-files.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/ninja/use-custom-environment-files/.svn/prop-base/use-custom-environment-files.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/no-output/.svn/prop-base/gyptest-no-output.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/relative/foo/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 42 4 | /svn/!svn/ver/1105/trunk/test/relative/foo 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/relative/foo/a/.svn/prop-base/a.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/relative/foo/a/c/.svn/prop-base/c.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/relative/foo/b/.svn/prop-base/b.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rename/.svn/prop-base/gyptest-filecase.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rename/filecase/.svn/prop-base/file.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rename/filecase/.svn/prop-base/test-casesensitive.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rename/filecase/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rename/filecase/.svn/text-base/file.c.svn-base: -------------------------------------------------------------------------------- 1 | int main() { return 0; } 2 | -------------------------------------------------------------------------------- /tools/gyp/test/rename/filecase/file.c: -------------------------------------------------------------------------------- 1 | int main() { return 0; } 2 | -------------------------------------------------------------------------------- /tools/gyp/test/restat/.svn/prop-base/gyptest-restat.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/restat/src/.svn/prop-base/create_intermediate.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/restat/src/.svn/prop-base/restat.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/restat/src/.svn/prop-base/touch.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rules-dirname/src/subdir/.svn/prop-base/main.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rules-dirname/src/subdir/a/b/.svn/text-base/c.printvars.svn-base: -------------------------------------------------------------------------------- 1 | # Empty file for testing build rules 2 | -------------------------------------------------------------------------------- /tools/gyp/test/rules-dirname/src/subdir/a/b/c.printvars: -------------------------------------------------------------------------------- 1 | # Empty file for testing build rules 2 | -------------------------------------------------------------------------------- /tools/gyp/test/rules-dirname/src/subdir/foo/bar/.svn/text-base/baz.printvars.svn-base: -------------------------------------------------------------------------------- 1 | # Empty file for testing build rules 2 | -------------------------------------------------------------------------------- /tools/gyp/test/rules-dirname/src/subdir/foo/bar/baz.printvars: -------------------------------------------------------------------------------- 1 | # Empty file for testing build rules 2 | -------------------------------------------------------------------------------- /tools/gyp/test/rules-rebuild/src/.svn/prop-base/make-sources.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rules-variables/src/.svn/prop-base/input_ext.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rules-variables/src/.svn/prop-base/test.input_root.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rules-variables/src/.svn/prop-base/variables.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rules-variables/src/input_name/.svn/prop-base/test.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rules-variables/src/input_path/subdir/.svn/prop-base/test.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rules-variables/src/subdir/.svn/prop-base/input_dirname.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rules-variables/src/subdir/.svn/prop-base/test.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/.svn/prop-base/gyptest-all.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/.svn/prop-base/gyptest-special-variables.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/.svn/prop-base/actions.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/.svn/prop-base/an_asm.S.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/.svn/prop-base/as.bat.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 4 4 | CRLF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/.svn/prop-base/copy-file.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/.svn/prop-base/input-root.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/.svn/prop-base/rule.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/.svn/prop-base/special-variables.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/external/.svn/text-base/file1.in.svn-base: -------------------------------------------------------------------------------- 1 | Hello from file1.in 2 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/external/.svn/text-base/file2.in.svn-base: -------------------------------------------------------------------------------- 1 | Hello from file2.in 2 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/external/file1.in: -------------------------------------------------------------------------------- 1 | Hello from file1.in 2 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/external/file2.in: -------------------------------------------------------------------------------- 1 | Hello from file2.in 2 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/noaction/.svn/prop-base/no_action_with_rules_fails.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/noaction/.svn/text-base/file1.in.svn-base: -------------------------------------------------------------------------------- 1 | Hello from file1.in 2 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/noaction/file1.in: -------------------------------------------------------------------------------- 1 | Hello from file1.in 2 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/subdir1/.svn/prop-base/executable.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/subdir1/.svn/prop-base/function1.in.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/subdir1/.svn/prop-base/function2.in.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/subdir1/.svn/prop-base/program.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/subdir1/function1.in: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void function1(void) 4 | { 5 | printf("Hello from function1.in\n"); 6 | } 7 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/subdir1/function2.in: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void function2(void) 4 | { 5 | printf("Hello from function2.in\n"); 6 | } 7 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/subdir2/.svn/prop-base/file1.in.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/subdir2/.svn/prop-base/file2.in.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/subdir2/.svn/prop-base/no_action.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/subdir2/.svn/prop-base/none.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/subdir2/.svn/text-base/file1.in.svn-base: -------------------------------------------------------------------------------- 1 | Hello from file1.in 2 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/subdir2/.svn/text-base/file2.in.svn-base: -------------------------------------------------------------------------------- 1 | Hello from file2.in 2 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/subdir2/file1.in: -------------------------------------------------------------------------------- 1 | Hello from file1.in 2 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/subdir2/file2.in: -------------------------------------------------------------------------------- 1 | Hello from file2.in 2 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/subdir4/.svn/prop-base/asm-function.assem.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/subdir4/.svn/prop-base/build-asm.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/rules/src/subdir4/.svn/prop-base/program.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/same-gyp-name/.svn/prop-base/gyptest-library.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/same-gyp-name/library/.svn/prop-base/test.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/same-gyp-name/library/one/.svn/prop-base/sub.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/same-gyp-name/library/two/.svn/prop-base/sub.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/same-gyp-name/src/subdir1/main1.cc: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { 4 | printf("Hello from main1.cc\n"); 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /tools/gyp/test/same-gyp-name/src/subdir2/main2.cc: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { 4 | printf("Hello from main2.cc\n"); 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /tools/gyp/test/same-rule-output-file-name/.svn/prop-base/gyptest-all.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/same-rule-output-file-name/src/.svn/prop-base/subdirs.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/same-rule-output-file-name/src/.svn/prop-base/touch.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/same-rule-output-file-name/src/subdir1/.svn/prop-base/subdir1.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/same-rule-output-file-name/src/subdir2/.svn/prop-base/subdir2.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/same-source-file-name/.svn/prop-base/gyptest-all.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/same-source-file-name/.svn/prop-base/gyptest-default.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/same-source-file-name/src/.svn/prop-base/all.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/same-source-file-name/src/.svn/prop-base/double-executable.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/same-source-file-name/src/.svn/prop-base/double-shared.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/same-source-file-name/src/.svn/prop-base/double-static.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/same-source-file-name/src/.svn/prop-base/prog3.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/same-source-file-name/src/func.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void func(void) 4 | { 5 | printf("Hello %s from func.c\n", PROG); 6 | } 7 | -------------------------------------------------------------------------------- /tools/gyp/test/same-target-name-different-directory/.svn/prop-base/gyptest-all.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/same-target-name-different-directory/src/.svn/prop-base/subdirs.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/same-target-name-different-directory/src/.svn/prop-base/touch.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/same-target-name-different-directory/src/subdir1/.svn/prop-base/subdir1.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/same-target-name-different-directory/src/subdir2/.svn/prop-base/subdir2.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/same-target-name/src/.svn/prop-base/all.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/same-target-name/src/.svn/prop-base/executable1.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/same-target-name/src/.svn/prop-base/executable2.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/sanitize-rule-names/.svn/prop-base/blah.S.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/sanitize-rule-names/.svn/prop-base/sanitize-rule-names.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/scons_tools/.svn/prop-base/tools.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/scons_tools/.svn/prop-base/tools.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/scons_tools/site_scons/site_tools/.svn/prop-base/this_tool.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/self-dependency/.svn/prop-base/common.gypi.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/self-dependency/.svn/prop-base/dep.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/self-dependency/.svn/prop-base/self_dependency.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/sibling/.svn/prop-base/gyptest-all.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/sibling/src/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 41 4 | /svn/!svn/ver/1428/trunk/test/sibling/src 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/sibling/src/build/.svn/prop-base/all.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/sibling/src/prog1/.svn/prop-base/prog1.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/sibling/src/prog1/.svn/prop-base/prog1.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/sibling/src/prog2/.svn/prop-base/prog2.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/sibling/src/prog2/.svn/prop-base/prog2.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/small/.svn/prop-base/gyptest-small.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/test/standalone-static-library/.svn/prop-base/gyptest-standalone-static-library.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/standalone-static-library/.svn/prop-base/invalid.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/standalone-static-library/.svn/prop-base/mylib.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/standalone-static-library/.svn/prop-base/mylib.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/standalone-static-library/.svn/prop-base/prog.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/standalone-static-library/mylib.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void print(void) 4 | { 5 | printf("hello from mylib.c\n"); 6 | return; 7 | } 8 | -------------------------------------------------------------------------------- /tools/gyp/test/standalone-static-library/prog.c: -------------------------------------------------------------------------------- 1 | extern void print(void); 2 | 3 | int main(int argc, char *argv[]) 4 | { 5 | print(); 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /tools/gyp/test/subdirectory/.svn/prop-base/gyptest-subdir2-deep.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/subdirectory/src/.svn/prop-base/prog1.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/subdirectory/src/.svn/prop-base/prog1.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/subdirectory/src/.svn/prop-base/symroot.gypi.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/subdirectory/src/subdir/.svn/prop-base/prog2.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/subdirectory/src/subdir/.svn/prop-base/prog2.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/toolsets/.svn/prop-base/gyptest-toolsets.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/toplevel-dir/src/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 45 4 | /svn/!svn/ver/826/trunk/test/toplevel-dir/src 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/toplevel-dir/src/sub1/.svn/prop-base/main.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/toplevel-dir/src/sub1/.svn/prop-base/prog1.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/toplevel-dir/src/sub2/.svn/prop-base/prog2.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/toplevel-dir/src/sub2/.svn/prop-base/prog2.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/variables/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 39 4 | /svn/!svn/ver/1496/trunk/test/variables 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/variables/commands/.svn/prop-base/commands-repeated.gyp.stdout.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/variables/commands/.svn/prop-base/commands-repeated.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/variables/commands/.svn/prop-base/commands-repeated.gypd.golden.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/variables/commands/.svn/prop-base/commands.gyp.ignore-env.stdout.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/variables/commands/.svn/prop-base/commands.gyp.stdout.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/variables/commands/.svn/prop-base/commands.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/variables/commands/.svn/prop-base/commands.gypd.golden.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/variables/commands/.svn/prop-base/commands.gypi.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/variables/commands/.svn/prop-base/test.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/variables/commands/.svn/prop-base/update_golden.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/variables/commands/.svn/text-base/test.py.svn-base: -------------------------------------------------------------------------------- 1 | print "sample\\path\\foo.cpp" 2 | -------------------------------------------------------------------------------- /tools/gyp/test/variables/commands/test.py: -------------------------------------------------------------------------------- 1 | print "sample\\path\\foo.cpp" 2 | -------------------------------------------------------------------------------- /tools/gyp/test/variables/filelist/.svn/prop-base/gyptest-filelist.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/variables/filelist/.svn/prop-base/update_golden.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/variables/latelate/src/.svn/prop-base/latelate.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/variables/latelate/src/.svn/prop-base/program.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/variables/variable-in-path/.svn/prop-base/gyptest-variable-in-path.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/variables/variable-in-path/C1/.svn/prop-base/hello.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/variants/.svn/prop-base/gyptest-variants.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/.svn/prop-base/gyptest-cl-analysis.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/.svn/prop-base/gyptest-cl-default-char-is-unsigned.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/.svn/prop-base/gyptest-cl-force-include-files.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/.svn/prop-base/gyptest-cl-pdbname-override.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/.svn/prop-base/gyptest-cl-pdbname.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/.svn/prop-base/gyptest-cl-treat-wchar-t-as-built-in-type.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/.svn/prop-base/gyptest-lib-ltcg.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/.svn/prop-base/gyptest-link-entrypointsymbol.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/.svn/prop-base/gyptest-link-large-address-aware.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/.svn/prop-base/gyptest-link-pdb.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/.svn/prop-base/gyptest-link-profile.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/.svn/prop-base/gyptest-link-shard.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/batch-file-action/.svn/text-base/infile.svn-base: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /tools/gyp/test/win/batch-file-action/infile: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /tools/gyp/test/win/compiler-flags/.svn/prop-base/analysis.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/compiler-flags/.svn/prop-base/default-char-is-unsigned.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/compiler-flags/.svn/prop-base/force-include-files.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/compiler-flags/.svn/prop-base/pdbname-override.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/compiler-flags/.svn/prop-base/treat-wchar-t-as-built-in-type1.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/compiler-flags/.svn/prop-base/treat-wchar-t-as-built-in-type2.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/compiler-flags/.svn/prop-base/uninit.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/lib-flags/.svn/prop-base/answer.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/lib-flags/.svn/prop-base/answer.h.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/linker-flags/.svn/prop-base/entrypointsymbol.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/linker-flags/.svn/prop-base/entrypointsymbol.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/linker-flags/.svn/prop-base/profile.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/linker-flags/.svn/prop-base/program-database.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/precompiled/.svn/prop-base/gyptest-all.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/precompiled/.svn/prop-base/hello.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/precompiled/.svn/prop-base/hello.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/precompiled/.svn/prop-base/hello2.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/precompiled/.svn/prop-base/precomp.c.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/rc-build/.svn/text-base/hello.h.svn-base: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /tools/gyp/test/win/rc-build/hello.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /tools/gyp/test/win/rc-build/subdir/.svn/text-base/include.h.svn-base: -------------------------------------------------------------------------------- 1 | // Just exists to make sure it can be included. 2 | -------------------------------------------------------------------------------- /tools/gyp/test/win/rc-build/subdir/include.h: -------------------------------------------------------------------------------- 1 | // Just exists to make sure it can be included. 2 | -------------------------------------------------------------------------------- /tools/gyp/test/win/shard/.svn/prop-base/hello1.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/shard/.svn/prop-base/hello2.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/shard/.svn/prop-base/hello3.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/shard/.svn/prop-base/hello4.cc.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/shard/.svn/prop-base/shard.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/test/win/vs-macros/.svn/text-base/stuff.blah.svn-base: -------------------------------------------------------------------------------- 1 | Random data file. 2 | -------------------------------------------------------------------------------- /tools/gyp/test/win/vs-macros/stuff.blah: -------------------------------------------------------------------------------- 1 | Random data file. 2 | -------------------------------------------------------------------------------- /tools/gyp/tools/.svn/prop-base/README.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | -------------------------------------------------------------------------------- /tools/gyp/tools/.svn/prop-base/graphviz.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/tools/.svn/prop-base/pretty_gyp.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/tools/.svn/prop-base/pretty_sln.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/tools/.svn/prop-base/pretty_vcproj.py.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /tools/gyp/tools/emacs/testdata/.svn/prop-base/media.gyp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:eol-style 3 | V 2 4 | LF 5 | END 6 | --------------------------------------------------------------------------------