| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 'message_router.cc', | 64 'message_router.cc', |
| 65 'net/cookie_monster_sqlite.cc', | 65 'net/cookie_monster_sqlite.cc', |
| 66 'notification_registrar.cc', | 66 'notification_registrar.cc', |
| 67 'notification_service.cc', | 67 'notification_service.cc', |
| 68 'pref_member.cc', | 68 'pref_member.cc', |
| 69 'pref_names.cc', | 69 'pref_names.cc', |
| 70 'pref_service.cc', | 70 'pref_service.cc', |
| 71 'property_bag.cc', | 71 'property_bag.cc', |
| 72 'render_messages.cc', | 72 'render_messages.cc', |
| 73 'resource_dispatcher.cc', | 73 'resource_dispatcher.cc', |
| 74 'sandbox_init_wrapper.cc', |
| 74 'slide_animation.cc', | 75 'slide_animation.cc', |
| 75 'sqlite_compiled_statement.cc', | 76 'sqlite_compiled_statement.cc', |
| 76 'sqlite_utils.cc', | 77 'sqlite_utils.cc', |
| 77 'task_queue.cc', | 78 'task_queue.cc', |
| 78 'throb_animation.cc', | 79 'throb_animation.cc', |
| 79 'time_format.cc', | 80 'time_format.cc', |
| 80 'thumbnail_score.cc', | 81 'thumbnail_score.cc', |
| 81 'unzip.cc', | 82 'unzip.cc', |
| 82 'visitedlink_common.cc', | 83 'visitedlink_common.cc', |
| 83 ]) | 84 ]) |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 if not env.Bit('mac'): | 132 if not env.Bit('mac'): |
| 132 # TODO(port): This should be enabled for all platforms. | 133 # TODO(port): This should be enabled for all platforms. |
| 133 env.ChromeLibrary('common', input_files) | 134 env.ChromeLibrary('common', input_files) |
| 134 | 135 |
| 135 env.ChromeMSVSProject('$CHROME_DIR/common/common.vcproj', | 136 env.ChromeMSVSProject('$CHROME_DIR/common/common.vcproj', |
| 136 dependencies = [ | 137 dependencies = [ |
| 137 '$LIBXML_DIR/build/libxml_config.vcproj', | 138 '$LIBXML_DIR/build/libxml_config.vcproj', |
| 138 '$CHROME_DIR/app/generated_resources.vcproj', | 139 '$CHROME_DIR/app/generated_resources.vcproj', |
| 139 ], | 140 ], |
| 140 guid='{899F1280-3441-4D1F-BA04-CCD6208D9146}') | 141 guid='{899F1280-3441-4D1F-BA04-CCD6208D9146}') |
| OLD | NEW |