| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 'libjpeg', | 108 'libjpeg', |
| 109 'libpng', | 109 'libpng', |
| 110 'libxml', | 110 'libxml', |
| 111 'libxslt', | 111 'libxslt', |
| 112 'modp_b64', | 112 'modp_b64', |
| 113 'zlib', | 113 'zlib', |
| 114 | 114 |
| 115 'WTF', | 115 'WTF', |
| 116 'V8Bindings', | 116 'V8Bindings', |
| 117 'WebCore', | 117 'WebCore', |
| 118 'WebKit', |
| 118 'default_plugin', | 119 'default_plugin', |
| 119 'glue', | 120 'glue', |
| 120 'JavaScriptCore_pcre', | 121 'JavaScriptCore_pcre', |
| 121 'port', | 122 'port', |
| 122 | 123 |
| 123 'browser', | 124 'browser', |
| 124 'common', | 125 'common', |
| 125 'debugger', | 126 'debugger', |
| 126 'util', | 127 'util', |
| 127 'renderer', | 128 'renderer', |
| (...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 640 ] | 641 ] |
| 641 | 642 |
| 642 # TODO(port) | 643 # TODO(port) |
| 643 if env.Bit('windows'): | 644 if env.Bit('windows'): |
| 644 env.Install('$DESTINATION_ROOT/plugins/gears', gears_plugins) | 645 env.Install('$DESTINATION_ROOT/plugins/gears', gears_plugins) |
| 645 | 646 |
| 646 env.Command('$DESTINATION_ROOT/resources/inspector', | 647 env.Command('$DESTINATION_ROOT/resources/inspector', |
| 647 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/inspector/front-end', | 648 '$CHROME_SRC_DIR/third_party/WebKit/WebCore/inspector/front-end', |
| 648 Copy('$TARGET', '$SOURCE'), | 649 Copy('$TARGET', '$SOURCE'), |
| 649 source_scanner=DirScanner) | 650 source_scanner=DirScanner) |
| OLD | NEW |