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 '$SKIA_DIR/platform', | 94 '$SKIA_DIR/platform', |
95 '$LIBXSL_DIR', | 95 '$LIBXSL_DIR', |
96 '$LIBXML_DIR/DerivedSources/include', | 96 '$LIBXML_DIR/DerivedSources/include', |
97 '$LIBXML_DIR/include', | 97 '$LIBXML_DIR/include', |
98 '$BREAKPAD_DIR/src', | 98 '$BREAKPAD_DIR/src', |
99 ], | 99 ], |
100 LIBS = [ | 100 LIBS = [ |
101 'base', | 101 'base', |
102 'base_gfx', | 102 'base_gfx', |
103 #'breakpad_handler', | 103 #'breakpad_handler', |
104 'dmg_fp', | |
105 'googleurl', | 104 'googleurl', |
106 'net', | 105 'net', |
107 'skia', | 106 'skia', |
108 'bzip2', | 107 'bzip2', |
109 env_dll['ICU_LIBS'], # TODO(sgk): '$ICU_LIBS' when scons is fixed | 108 env_dll['ICU_LIBS'], # TODO(sgk): '$ICU_LIBS' when scons is fixed |
110 'libjpeg', | 109 'libjpeg', |
111 'libpng', | 110 'libpng', |
112 'libxml', | 111 'libxml', |
113 'libxslt', | 112 'libxslt', |
114 'modp_b64', | 113 'modp_b64', |
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
454 env.Alias('chrome', i) | 453 env.Alias('chrome', i) |
455 | 454 |
456 | 455 |
457 i = env.Command('$TARGET_ROOT/resources/inspector', | 456 i = env.Command('$TARGET_ROOT/resources/inspector', |
458 '$CHROME_SRC_DIR/webkit/port/page/inspector', | 457 '$CHROME_SRC_DIR/webkit/port/page/inspector', |
459 Copy('$TARGET', '$SOURCE'), | 458 Copy('$TARGET', '$SOURCE'), |
460 source_scanner=DirScanner) | 459 source_scanner=DirScanner) |
461 env.Alias('chrome', i) | 460 env.Alias('chrome', i) |
462 | 461 |
463 env.Alias('chrome', env.Alias('webkit')) | 462 env.Alias('chrome', env.Alias('webkit')) |
OLD | NEW |