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

Side by Side Diff: webkit/port/DerivedSources.make

Issue 39004: Strip CRs from *.in files to allow building from webkit.org (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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 | « DEPS ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (C) 2006, 2007 Apple Inc. All rights reserved. 1 # Copyright (C) 2006, 2007 Apple Inc. All rights reserved.
2 # Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> 2 # Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions 5 # modification, are permitted provided that the following conditions
6 # are met: 6 # are met:
7 # 7 #
8 # 1. Redistributions of source code must retain the above copyright 8 # 1. Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # 2. Redistributions in binary form must reproduce the above copyright 10 # 2. Redistributions in binary form must reproduce the above copyright
(...skipping 938 matching lines...) Expand 10 before | Expand all | Expand 10 after
949 WEBCORE_CSS_PROPERTY_NAMES := $(WEBCORE_CSS_PROPERTY_NAMES) $(WebCore)/css/S VGCSSPropertyNames.in 949 WEBCORE_CSS_PROPERTY_NAMES := $(WEBCORE_CSS_PROPERTY_NAMES) $(WebCore)/css/S VGCSSPropertyNames.in
950 WEBCORE_CSS_VALUE_KEYWORDS := $(WEBCORE_CSS_VALUE_KEYWORDS) $(WebCore)/css/S VGCSSValueKeywords.in 950 WEBCORE_CSS_VALUE_KEYWORDS := $(WEBCORE_CSS_VALUE_KEYWORDS) $(WebCore)/css/S VGCSSValueKeywords.in
951 endif 951 endif
952 952
953 # Chromium does not support this. 953 # Chromium does not support this.
954 #ifeq ($(ENABLE_DASHBOARD_SUPPORT), 1) 954 #ifeq ($(ENABLE_DASHBOARD_SUPPORT), 1)
955 # WEBCORE_CSS_PROPERTY_NAMES := $(WEBCORE_CSS_PROPERTY_NAMES) $(WebCore)/css/ DashboardSupportCSSPropertyNames.in 955 # WEBCORE_CSS_PROPERTY_NAMES := $(WEBCORE_CSS_PROPERTY_NAMES) $(WebCore)/css/ DashboardSupportCSSPropertyNames.in
956 #endif 956 #endif
957 957
958 CSSPropertyNames.h : $(WEBCORE_CSS_PROPERTY_NAMES) css/makeprop.pl 958 CSSPropertyNames.h : $(WEBCORE_CSS_PROPERTY_NAMES) css/makeprop.pl
959 » if sort $(WEBCORE_CSS_PROPERTY_NAMES) | uniq -d | grep -E '^[^#]'; then echo 'Duplicate value!'; exit 1; fi 959 » if dos2unix $(WEBCORE_CSS_PROPERTY_NAMES) | sort | uniq -d | grep -E '^[ ^#]'; then echo 'Duplicate value!'; exit 1; fi
960 cat $(WEBCORE_CSS_PROPERTY_NAMES) > CSSPropertyNames.in 960 cat $(WEBCORE_CSS_PROPERTY_NAMES) > CSSPropertyNames.in
961 perl "$(WebCore)/css/makeprop.pl" 961 perl "$(WebCore)/css/makeprop.pl"
962 962
963 CSSValueKeywords.h : $(WEBCORE_CSS_VALUE_KEYWORDS) css/makevalues.pl 963 CSSValueKeywords.h : $(WEBCORE_CSS_VALUE_KEYWORDS) css/makevalues.pl
964 # Lower case all the values, as CSS values are case-insensitive 964 # Lower case all the values, as CSS values are case-insensitive
965 perl -ne 'print lc' $(WEBCORE_CSS_VALUE_KEYWORDS) > CSSValueKeywords.in 965 perl -ne 'print lc' $(WEBCORE_CSS_VALUE_KEYWORDS) > CSSValueKeywords.in
966 » if sort CSSValueKeywords.in | uniq -d | grep -E '^[^#]'; then echo 'Dupl icate value!'; exit 1; fi 966 » if dos2unix CSSValueKeywords.in | sort | uniq -d | grep -E '^[^#]'; then echo 'Duplicate value!'; exit 1; fi
967 perl "$(WebCore)/css/makevalues.pl" 967 perl "$(WebCore)/css/makevalues.pl"
968 968
969 # DOCTYPE strings 969 # DOCTYPE strings
970 970
971 DocTypeStrings.cpp : html/DocTypeStrings.gperf 971 DocTypeStrings.cpp : html/DocTypeStrings.gperf
972 gperf -CEot -L ANSI-C -k "*" -N findDoctypeEntry -F ,PubIDInfo::eAlmostS tandards,PubIDInfo::eAlmostStandards $< > $@ 972 gperf -CEot -L ANSI-C -k "*" -N findDoctypeEntry -F ,PubIDInfo::eAlmostS tandards,PubIDInfo::eAlmostStandards $< > $@
973 973
974 # HTML entity names 974 # HTML entity names
975 975
976 HTMLEntityNames.c : html/HTMLEntityNames.gperf 976 HTMLEntityNames.c : html/HTMLEntityNames.gperf
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
1172 # 1172 #
1173 1173
1174 # Sometimes script silently fails (Cygwin problem?), 1174 # Sometimes script silently fails (Cygwin problem?),
1175 # use a bounded loop to retry if so, but not do so forever. 1175 # use a bounded loop to retry if so, but not do so forever.
1176 V8%.h : %.idl $(V8_SCRIPTS) 1176 V8%.h : %.idl $(V8_SCRIPTS)
1177 rm -f $@; \ 1177 rm -f $@; \
1178 for i in 1 2 3 4 5 6 7 8 9 10; do \ 1178 for i in 1 2 3 4 5 6 7 8 9 10; do \
1179 if test -e $@; then break; fi; \ 1179 if test -e $@; then break; fi; \
1180 perl -w -I $(PORTROOT)/bindings/scripts -I $(WebCore)/bindings/scripts $(PORTROOT)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT V8_BINDING" --generator V8 --include svg --include dom --in clude html --include css --include page --include xml --include plugins --output dir . $< ; \ 1180 perl -w -I $(PORTROOT)/bindings/scripts -I $(WebCore)/bindings/scripts $(PORTROOT)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT V8_BINDING" --generator V8 --include svg --include dom --in clude html --include css --include page --include xml --include plugins --output dir . $< ; \
1181 done 1181 done
OLDNEW
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698