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 | 5 import os |
6 | 6 |
7 Import(['env']) | 7 Import(['env']) |
8 | 8 |
9 env_res = env.Clone() | 9 env_res = env.Clone() |
10 env_test = env.Clone() | 10 env_test = env.Clone() |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 '$LIBXML_DIR/DerivedSources/include', | 94 '$LIBXML_DIR/DerivedSources/include', |
95 '$LIBXML_DIR/include', | 95 '$LIBXML_DIR/include', |
96 '$BREAKPAD_DIR/src', | 96 '$BREAKPAD_DIR/src', |
97 ], | 97 ], |
98 LIBS = [ | 98 LIBS = [ |
99 'base', | 99 'base', |
100 'base_gfx', | 100 'base_gfx', |
101 #'breakpad_handler', | 101 #'breakpad_handler', |
102 'googleurl', | 102 'googleurl', |
103 'media', | 103 'media', |
| 104 'printing', |
104 'net', | 105 'net', |
105 'skia', | 106 'skia', |
106 'bzip2', | 107 'bzip2', |
107 'libjpeg', | 108 'libjpeg', |
108 'libpng', | 109 'libpng', |
109 'libxml', | 110 'libxml', |
110 'libxslt', | 111 'libxslt', |
111 'modp_b64', | 112 'modp_b64', |
112 'zlib', | 113 'zlib', |
113 | 114 |
(...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
635 ] | 636 ] |
636 | 637 |
637 # TODO(port) | 638 # TODO(port) |
638 if env.Bit('windows'): | 639 if env.Bit('windows'): |
639 env.Install('$DESTINATION_ROOT/plugins/gears', gears_plugins) | 640 env.Install('$DESTINATION_ROOT/plugins/gears', gears_plugins) |
640 | 641 |
641 env.Command('$DESTINATION_ROOT/resources/inspector', | 642 env.Command('$DESTINATION_ROOT/resources/inspector', |
642 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/inspector/front-end', | 643 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/inspector/front-end', |
643 Copy('$TARGET', '$SOURCE'), | 644 Copy('$TARGET', '$SOURCE'), |
644 source_scanner=DirScanner) | 645 source_scanner=DirScanner) |
OLD | NEW |