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('env') | 5 Import('env') |
6 | 6 |
7 env = env.Clone() | 7 env = env.Clone() |
8 | 8 |
9 env.SConscript([ | 9 env.SConscript([ |
10 '$CHROME_DIR/third_party/wtl/using_wtl.scons', | 10 '$CHROME_DIR/third_party/wtl/using_wtl.scons', |
| 11 '$GRIT_DIR/build/using_generated_resources.scons', |
11 '$ICU38_DIR/using_icu38.scons', | 12 '$ICU38_DIR/using_icu38.scons', |
12 '$NPAPI_DIR/using_npapi.scons', | 13 '$NPAPI_DIR/using_npapi.scons', |
13 '$SKIA_DIR/using_skia.scons', | 14 '$SKIA_DIR/using_skia.scons', |
14 ], {'env':env}) | 15 ], {'env':env}) |
15 | 16 |
16 env.Prepend( | 17 env.Prepend( |
17 CPPPATH = [ | 18 CPPPATH = [ |
18 '$TARGET_ROOT/grit_derived_sources', | |
19 '$CHROME_SRC_DIR', | 19 '$CHROME_SRC_DIR', |
20 ], | 20 ], |
21 ) | 21 ) |
22 | 22 |
23 if env.Bit('windows'): | 23 if env.Bit('windows'): |
24 env.Prepend( | 24 env.Prepend( |
25 CPPPATH = [ | 25 CPPPATH = [ |
26 '$CHROME_DIR/tools/build/win', | 26 '$CHROME_DIR/tools/build/win', |
27 ], | 27 ], |
28 ) | 28 ) |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 | 101 |
102 # TODO(port): Enable for Mac. | 102 # TODO(port): Enable for Mac. |
103 if not env.Bit('mac'): | 103 if not env.Bit('mac'): |
104 env.ChromeLibrary('renderer', input_files) | 104 env.ChromeLibrary('renderer', input_files) |
105 | 105 |
106 env.ChromeMSVSProject('$CHROME_DIR/renderer/renderer.vcproj', | 106 env.ChromeMSVSProject('$CHROME_DIR/renderer/renderer.vcproj', |
107 dependencies = [ | 107 dependencies = [ |
108 '$CHROME_DIR/app/generated_resources.vcproj', | 108 '$CHROME_DIR/app/generated_resources.vcproj', |
109 ], | 109 ], |
110 guid='{9301A569-5D2B-4D11-9332-B1E30AEACB8D}') | 110 guid='{9301A569-5D2B-4D11-9332-B1E30AEACB8D}') |
OLD | NEW |