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 '$BREAKPAD_DIR/using_breakpad.scons', | 10 '$BREAKPAD_DIR/using_breakpad.scons', |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
92 'ipc_message_utils.h', | 92 'ipc_message_utils.h', |
93 'ipc_sync_channel.cc', | 93 'ipc_sync_channel.cc', |
94 'ipc_sync_channel.h', | 94 'ipc_sync_channel.h', |
95 'ipc_sync_message.cc', | 95 'ipc_sync_message.cc', |
96 'ipc_sync_message.h', | 96 'ipc_sync_message.h', |
97 'plugin_messages.h', | 97 'plugin_messages.h', |
98 'plugin_messages_internal.h', | 98 'plugin_messages_internal.h', |
99 'render_messages.h', | 99 'render_messages.h', |
100 'render_messages_internal.h', | 100 'render_messages_internal.h', |
101 ]), | 101 ]), |
102 'accessibility.h', | |
scherkus (not reviewing)
2009/02/05 03:22:16
Is it possible to add this for the xcodeproj as we
jam
2009/02/05 03:25:54
I wasn't sure if I can just rename it, and I don't
| |
102 'animation.cc', | 103 'animation.cc', |
103 'animation.h', | 104 'animation.h', |
104 'child_process.cc', | 105 'child_process.cc', |
105 'child_process.h', | 106 'child_process.h', |
106 'chrome_constants.cc', | 107 'chrome_constants.cc', |
107 'chrome_constants.h', | 108 'chrome_constants.h', |
108 'chrome_counters.cc', | 109 'chrome_counters.cc', |
109 'chrome_counters.h', | 110 'chrome_counters.h', |
110 'chrome_paths.cc', | 111 'chrome_paths.cc', |
111 'chrome_paths.h', | 112 'chrome_paths.h', |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
315 './common.vsprops', | 316 './common.vsprops', |
316 '$(SolutionDir)../build/release.vsprops', | 317 '$(SolutionDir)../build/release.vsprops', |
317 ]) | 318 ]) |
318 | 319 |
319 p.AddFileConfig('../tools/build/win/precompiled.cc', | 320 p.AddFileConfig('../tools/build/win/precompiled.cc', |
320 'Debug|Win32', | 321 'Debug|Win32', |
321 tools=[ | 322 tools=[ |
322 MSVSTool('VCCLCompilerTool', | 323 MSVSTool('VCCLCompilerTool', |
323 UsePrecompiledHeader='1'), | 324 UsePrecompiledHeader='1'), |
324 ]) | 325 ]) |
OLD | NEW |