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

Side by Side Diff: webkit/build/port/SConscript

Issue 27164: chrome side of merge from r41181 to r41217 (Closed)
Patch Set: xcode and idl fixes Created 11 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
« no previous file with comments | « webkit/build/WebCore/WebCore.vcproj ('k') | webkit/build/webkit_common_includes.vsprops » ('j') | 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-2008 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import os.path 5 import os.path
6 import re 6 import re
7 7
8 Import('env') 8 Import('env')
9 9
10 webcore = env.Dir('$CHROME_SRC_DIR/third_party/WebKit/WebCore') 10 webcore = env.Dir('$CHROME_SRC_DIR/third_party/WebKit/WebCore')
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 'dom/ProgressEvent.idl', 216 'dom/ProgressEvent.idl',
217 'dom/Range.idl', 217 'dom/Range.idl',
218 'dom/RangeException.idl', 218 'dom/RangeException.idl',
219 'dom/Text.idl', 219 'dom/Text.idl',
220 'dom/TextEvent.idl', 220 'dom/TextEvent.idl',
221 'dom/TreeWalker.idl', 221 'dom/TreeWalker.idl',
222 'dom/UIEvent.idl', 222 'dom/UIEvent.idl',
223 'dom/WebKitAnimationEvent.idl', 223 'dom/WebKitAnimationEvent.idl',
224 'dom/WebKitTransitionEvent.idl', 224 'dom/WebKitTransitionEvent.idl',
225 'dom/WheelEvent.idl', 225 'dom/WheelEvent.idl',
226 'dom/Worker.idl',
227 'dom/WorkerContext.idl',
228 'dom/WorkerLocation.idl',
229 226
230 'html/CanvasGradient.idl', 227 'html/CanvasGradient.idl',
231 'html/CanvasPattern.idl', 228 'html/CanvasPattern.idl',
232 'html/CanvasPixelArray.idl', 229 'html/CanvasPixelArray.idl',
233 'html/CanvasRenderingContext2D.idl', 230 'html/CanvasRenderingContext2D.idl',
234 'html/File.idl', 231 'html/File.idl',
235 'html/FileList.idl', 232 'html/FileList.idl',
236 'html/HTMLAnchorElement.idl', 233 'html/HTMLAnchorElement.idl',
237 'html/HTMLAppletElement.idl', 234 'html/HTMLAppletElement.idl',
238 'html/HTMLAreaElement.idl', 235 'html/HTMLAreaElement.idl',
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
464 'svg/SVGTRefElement.idl', 461 'svg/SVGTRefElement.idl',
465 'svg/SVGTSpanElement.idl', 462 'svg/SVGTSpanElement.idl',
466 'svg/SVGUnitTypes.idl', 463 'svg/SVGUnitTypes.idl',
467 'svg/SVGURIReference.idl', 464 'svg/SVGURIReference.idl',
468 'svg/SVGUseElement.idl', 465 'svg/SVGUseElement.idl',
469 'svg/SVGViewElement.idl', 466 'svg/SVGViewElement.idl',
470 'svg/SVGViewSpec.idl', 467 'svg/SVGViewSpec.idl',
471 'svg/SVGZoomAndPan.idl', 468 'svg/SVGZoomAndPan.idl',
472 'svg/SVGZoomEvent.idl', 469 'svg/SVGZoomEvent.idl',
473 470
471 'workers/Worker.idl',
472 'workers/WorkerContext.idl',
473 'workers/WorkerLocation.idl',
474
474 'xml/DOMParser.idl', 475 'xml/DOMParser.idl',
475 'xml/DOMParser.idl', 476 'xml/DOMParser.idl',
476 'xml/XMLHttpRequest.idl', 477 'xml/XMLHttpRequest.idl',
477 'xml/XMLHttpRequestException.idl', 478 'xml/XMLHttpRequestException.idl',
478 'xml/XMLHttpRequestProgressEvent.idl', 479 'xml/XMLHttpRequestProgressEvent.idl',
479 'xml/XMLHttpRequestUpload.idl', 480 'xml/XMLHttpRequestUpload.idl',
480 'xml/XMLSerializer.idl', 481 'xml/XMLSerializer.idl',
481 'xml/XPathEvaluator.idl', 482 'xml/XPathEvaluator.idl',
482 'xml/XPathException.idl', 483 'xml/XPathException.idl',
483 'xml/XPathExpression.idl', 484 'xml/XPathExpression.idl',
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
647 env.Command('$DERIVED_DIR/HTMLEntityNames.c', 648 env.Command('$DERIVED_DIR/HTMLEntityNames.c',
648 '$PORT_DIR/html/HTMLEntityNames.gperf', 649 '$PORT_DIR/html/HTMLEntityNames.gperf',
649 'gperf -a -L ANSI-C -C -G -c -o -t -k "*" -N findEntity ' + \ 650 'gperf -a -L ANSI-C -C -G -c -o -t -k "*" -N findEntity ' + \
650 '-D -s 2 $SOURCE > $TARGET') 651 '-D -s 2 $SOURCE > $TARGET')
651 652
652 # CSS tokenizer 653 # CSS tokenizer
653 env.Command('$DERIVED_DIR/tokenizer.cpp', 654 env.Command('$DERIVED_DIR/tokenizer.cpp',
654 ['$PORT_DIR/css/tokenizer.flex', 655 ['$PORT_DIR/css/tokenizer.flex',
655 '$PORT_DIR/css/maketokenizer'], 656 '$PORT_DIR/css/maketokenizer'],
656 'flex --nowarn -t $SOURCE | perl ${SOURCES[1]} > $TARGET') 657 'flex --nowarn -t $SOURCE | perl ${SOURCES[1]} > $TARGET')
OLDNEW
« no previous file with comments | « webkit/build/WebCore/WebCore.vcproj ('k') | webkit/build/webkit_common_includes.vsprops » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698