Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(811)

Side by Side Diff: source/libvpx/build/make/Makefile

Issue 148913004: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « source/libvpx/build/make/Android.mk ('k') | source/libvpx/build/make/obj_int_extract.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ## 1 ##
2 ## Copyright (c) 2010 The WebM project authors. All Rights Reserved. 2 ## Copyright (c) 2010 The WebM project authors. All Rights Reserved.
3 ## 3 ##
4 ## Use of this source code is governed by a BSD-style license 4 ## Use of this source code is governed by a BSD-style license
5 ## that can be found in the LICENSE file in the root of the source 5 ## that can be found in the LICENSE file in the root of the source
6 ## tree. An additional intellectual property rights grant can be found 6 ## tree. An additional intellectual property rights grant can be found
7 ## in the file PATENTS. All contributing project authors may 7 ## in the file PATENTS. All contributing project authors may
8 ## be found in the AUTHORS file in the root of the source tree. 8 ## be found in the AUTHORS file in the root of the source tree.
9 ## 9 ##
10 10
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 # If there are any source files to be distributed, then include the build 383 # If there are any source files to be distributed, then include the build
384 # system too. 384 # system too.
385 ifneq ($(call enabled,DIST-SRCS),) 385 ifneq ($(call enabled,DIST-SRCS),)
386 DIST-SRCS-yes += configure 386 DIST-SRCS-yes += configure
387 DIST-SRCS-yes += build/make/configure.sh 387 DIST-SRCS-yes += build/make/configure.sh
388 DIST-SRCS-yes += build/make/gen_asm_deps.sh 388 DIST-SRCS-yes += build/make/gen_asm_deps.sh
389 DIST-SRCS-yes += build/make/Makefile 389 DIST-SRCS-yes += build/make/Makefile
390 DIST-SRCS-$(CONFIG_MSVS) += build/make/gen_msvs_def.sh 390 DIST-SRCS-$(CONFIG_MSVS) += build/make/gen_msvs_def.sh
391 DIST-SRCS-$(CONFIG_MSVS) += build/make/gen_msvs_proj.sh 391 DIST-SRCS-$(CONFIG_MSVS) += build/make/gen_msvs_proj.sh
392 DIST-SRCS-$(CONFIG_MSVS) += build/make/gen_msvs_sln.sh 392 DIST-SRCS-$(CONFIG_MSVS) += build/make/gen_msvs_sln.sh
393 DIST-SRCS-$(CONFIG_MSVS) += build/x86-msvs/yasm.rules 393 DIST-SRCS-$(CONFIG_MSVS) += build/make/gen_msvs_vcxproj.sh
394 DIST-SRCS-$(CONFIG_MSVS) += build/x86-msvs/obj_int_extract.bat 394 DIST-SRCS-$(CONFIG_MSVS) += build/x86-msvs/obj_int_extract.bat
395 DIST-SRCS-$(CONFIG_MSVS) += build/arm-msvs/obj_int_extract.bat 395 DIST-SRCS-$(CONFIG_MSVS) += build/arm-msvs/obj_int_extract.bat
396 DIST-SRCS-$(CONFIG_RVCT) += build/make/armlink_adapter.sh 396 DIST-SRCS-$(CONFIG_RVCT) += build/make/armlink_adapter.sh
397 # Include obj_int_extract if we use offsets from *_asm_*_offsets 397 # Include obj_int_extract if we use offsets from *_asm_*_offsets
398 DIST-SRCS-$(ARCH_ARM)$(ARCH_X86)$(ARCH_X86_64) += build/make/obj_int_extr act.c 398 DIST-SRCS-$(ARCH_ARM)$(ARCH_X86)$(ARCH_X86_64) += build/make/obj_int_extr act.c
399 DIST-SRCS-$(ARCH_ARM) += build/make/ads2gas.pl 399 DIST-SRCS-$(ARCH_ARM) += build/make/ads2gas.pl
400 DIST-SRCS-$(ARCH_ARM) += build/make/ads2gas_apple.pl 400 DIST-SRCS-$(ARCH_ARM) += build/make/ads2gas_apple.pl
401 DIST-SRCS-$(ARCH_ARM) += build/make/ads2armasm_ms.pl 401 DIST-SRCS-$(ARCH_ARM) += build/make/ads2armasm_ms.pl
402 DIST-SRCS-$(ARCH_ARM) += build/make/thumb.pm 402 DIST-SRCS-$(ARCH_ARM) += build/make/thumb.pm
403 DIST-SRCS-yes += $(target:-$(TOOLCHAIN)=).mk 403 DIST-SRCS-yes += $(target:-$(TOOLCHAIN)=).mk
(...skipping 11 matching lines...) Expand all
415 ifeq ($(CONFIG_EXTERNAL_BUILD),yes) 415 ifeq ($(CONFIG_EXTERNAL_BUILD),yes)
416 BUILD_TARGETS += .projects 416 BUILD_TARGETS += .projects
417 INSTALL_TARGETS += .install-projects 417 INSTALL_TARGETS += .install-projects
418 endif 418 endif
419 BUILD_TARGETS += .docs .libs .bins 419 BUILD_TARGETS += .docs .libs .bins
420 INSTALL_TARGETS += .install-docs .install-srcs .install-libs .install-bins 420 INSTALL_TARGETS += .install-docs .install-srcs .install-libs .install-bins
421 all: $(BUILD_TARGETS) 421 all: $(BUILD_TARGETS)
422 install:: $(INSTALL_TARGETS) 422 install:: $(INSTALL_TARGETS)
423 dist: $(INSTALL_TARGETS) 423 dist: $(INSTALL_TARGETS)
424 test:: 424 test::
OLDNEW
« no previous file with comments | « source/libvpx/build/make/Android.mk ('k') | source/libvpx/build/make/obj_int_extract.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698