| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'content_shell_product_name': 'Content Shell', | 7 'content_shell_product_name': 'Content Shell', |
| 8 # The "19" is so that sites that sniff for version think that this is | 8 # The "19" is so that sites that sniff for version think that this is |
| 9 # something reasonably current; the "77.34.5" is a hint that this isn't a | 9 # something reasonably current; the "77.34.5" is a hint that this isn't a |
| 10 # standard Chrome. | 10 # standard Chrome. |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 'shell/renderer/layout_test/test_media_stream_renderer_factory.cc', | 227 'shell/renderer/layout_test/test_media_stream_renderer_factory.cc', |
| 228 'shell/renderer/layout_test/test_media_stream_renderer_factory.h', | 228 'shell/renderer/layout_test/test_media_stream_renderer_factory.h', |
| 229 'shell/renderer/layout_test/test_plugin_placeholder.cc', | 229 'shell/renderer/layout_test/test_plugin_placeholder.cc', |
| 230 'shell/renderer/layout_test/test_plugin_placeholder.h', | 230 'shell/renderer/layout_test/test_plugin_placeholder.h', |
| 231 'shell/renderer/layout_test/test_video_frame_provider.cc', | 231 'shell/renderer/layout_test/test_video_frame_provider.cc', |
| 232 'shell/renderer/layout_test/test_video_frame_provider.h', | 232 'shell/renderer/layout_test/test_video_frame_provider.h', |
| 233 'shell/renderer/shell_content_renderer_client.cc', | 233 'shell/renderer/shell_content_renderer_client.cc', |
| 234 'shell/renderer/shell_content_renderer_client.h', | 234 'shell/renderer/shell_content_renderer_client.h', |
| 235 'shell/renderer/shell_render_view_observer.cc', | 235 'shell/renderer/shell_render_view_observer.cc', |
| 236 'shell/renderer/shell_render_view_observer.h', | 236 'shell/renderer/shell_render_view_observer.h', |
| 237 'shell/utility/shell_content_utility_client.cc', |
| 238 'shell/utility/shell_content_utility_client.h', |
| 237 ], | 239 ], |
| 238 'msvs_settings': { | 240 'msvs_settings': { |
| 239 'VCLinkerTool': { | 241 'VCLinkerTool': { |
| 240 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 242 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 241 }, | 243 }, |
| 242 }, | 244 }, |
| 243 'conditions': [ | 245 'conditions': [ |
| 244 ['OS=="win" and win_use_allocator_shim==1', { | 246 ['OS=="win" and win_use_allocator_shim==1', { |
| 245 'dependencies': [ | 247 'dependencies': [ |
| 246 '../base/allocator/allocator.gyp:allocator', | 248 '../base/allocator/allocator.gyp:allocator', |
| (...skipping 805 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1052 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 1054 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
| 1053 '--destination_dir', '<(dest_dir)', | 1055 '--destination_dir', '<(dest_dir)', |
| 1054 ], | 1056 ], |
| 1055 }, | 1057 }, |
| 1056 ], | 1058 ], |
| 1057 }, | 1059 }, |
| 1058 ], | 1060 ], |
| 1059 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1061 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
| 1060 ] | 1062 ] |
| 1061 } | 1063 } |
| OLD | NEW |