michael@0: # We borrow heavily from the kernel build setup, though we are simpler since michael@0: # we don't have Kconfig tweaking settings on us. michael@0: michael@0: # The implicit make rules have it looking for RCS files, among other things. michael@0: # We instead explicitly write all the rules we care about. michael@0: # It's even quicker (saves ~200ms) to pass -r on the command line. michael@0: MAKEFLAGS=-r michael@0: michael@0: # The source directory tree. michael@0: srcdir := . michael@0: abs_srcdir := $(abspath $(srcdir)) michael@0: michael@0: # The name of the builddir. michael@0: builddir_name ?= out michael@0: michael@0: # The V=1 flag on command line makes us verbosely print command lines. michael@0: ifdef V michael@0: quiet= michael@0: else michael@0: quiet=quiet_ michael@0: endif michael@0: michael@0: # Specify BUILDTYPE=Release on the command line for a release build. michael@0: BUILDTYPE ?= Debug michael@0: michael@0: # Directory all our build output goes into. michael@0: # Note that this must be two directories beneath src/ for unit tests to pass, michael@0: # as they reach into the src/ directory for data with relative paths. michael@0: builddir ?= $(builddir_name)/$(BUILDTYPE) michael@0: abs_builddir := $(abspath $(builddir)) michael@0: depsdir := $(builddir)/.deps michael@0: michael@0: # Object output directory. michael@0: obj := $(builddir)/obj michael@0: abs_obj := $(abspath $(obj)) michael@0: michael@0: # We build up a list of every single one of the targets so we can slurp in the michael@0: # generated dependency rule Makefiles in one pass. michael@0: all_deps := michael@0: michael@0: michael@0: michael@0: # C++ apps need to be linked with g++. michael@0: # michael@0: # Note: flock is used to seralize linking. Linking is a memory-intensive michael@0: # process so running parallel links can often lead to thrashing. To disable michael@0: # the serialization, override LINK via an envrionment variable as follows: michael@0: # michael@0: # export LINK=g++ michael@0: # michael@0: # This will allow make to invoke N linker processes as specified in -jN. michael@0: LINK ?= flock $(builddir)/linker.lock $(CXX) michael@0: michael@0: CC.target ?= $(CC) michael@0: CFLAGS.target ?= $(CFLAGS) michael@0: CXX.target ?= $(CXX) michael@0: CXXFLAGS.target ?= $(CXXFLAGS) michael@0: LINK.target ?= $(LINK) michael@0: LDFLAGS.target ?= $(LDFLAGS) michael@0: AR.target ?= $(AR) michael@0: michael@0: # TODO(evan): move all cross-compilation logic to gyp-time so we don't need michael@0: # to replicate this environment fallback in make as well. michael@0: CC.host ?= gcc michael@0: CFLAGS.host ?= michael@0: CXX.host ?= g++ michael@0: CXXFLAGS.host ?= michael@0: LINK.host ?= g++ michael@0: LDFLAGS.host ?= michael@0: AR.host ?= ar michael@0: michael@0: # Define a dir function that can handle spaces. michael@0: # http://www.gnu.org/software/make/manual/make.html#Syntax-of-Functions michael@0: # "leading spaces cannot appear in the text of the first argument as written. michael@0: # These characters can be put into the argument value by variable substitution." michael@0: empty := michael@0: space := $(empty) $(empty) michael@0: michael@0: # http://stackoverflow.com/questions/1189781/using-make-dir-or-notdir-on-a-path-with-spaces michael@0: replace_spaces = $(subst $(space),?,$1) michael@0: unreplace_spaces = $(subst ?,$(space),$1) michael@0: dirx = $(call unreplace_spaces,$(dir $(call replace_spaces,$1))) michael@0: michael@0: # Flags to make gcc output dependency info. Note that you need to be michael@0: # careful here to use the flags that ccache and distcc can understand. michael@0: # We write to a dep file on the side first and then rename at the end michael@0: # so we can't end up with a broken dep file. michael@0: depfile = $(depsdir)/$(call replace_spaces,$@).d michael@0: DEPFLAGS = -MMD -MF $(depfile).raw michael@0: michael@0: # We have to fixup the deps output in a few ways. michael@0: # (1) the file output should mention the proper .o file. michael@0: # ccache or distcc lose the path to the target, so we convert a rule of michael@0: # the form: michael@0: # foobar.o: DEP1 DEP2 michael@0: # into michael@0: # path/to/foobar.o: DEP1 DEP2 michael@0: # (2) we want missing files not to cause us to fail to build. michael@0: # We want to rewrite michael@0: # foobar.o: DEP1 DEP2 \ michael@0: # DEP3 michael@0: # to michael@0: # DEP1: michael@0: # DEP2: michael@0: # DEP3: michael@0: # so if the files are missing, they're just considered phony rules. michael@0: # We have to do some pretty insane escaping to get those backslashes michael@0: # and dollar signs past make, the shell, and sed at the same time. michael@0: # Doesn't work with spaces, but that's fine: .d files have spaces in michael@0: # their names replaced with other characters. michael@0: define fixup_dep michael@0: # The depfile may not exist if the input file didn't have any #includes. michael@0: touch $(depfile).raw michael@0: # Fixup path as in (1). michael@0: sed -e "s|^$(notdir $@)|$@|" $(depfile).raw >> $(depfile) michael@0: # Add extra rules as in (2). michael@0: # We remove slashes and replace spaces with new lines; michael@0: # remove blank lines; michael@0: # delete the first line and append a colon to the remaining lines. michael@0: sed -e 's|\\||' -e 'y| |\n|' $(depfile).raw |\ michael@0: grep -v '^$$' |\ michael@0: sed -e 1d -e 's|$$|:|' \ michael@0: >> $(depfile) michael@0: rm $(depfile).raw michael@0: endef michael@0: michael@0: # Command definitions: michael@0: # - cmd_foo is the actual command to run; michael@0: # - quiet_cmd_foo is the brief-output summary of the command. michael@0: michael@0: quiet_cmd_cc = CC($(TOOLSET)) $@ michael@0: cmd_cc = $(CC.$(TOOLSET)) $(GYP_CFLAGS) $(DEPFLAGS) $(CFLAGS.$(TOOLSET)) -c -o $@ $< michael@0: michael@0: quiet_cmd_cxx = CXX($(TOOLSET)) $@ michael@0: cmd_cxx = $(CXX.$(TOOLSET)) $(GYP_CXXFLAGS) $(DEPFLAGS) $(CXXFLAGS.$(TOOLSET)) -c -o $@ $< michael@0: michael@0: quiet_cmd_touch = TOUCH $@ michael@0: cmd_touch = touch $@ michael@0: michael@0: quiet_cmd_copy = COPY $@ michael@0: # send stderr to /dev/null to ignore messages when linking directories. michael@0: cmd_copy = ln -f "$<" "$@" 2>/dev/null || (rm -rf "$@" && cp -af "$<" "$@") michael@0: michael@0: quiet_cmd_alink = AR($(TOOLSET)) $@ michael@0: cmd_alink = rm -f $@ && $(AR.$(TOOLSET)) crs $@ $(filter %.o,$^) michael@0: michael@0: quiet_cmd_alink_thin = AR($(TOOLSET)) $@ michael@0: cmd_alink_thin = rm -f $@ && $(AR.$(TOOLSET)) crsT $@ $(filter %.o,$^) michael@0: michael@0: # Due to circular dependencies between libraries :(, we wrap the michael@0: # special "figure out circular dependencies" flags around the entire michael@0: # input list during linking. michael@0: quiet_cmd_link = LINK($(TOOLSET)) $@ michael@0: cmd_link = $(LINK.$(TOOLSET)) $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ -Wl,--start-group $(LD_INPUTS) -Wl,--end-group $(LIBS) michael@0: michael@0: # We support two kinds of shared objects (.so): michael@0: # 1) shared_library, which is just bundling together many dependent libraries michael@0: # into a link line. michael@0: # 2) loadable_module, which is generating a module intended for dlopen(). michael@0: # michael@0: # They differ only slightly: michael@0: # In the former case, we want to package all dependent code into the .so. michael@0: # In the latter case, we want to package just the API exposed by the michael@0: # outermost module. michael@0: # This means shared_library uses --whole-archive, while loadable_module doesn't. michael@0: # (Note that --whole-archive is incompatible with the --start-group used in michael@0: # normal linking.) michael@0: michael@0: # Other shared-object link notes: michael@0: # - Set SONAME to the library filename so our binaries don't reference michael@0: # the local, absolute paths used on the link command-line. michael@0: quiet_cmd_solink = SOLINK($(TOOLSET)) $@ michael@0: cmd_solink = $(LINK.$(TOOLSET)) -shared $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -Wl,-soname=$(@F) -o $@ -Wl,--whole-archive $(LD_INPUTS) -Wl,--no-whole-archive $(LIBS) michael@0: michael@0: quiet_cmd_solink_module = SOLINK_MODULE($(TOOLSET)) $@ michael@0: cmd_solink_module = $(LINK.$(TOOLSET)) -shared $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -Wl,-soname=$(@F) -o $@ -Wl,--start-group $(filter-out FORCE_DO_CMD, $^) -Wl,--end-group $(LIBS) michael@0: michael@0: michael@0: # Define an escape_quotes function to escape single quotes. michael@0: # This allows us to handle quotes properly as long as we always use michael@0: # use single quotes and escape_quotes. michael@0: escape_quotes = $(subst ','\'',$(1)) michael@0: # This comment is here just to include a ' to unconfuse syntax highlighting. michael@0: # Define an escape_vars function to escape '$' variable syntax. michael@0: # This allows us to read/write command lines with shell variables (e.g. michael@0: # $LD_LIBRARY_PATH), without triggering make substitution. michael@0: escape_vars = $(subst $$,$$$$,$(1)) michael@0: # Helper that expands to a shell command to echo a string exactly as it is in michael@0: # make. This uses printf instead of echo because printf's behaviour with respect michael@0: # to escape sequences is more portable than echo's across different shells michael@0: # (e.g., dash, bash). michael@0: exact_echo = printf '%s\n' '$(call escape_quotes,$(1))' michael@0: michael@0: # Helper to compare the command we're about to run against the command michael@0: # we logged the last time we ran the command. Produces an empty michael@0: # string (false) when the commands match. michael@0: # Tricky point: Make has no string-equality test function. michael@0: # The kernel uses the following, but it seems like it would have false michael@0: # positives, where one string reordered its arguments. michael@0: # arg_check = $(strip $(filter-out $(cmd_$(1)), $(cmd_$@)) \ michael@0: # $(filter-out $(cmd_$@), $(cmd_$(1)))) michael@0: # We instead substitute each for the empty string into the other, and michael@0: # say they're equal if both substitutions produce the empty string. michael@0: # .d files contain ? instead of spaces, take that into account. michael@0: command_changed = $(or $(subst $(cmd_$(1)),,$(cmd_$(call replace_spaces,$@))),\ michael@0: $(subst $(cmd_$(call replace_spaces,$@)),,$(cmd_$(1)))) michael@0: michael@0: # Helper that is non-empty when a prerequisite changes. michael@0: # Normally make does this implicitly, but we force rules to always run michael@0: # so we can check their command lines. michael@0: # $? -- new prerequisites michael@0: # $| -- order-only dependencies michael@0: prereq_changed = $(filter-out FORCE_DO_CMD,$(filter-out $|,$?)) michael@0: michael@0: # Helper that executes all postbuilds, and deletes the output file when done michael@0: # if any of the postbuilds failed. michael@0: define do_postbuilds michael@0: @E=0;\ michael@0: for p in $(POSTBUILDS); do\ michael@0: eval $$p;\ michael@0: F=$$?;\ michael@0: if [ $$F -ne 0 ]; then\ michael@0: E=$$F;\ michael@0: fi;\ michael@0: done;\ michael@0: if [ $$E -ne 0 ]; then\ michael@0: rm -rf "$@";\ michael@0: exit $$E;\ michael@0: fi michael@0: endef michael@0: michael@0: # do_cmd: run a command via the above cmd_foo names, if necessary. michael@0: # Should always run for a given target to handle command-line changes. michael@0: # Second argument, if non-zero, makes it do asm/C/C++ dependency munging. michael@0: # Third argument, if non-zero, makes it do POSTBUILDS processing. michael@0: # Note: We intentionally do NOT call dirx for depfile, since it contains ? for michael@0: # spaces already and dirx strips the ? characters. michael@0: define do_cmd michael@0: $(if $(or $(command_changed),$(prereq_changed)), michael@0: @$(call exact_echo, $($(quiet)cmd_$(1))) michael@0: @mkdir -p "$(call dirx,$@)" "$(dir $(depfile))" michael@0: $(if $(findstring flock,$(word 1,$(cmd_$1))), michael@0: @$(cmd_$(1)) michael@0: @echo " $(quiet_cmd_$(1)): Finished", michael@0: @$(cmd_$(1)) michael@0: ) michael@0: @$(call exact_echo,$(call escape_vars,cmd_$(call replace_spaces,$@) := $(cmd_$(1)))) > $(depfile) michael@0: @$(if $(2),$(fixup_dep)) michael@0: $(if $(and $(3), $(POSTBUILDS)), michael@0: $(call do_postbuilds) michael@0: ) michael@0: ) michael@0: endef michael@0: michael@0: # Declare the "all" target first so it is the default, michael@0: # even though we don't have the deps yet. michael@0: .PHONY: all michael@0: all: michael@0: michael@0: # make looks for ways to re-generate included makefiles, but in our case, we michael@0: # don't have a direct way. Explicitly telling make that it has nothing to do michael@0: # for them makes it go faster. michael@0: %.d: ; michael@0: michael@0: # Use FORCE_DO_CMD to force a target to run. Should be coupled with michael@0: # do_cmd. michael@0: .PHONY: FORCE_DO_CMD michael@0: FORCE_DO_CMD: michael@0: michael@0: TOOLSET := host michael@0: # Suffix rules, putting all outputs into $(obj). michael@0: $(obj).$(TOOLSET)/%.o: $(srcdir)/%.c FORCE_DO_CMD michael@0: @$(call do_cmd,cc,1) michael@0: $(obj).$(TOOLSET)/%.o: $(srcdir)/%.cc FORCE_DO_CMD michael@0: @$(call do_cmd,cxx,1) michael@0: $(obj).$(TOOLSET)/%.o: $(srcdir)/%.cpp FORCE_DO_CMD michael@0: @$(call do_cmd,cxx,1) michael@0: $(obj).$(TOOLSET)/%.o: $(srcdir)/%.cxx FORCE_DO_CMD michael@0: @$(call do_cmd,cxx,1) michael@0: $(obj).$(TOOLSET)/%.o: $(srcdir)/%.S FORCE_DO_CMD michael@0: @$(call do_cmd,cc,1) michael@0: $(obj).$(TOOLSET)/%.o: $(srcdir)/%.s FORCE_DO_CMD michael@0: @$(call do_cmd,cc,1) michael@0: michael@0: # Try building from generated source, too. michael@0: $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.c FORCE_DO_CMD michael@0: @$(call do_cmd,cc,1) michael@0: $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cc FORCE_DO_CMD michael@0: @$(call do_cmd,cxx,1) michael@0: $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cpp FORCE_DO_CMD michael@0: @$(call do_cmd,cxx,1) michael@0: $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cxx FORCE_DO_CMD michael@0: @$(call do_cmd,cxx,1) michael@0: $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.S FORCE_DO_CMD michael@0: @$(call do_cmd,cc,1) michael@0: $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.s FORCE_DO_CMD michael@0: @$(call do_cmd,cc,1) michael@0: michael@0: $(obj).$(TOOLSET)/%.o: $(obj)/%.c FORCE_DO_CMD michael@0: @$(call do_cmd,cc,1) michael@0: $(obj).$(TOOLSET)/%.o: $(obj)/%.cc FORCE_DO_CMD michael@0: @$(call do_cmd,cxx,1) michael@0: $(obj).$(TOOLSET)/%.o: $(obj)/%.cpp FORCE_DO_CMD michael@0: @$(call do_cmd,cxx,1) michael@0: $(obj).$(TOOLSET)/%.o: $(obj)/%.cxx FORCE_DO_CMD michael@0: @$(call do_cmd,cxx,1) michael@0: $(obj).$(TOOLSET)/%.o: $(obj)/%.S FORCE_DO_CMD michael@0: @$(call do_cmd,cc,1) michael@0: $(obj).$(TOOLSET)/%.o: $(obj)/%.s FORCE_DO_CMD michael@0: @$(call do_cmd,cc,1) michael@0: michael@0: TOOLSET := target michael@0: # Suffix rules, putting all outputs into $(obj). michael@0: $(obj).$(TOOLSET)/%.o: $(srcdir)/%.c FORCE_DO_CMD michael@0: @$(call do_cmd,cc,1) michael@0: $(obj).$(TOOLSET)/%.o: $(srcdir)/%.cc FORCE_DO_CMD michael@0: @$(call do_cmd,cxx,1) michael@0: $(obj).$(TOOLSET)/%.o: $(srcdir)/%.cpp FORCE_DO_CMD michael@0: @$(call do_cmd,cxx,1) michael@0: $(obj).$(TOOLSET)/%.o: $(srcdir)/%.cxx FORCE_DO_CMD michael@0: @$(call do_cmd,cxx,1) michael@0: $(obj).$(TOOLSET)/%.o: $(srcdir)/%.S FORCE_DO_CMD michael@0: @$(call do_cmd,cc,1) michael@0: $(obj).$(TOOLSET)/%.o: $(srcdir)/%.s FORCE_DO_CMD michael@0: @$(call do_cmd,cc,1) michael@0: michael@0: # Try building from generated source, too. michael@0: $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.c FORCE_DO_CMD michael@0: @$(call do_cmd,cc,1) michael@0: $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cc FORCE_DO_CMD michael@0: @$(call do_cmd,cxx,1) michael@0: $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cpp FORCE_DO_CMD michael@0: @$(call do_cmd,cxx,1) michael@0: $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cxx FORCE_DO_CMD michael@0: @$(call do_cmd,cxx,1) michael@0: $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.S FORCE_DO_CMD michael@0: @$(call do_cmd,cc,1) michael@0: $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.s FORCE_DO_CMD michael@0: @$(call do_cmd,cc,1) michael@0: michael@0: $(obj).$(TOOLSET)/%.o: $(obj)/%.c FORCE_DO_CMD michael@0: @$(call do_cmd,cc,1) michael@0: $(obj).$(TOOLSET)/%.o: $(obj)/%.cc FORCE_DO_CMD michael@0: @$(call do_cmd,cxx,1) michael@0: $(obj).$(TOOLSET)/%.o: $(obj)/%.cpp FORCE_DO_CMD michael@0: @$(call do_cmd,cxx,1) michael@0: $(obj).$(TOOLSET)/%.o: $(obj)/%.cxx FORCE_DO_CMD michael@0: @$(call do_cmd,cxx,1) michael@0: $(obj).$(TOOLSET)/%.o: $(obj)/%.S FORCE_DO_CMD michael@0: @$(call do_cmd,cc,1) michael@0: $(obj).$(TOOLSET)/%.o: $(obj)/%.s FORCE_DO_CMD michael@0: @$(call do_cmd,cc,1) michael@0: michael@0: michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,All.target.mk)))),) michael@0: include All.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,base/base.target.mk)))),) michael@0: include base/base.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,net/net.target.mk)))),) michael@0: include net/net.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,peerconnection_client.target.mk)))),) michael@0: include peerconnection_client.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/expat/expat.target.mk)))),) michael@0: include third_party/expat/expat.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/jsoncpp/jsoncpp.target.mk)))),) michael@0: include third_party/jsoncpp/jsoncpp.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/libjingle/libjingle.target.mk)))),) michael@0: include third_party/libjingle/libjingle.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/libjingle/libjingle_p2p.target.mk)))),) michael@0: include third_party/libjingle/libjingle_p2p.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/libjingle/libjingle_peerconnection.target.mk)))),) michael@0: include third_party/libjingle/libjingle_peerconnection.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/libjingle/peerconnection_server.target.mk)))),) michael@0: include third_party/libjingle/peerconnection_server.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/libjpeg_turbo/libjpeg.target.mk)))),) michael@0: include third_party/libjpeg_turbo/libjpeg.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/libsrtp/libsrtp.target.mk)))),) michael@0: include third_party/libsrtp/libsrtp.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/libsrtp/rdbx_driver.target.mk)))),) michael@0: include third_party/libsrtp/rdbx_driver.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/libsrtp/replay_driver.target.mk)))),) michael@0: include third_party/libsrtp/replay_driver.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/libsrtp/roc_driver.target.mk)))),) michael@0: include third_party/libsrtp/roc_driver.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/libsrtp/rtpw.target.mk)))),) michael@0: include third_party/libsrtp/rtpw.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/libsrtp/srtp_driver.target.mk)))),) michael@0: include third_party/libsrtp/srtp_driver.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/libsrtp/srtp_runtest.target.mk)))),) michael@0: include third_party/libsrtp/srtp_runtest.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/libsrtp/srtp_test_aes_calc.target.mk)))),) michael@0: include third_party/libsrtp/srtp_test_aes_calc.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/libsrtp/srtp_test_cipher_driver.target.mk)))),) michael@0: include third_party/libsrtp/srtp_test_cipher_driver.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/libsrtp/srtp_test_datatypes_driver.target.mk)))),) michael@0: include third_party/libsrtp/srtp_test_datatypes_driver.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/libsrtp/srtp_test_env.target.mk)))),) michael@0: include third_party/libsrtp/srtp_test_env.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/libsrtp/srtp_test_kernel_driver.target.mk)))),) michael@0: include third_party/libsrtp/srtp_test_kernel_driver.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/libsrtp/srtp_test_rand_gen.target.mk)))),) michael@0: include third_party/libsrtp/srtp_test_rand_gen.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/libsrtp/srtp_test_sha1_driver.target.mk)))),) michael@0: include third_party/libsrtp/srtp_test_sha1_driver.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/libsrtp/srtp_test_stat_driver.target.mk)))),) michael@0: include third_party/libsrtp/srtp_test_stat_driver.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/libvpx/gen_asm_offsets.target.mk)))),) michael@0: include third_party/libvpx/gen_asm_offsets.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/libvpx/libvpx.target.mk)))),) michael@0: include third_party/libvpx/libvpx.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/libvpx/libvpx_asm_offsets.target.mk)))),) michael@0: include third_party/libvpx/libvpx_asm_offsets.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/libvpx/libvpx_obj_int_extract.host.mk)))),) michael@0: include third_party/libvpx/libvpx_obj_int_extract.host.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/libvpx/simple_decoder.target.mk)))),) michael@0: include third_party/libvpx/simple_decoder.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/libvpx/simple_encoder.target.mk)))),) michael@0: include third_party/libvpx/simple_encoder.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/libyuv/libyuv.target.mk)))),) michael@0: include third_party/libyuv/libyuv.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/protobuf/protobuf_full_do_not_use.host.mk)))),) michael@0: include third_party/protobuf/protobuf_full_do_not_use.host.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/protobuf/protobuf_full_do_not_use.target.mk)))),) michael@0: include third_party/protobuf/protobuf_full_do_not_use.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/protobuf/protobuf_lite.host.mk)))),) michael@0: include third_party/protobuf/protobuf_lite.host.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/protobuf/protobuf_lite.target.mk)))),) michael@0: include third_party/protobuf/protobuf_lite.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/protobuf/protoc.host.mk)))),) michael@0: include third_party/protobuf/protoc.host.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/protobuf/py_proto.target.mk)))),) michael@0: include third_party/protobuf/py_proto.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/common_audio/resampler.target.mk)))),) michael@0: include third_party/webrtc/common_audio/resampler.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/common_audio/signal_processing.target.mk)))),) michael@0: include third_party/webrtc/common_audio/signal_processing.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/common_audio/vad.target.mk)))),) michael@0: include third_party/webrtc/common_audio/vad.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/common_video/common_video.target.mk)))),) michael@0: include third_party/webrtc/common_video/common_video.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/modules/CNG.target.mk)))),) michael@0: include third_party/webrtc/modules/CNG.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/modules/G711.target.mk)))),) michael@0: include third_party/webrtc/modules/G711.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/modules/G722.target.mk)))),) michael@0: include third_party/webrtc/modules/G722.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/modules/NetEq.target.mk)))),) michael@0: include third_party/webrtc/modules/NetEq.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/modules/PCM16B.target.mk)))),) michael@0: include third_party/webrtc/modules/PCM16B.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/modules/audio_coding_module.target.mk)))),) michael@0: include third_party/webrtc/modules/audio_coding_module.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/modules/audio_conference_mixer.target.mk)))),) michael@0: include third_party/webrtc/modules/audio_conference_mixer.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/modules/audio_device.target.mk)))),) michael@0: include third_party/webrtc/modules/audio_device.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/modules/audio_processing.target.mk)))),) michael@0: include third_party/webrtc/modules/audio_processing.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/modules/audio_processing_sse2.target.mk)))),) michael@0: include third_party/webrtc/modules/audio_processing_sse2.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/modules/audioproc_debug_proto.target.mk)))),) michael@0: include third_party/webrtc/modules/audioproc_debug_proto.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/modules/bitrate_controller.target.mk)))),) michael@0: include third_party/webrtc/modules/bitrate_controller.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/modules/iLBC.target.mk)))),) michael@0: include third_party/webrtc/modules/iLBC.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/modules/iSAC.target.mk)))),) michael@0: include third_party/webrtc/modules/iSAC.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/modules/iSACFix.target.mk)))),) michael@0: include third_party/webrtc/modules/iSACFix.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/modules/media_file.target.mk)))),) michael@0: include third_party/webrtc/modules/media_file.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/modules/remote_bitrate_estimator.target.mk)))),) michael@0: include third_party/webrtc/modules/remote_bitrate_estimator.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/modules/rtp_rtcp.target.mk)))),) michael@0: include third_party/webrtc/modules/rtp_rtcp.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/modules/udp_transport.target.mk)))),) michael@0: include third_party/webrtc/modules/udp_transport.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/modules/video_capture_module.target.mk)))),) michael@0: include third_party/webrtc/modules/video_capture_module.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/modules/video_coding/codecs/vp8/webrtc_vp8.target.mk)))),) michael@0: include third_party/webrtc/modules/video_coding/codecs/vp8/webrtc_vp8.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/modules/video_processing.target.mk)))),) michael@0: include third_party/webrtc/modules/video_processing.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/modules/video_processing_sse2.target.mk)))),) michael@0: include third_party/webrtc/modules/video_processing_sse2.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/modules/video_render_module.target.mk)))),) michael@0: include third_party/webrtc/modules/video_render_module.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/modules/webrtc_i420.target.mk)))),) michael@0: include third_party/webrtc/modules/webrtc_i420.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/modules/webrtc_utility.target.mk)))),) michael@0: include third_party/webrtc/modules/webrtc_utility.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/modules/webrtc_video_coding.target.mk)))),) michael@0: include third_party/webrtc/modules/webrtc_video_coding.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/system_wrappers/source/system_wrappers.target.mk)))),) michael@0: include third_party/webrtc/system_wrappers/source/system_wrappers.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/video_engine/video_engine_core.target.mk)))),) michael@0: include third_party/webrtc/video_engine/video_engine_core.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/webrtc/voice_engine/voice_engine_core.target.mk)))),) michael@0: include third_party/webrtc/voice_engine/voice_engine_core.target.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/yasm/config_sources.host.mk)))),) michael@0: include third_party/yasm/config_sources.host.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/yasm/generate_files.host.mk)))),) michael@0: include third_party/yasm/generate_files.host.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/yasm/genmacro.host.mk)))),) michael@0: include third_party/yasm/genmacro.host.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/yasm/genmodule.host.mk)))),) michael@0: include third_party/yasm/genmodule.host.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/yasm/genperf.host.mk)))),) michael@0: include third_party/yasm/genperf.host.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/yasm/genperf_libs.host.mk)))),) michael@0: include third_party/yasm/genperf_libs.host.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/yasm/genstring.host.mk)))),) michael@0: include third_party/yasm/genstring.host.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/yasm/genversion.host.mk)))),) michael@0: include third_party/yasm/genversion.host.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/yasm/re2c.host.mk)))),) michael@0: include third_party/yasm/re2c.host.mk michael@0: endif michael@0: ifeq ($(strip $(foreach prefix,$(NO_LOAD),\ michael@0: $(findstring $(join ^,$(prefix)),\ michael@0: $(join ^,third_party/yasm/yasm.host.mk)))),) michael@0: include third_party/yasm/yasm.host.mk michael@0: endif michael@0: michael@0: quiet_cmd_regen_makefile = ACTION Regenerating $@ michael@0: cmd_regen_makefile = ./build/gyp_chromium -fmake --ignore-environment "--toplevel-dir=." -I/home/jesup/src/mozilla/webrtc_import7/webrtc_update/trunk/build/common.gypi -I/home/jesup/src/mozilla/webrtc_import7/webrtc_update/trunk/supplement/supplement.gypi "--depth=." peerconnection_all.gyp michael@0: Makefile: third_party/webrtc/build/common.gypi third_party/webrtc/common_video/common_video.gyp third_party/webrtc/video_engine/video_engine.gyp third_party/webrtc/modules/audio_coding/neteq/neteq.gypi third_party/libvpx/libvpx_srcs_arm.gypi build/filename_rules.gypi third_party/webrtc/modules/media_file/source/media_file.gypi third_party/jsoncpp/jsoncpp.gyp base/base.gyp third_party/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator.gypi third_party/webrtc/modules/rtp_rtcp/source/rtp_rtcp_tests.gypi third_party/webrtc/modules/audio_processing/audio_processing.gypi third_party/webrtc/modules/video_processing/main/source/video_processing.gypi third_party/webrtc/system_wrappers/source/system_wrappers.gyp supplement/supplement.gypi third_party/webrtc/modules/audio_coding/codecs/ilbc/ilbc.gypi third_party/webrtc/modules/utility/source/utility.gypi third_party/webrtc/voice_engine/test/voice_engine_tests.gypi build/internal/release_impl.gypi third_party/webrtc/modules/audio_coding/codecs/isac/isacfix_test.gypi third_party/yasm/yasm_compile.gypi net/net.gyp third_party/webrtc/modules/audio_coding/codecs/isac/isac_test.gypi third_party/webrtc/modules/audio_coding/codecs/cng/cng.gypi third_party/libvpx/libvpx_srcs_x86_64.gypi third_party/webrtc/modules/audio_coding/codecs/pcm16b/pcm16b.gypi third_party/webrtc/modules/audio_device/audio_device.gypi third_party/libjingle/libjingle.gyp build/internal/release_impl_official.gypi build/internal/release_defaults.gypi third_party/webrtc/modules/rtp_rtcp/source/rtp_rtcp.gypi third_party/webrtc/modules/video_render/main/source/video_render.gypi third_party/libjpeg_turbo/libjpeg.gyp third_party/webrtc/modules/rtp_rtcp/test/testAPI/test_api.gypi third_party/webrtc/modules/udp_transport/source/udp_transport.gypi third_party/libvpx/libvpx_srcs_arm_neon.gypi third_party/webrtc/voice_engine/voice_engine.gyp third_party/webrtc/common_audio/resampler/resampler.gypi third_party/webrtc/modules/audio_conference_mixer/source/audio_conference_mixer.gypi build/win_precompile.gypi third_party/expat/expat.gyp third_party/webrtc/modules/video_coding/main/source/video_coding_test.gypi third_party/yasm/yasm.gyp third_party/webrtc/modules/video_capture/main/source/video_capture.gypi third_party/webrtc/video_engine/test/libvietest/libvietest.gypi third_party/webrtc/modules/video_coding/codecs/vp8/vp8.gyp third_party/webrtc/modules/bitrate_controller/bitrate_controller.gypi third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/isacfix.gypi build/ios/mac_build.gypi third_party/webrtc/modules/video_coding/main/source/video_coding.gypi third_party/webrtc/modules/audio_coding/main/source/audio_coding_module.gypi build/release.gypi peerconnection.gyp build/common.gypi third_party/webrtc/video_engine/video_engine_core.gypi third_party/webrtc/build/arm_neon.gypi third_party/libvpx/libvpx.gyp third_party/webrtc/common_audio/common_audio.gyp third_party/libyuv/libyuv.gyp third_party/webrtc/modules/audio_coding/codecs/isac/main/source/isac.gypi third_party/webrtc/modules/video_processing/main/test/vpm_tests.gypi third_party/webrtc/voice_engine/voice_engine_core.gypi third_party/webrtc/modules/rtp_rtcp/test/testFec/test_fec.gypi third_party/webrtc/modules/video_coding/codecs/tools/video_codecs_tools.gypi third_party/libsrtp/libsrtp.gyp peerconnection_all.gyp third_party/webrtc/modules/audio_coding/codecs/g711/g711.gypi third_party/webrtc/modules/audio_processing/audio_processing_tests.gypi third_party/libvpx/libvpx_srcs_x86.gypi third_party/webrtc/modules/modules.gyp third_party/webrtc/common_audio/signal_processing/signal_processing.gypi third_party/webrtc/video_engine/test/auto_test/vie_auto_test.gypi third_party/libvpx/libvpx_srcs_mips.gypi third_party/webrtc/common_audio/vad/vad.gypi third_party/webrtc/modules/video_coding/codecs/test/video_codecs_test_framework.gypi third_party/webrtc/modules/video_coding/codecs/i420/main/source/i420.gypi third_party/webrtc/modules/audio_coding/codecs/g722/g722.gypi third_party/webrtc/modules/video_coding/codecs/test_framework/test_framework.gypi third_party/webrtc/build/protoc.gypi third_party/protobuf/protobuf.gyp michael@0: $(call do_cmd,regen_makefile) michael@0: michael@0: # "all" is a concatenation of the "all" targets from all the included michael@0: # sub-makefiles. This is just here to clarify. michael@0: all: michael@0: michael@0: # Add in dependency-tracking rules. $(all_deps) is the list of every single michael@0: # target in our tree. Only consider the ones with .d (dependency) info: michael@0: d_files := $(wildcard $(foreach f,$(all_deps),$(depsdir)/$(f).d)) michael@0: ifneq ($(d_files),) michael@0: include $(d_files) michael@0: endif