| OLD | NEW |
| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 SVG_FLAGS = [ | 59 SVG_FLAGS = [ |
| 60 'ENABLE_SVG_ANIMATION=1', | 60 'ENABLE_SVG_ANIMATION=1', |
| 61 'ENABLE_SVG_AS_IMAGE=1', | 61 'ENABLE_SVG_AS_IMAGE=1', |
| 62 'ENABLE_SVG_FONTS=1', | 62 'ENABLE_SVG_FONTS=1', |
| 63 'ENABLE_SVG_FOREIGN_OBJECT=1', | 63 'ENABLE_SVG_FOREIGN_OBJECT=1', |
| 64 'ENABLE_SVG_USE=1', | 64 'ENABLE_SVG_USE=1', |
| 65 ], | 65 ], |
| 66 | 66 |
| 67 BINDINGS_INCLUDE_PATH = [ | 67 BINDINGS_INCLUDE_PATH = [ |
| 68 '$PENDING', | 68 '$PENDING', |
| 69 '$PORTROOT/page', | |
| 70 '$WEBCORE/css', | 69 '$WEBCORE/css', |
| 71 '$WEBCORE/dom', | 70 '$WEBCORE/dom', |
| 72 '$WEBCORE/html', | 71 '$WEBCORE/html', |
| 73 '$WEBCORE/page', | 72 '$WEBCORE/page', |
| 74 '$WEBCORE/svg', | 73 '$WEBCORE/svg', |
| 75 '$WEBCORE/xml', | 74 '$WEBCORE/xml', |
| 76 ], | 75 ], |
| 77 BINDINGS_INCLUDE_FLAG = '--include ', | 76 BINDINGS_INCLUDE_FLAG = '--include ', |
| 78 BINDINGS_INCLUDE_SUFFIX = '', | 77 BINDINGS_INCLUDE_SUFFIX = '', |
| 79 _posix_includes = PosixIncludes, | 78 _posix_includes = PosixIncludes, |
| (...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 630 env.Command('$DERIVED_DIR/HTMLEntityNames.c', | 629 env.Command('$DERIVED_DIR/HTMLEntityNames.c', |
| 631 '$PORT_DIR/html/HTMLEntityNames.gperf', | 630 '$PORT_DIR/html/HTMLEntityNames.gperf', |
| 632 'gperf -a -L ANSI-C -C -G -c -o -t -k "*" -N findEntity ' + \ | 631 'gperf -a -L ANSI-C -C -G -c -o -t -k "*" -N findEntity ' + \ |
| 633 '-D -s 2 $SOURCE > $TARGET') | 632 '-D -s 2 $SOURCE > $TARGET') |
| 634 | 633 |
| 635 # CSS tokenizer | 634 # CSS tokenizer |
| 636 env.Command('$DERIVED_DIR/tokenizer.cpp', | 635 env.Command('$DERIVED_DIR/tokenizer.cpp', |
| 637 ['$PORT_DIR/css/tokenizer.flex', | 636 ['$PORT_DIR/css/tokenizer.flex', |
| 638 '$PORT_DIR/css/maketokenizer'], | 637 '$PORT_DIR/css/maketokenizer'], |
| 639 'flex --nowarn -t $SOURCE | perl ${SOURCES[1]} > $TARGET') | 638 'flex --nowarn -t $SOURCE | perl ${SOURCES[1]} > $TARGET') |
| OLD | NEW |