| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 dll_resources = [ | 52 dll_resources = [ |
| 53 browser_res, | 53 browser_res, |
| 54 chrome_dll_res, | 54 chrome_dll_res, |
| 55 common_res, | 55 common_res, |
| 56 debugger_res, | 56 debugger_res, |
| 57 net_res, | 57 net_res, |
| 58 renderer_res, | 58 renderer_res, |
| 59 webkit_res, | 59 webkit_res, |
| 60 ] | 60 ] |
| 61 | 61 |
| 62 env_test['BROWSER_RES'] = browser_res[0] | |
| 63 env_test['TEST_DATA_RES'] = test_data_res[0] | |
| 64 | |
| 65 env_dll = env.Clone() | 62 env_dll = env.Clone() |
| 66 | 63 |
| 67 env_dll.Prepend( | 64 env_dll.Prepend( |
| 68 CPPPATH = [ | 65 CPPPATH = [ |
| 69 "..", | 66 "..", |
| 70 ], | 67 ], |
| 71 CPPDEFINES = [ | 68 CPPDEFINES = [ |
| 72 'U_STATIC_IMPLEMENTATION', | 69 'U_STATIC_IMPLEMENTATION', |
| 73 'PNG_USER_CONFIG', | 70 'PNG_USER_CONFIG', |
| 74 'CHROME_PNG_WRITE_SUPPORT', | 71 'CHROME_PNG_WRITE_SUPPORT', |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 461 env.Alias('chrome', i) | 458 env.Alias('chrome', i) |
| 462 | 459 |
| 463 | 460 |
| 464 i = env.Command('$TARGET_ROOT/resources/inspector', | 461 i = env.Command('$TARGET_ROOT/resources/inspector', |
| 465 '$CHROME_SRC_DIR/webkit/port/page/inspector', | 462 '$CHROME_SRC_DIR/webkit/port/page/inspector', |
| 466 Copy('$TARGET', '$SOURCE'), | 463 Copy('$TARGET', '$SOURCE'), |
| 467 source_scanner=DirScanner) | 464 source_scanner=DirScanner) |
| 468 env.Alias('chrome', i) | 465 env.Alias('chrome', i) |
| 469 | 466 |
| 470 env.Alias('chrome', env.Alias('webkit')) | 467 env.Alias('chrome', env.Alias('webkit')) |
| OLD | NEW |