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.ApplySConscript([ | 9 env.ApplySConscript([ |
10 '$BASE_DIR/gfx/using_base_gfx.scons', | 10 '$BASE_DIR/gfx/using_base_gfx.scons', |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 'rpcrt4', | 58 'rpcrt4', |
59 'shlwapi', | 59 'shlwapi', |
60 'winmm', | 60 'winmm', |
61 ], | 61 ], |
62 ) | 62 ) |
63 | 63 |
64 input_files = [ | 64 input_files = [ |
65 'generate_profile.cc', | 65 'generate_profile.cc', |
66 ] | 66 ] |
67 | 67 |
68 env.ChromeTestProgram('generate_profile', input_files) | 68 # TODO(port): |
| 69 if env.Bit('windows'): |
| 70 env.ChromeTestProgram('generate_profile', input_files) |
| 71 |
| 72 env.ChromeMSVSProject('$CHROME_DIR/tools/profiles/generate_profile.vcproj', |
| 73 dependencies = [ |
| 74 '$BASE_DIR/build/base.vcproj', |
| 75 '$WEBKIT_DIR/build/WebCore/WebCore.vcproj', |
| 76 '$CHROME_DIR/plugin/plugin.vcproj', |
| 77 '$LIBJPEG_DIR/libjpeg.vcproj', |
| 78 '$BZIP2_DIR/bzip2.vcproj', |
| 79 '$NET_DIR/build/net.vcproj', |
| 80 ('$WEBKIT_DIR/build/JavaScriptCore/' + |
| 81 'JavaScriptCore_pcre.vcproj'), |
| 82 '$WEBKIT_DIR/build/port/port.vcproj', |
| 83 '$CHROME_DIR/browser/debugger/debugger.vcproj', |
| 84 '$WEBKIT_DIR/default_plugin/default_plugin.vcproj', |
| 85 '$CHROME_DIR/browser/browser.vcproj', |
| 86 '$WEBKIT_DIR/build/V8Bindings/V8Bindings.vcproj', |
| 87 '$SQLITE_DIR/sqlite.vcproj', |
| 88 '$CHROME_DIR/views/views.vcproj', |
| 89 '$MODP_B64_DIR/modp_b64.vcproj', |
| 90 '$ZLIB_DIR/zlib.vcproj', |
| 91 '$CHROME_DIR/common/common.vcproj', |
| 92 '$ICU38_DIR/build/icu.vcproj', |
| 93 '$CHROME_DIR/renderer/renderer.vcproj', |
| 94 '$BASE_DIR/build/base_gfx.vcproj', |
| 95 '$WEBKIT_DIR/build/JavaScriptCore/WTF.vcproj', |
| 96 '$V8_DIR/tools/visual_studio/v8_snapshot.vcproj', |
| 97 '$LIBPNG_DIR/libpng.vcproj', |
| 98 '$WEBKIT_DIR/build/glue/glue.vcproj', |
| 99 '$SKIA_DIR/skia.vcproj', |
| 100 '$CHROME_DIR/third_party/hunspell/hunspell.vcproj', |
| 101 '$GOOGLEURL_DIR/build/googleurl.vcproj', |
| 102 '$CHROME_DIR/installer/util/util.vcproj', |
| 103 '$WEBKIT_DIR/activex_shim/activex_shim.vcproj', |
| 104 '$SDCH_DIR/sdch.vcproj', |
| 105 '$CHROME_DIR/browser/views/browser_views.vcproj', |
| 106 '$LIBXSLT_DIR/build/libxslt.vcproj', |
| 107 » |
| 108 ], |
| 109 guid='{2E969AE9-7B12-4EDB-8E8B-48C7AE7BE357}') |
OLD | NEW |