| 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 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 'shell/shell_content_renderer_client.h', | 75 'shell/shell_content_renderer_client.h', |
| 76 'shell/shell_content_utility_client.cc', | 76 'shell/shell_content_utility_client.cc', |
| 77 'shell/shell_content_utility_client.h', | 77 'shell/shell_content_utility_client.h', |
| 78 'shell/shell_devtools_delegate.cc', | 78 'shell/shell_devtools_delegate.cc', |
| 79 'shell/shell_devtools_delegate.h', | 79 'shell/shell_devtools_delegate.h', |
| 80 'shell/shell_download_manager_delegate.cc', | 80 'shell/shell_download_manager_delegate.cc', |
| 81 'shell/shell_download_manager_delegate.h', | 81 'shell/shell_download_manager_delegate.h', |
| 82 'shell/shell_javascript_dialog_creator.cc', | 82 'shell/shell_javascript_dialog_creator.cc', |
| 83 'shell/shell_javascript_dialog_creator.h', | 83 'shell/shell_javascript_dialog_creator.h', |
| 84 'shell/shell_javascript_dialog_mac.mm', | 84 'shell/shell_javascript_dialog_mac.mm', |
| 85 'shell/shell_javascript_dialog_win.cc', |
| 85 'shell/shell_javascript_dialog.h', | 86 'shell/shell_javascript_dialog.h', |
| 86 'shell/shell_main_delegate.cc', | 87 'shell/shell_main_delegate.cc', |
| 87 'shell/shell_main_delegate.h', | 88 'shell/shell_main_delegate.h', |
| 88 'shell/shell_messages.cc', | 89 'shell/shell_messages.cc', |
| 89 'shell/shell_messages.h', | 90 'shell/shell_messages.h', |
| 90 'shell/shell_render_process_observer.cc', | 91 'shell/shell_render_process_observer.cc', |
| 91 'shell/shell_render_process_observer.h', | 92 'shell/shell_render_process_observer.h', |
| 92 'shell/shell_render_view_host_observer.cc', | 93 'shell/shell_render_view_host_observer.cc', |
| 93 'shell/shell_render_view_host_observer.h', | 94 'shell/shell_render_view_host_observer.h', |
| 94 'shell/shell_render_view_observer.cc', | 95 'shell/shell_render_view_observer.cc', |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 253 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 253 }, | 254 }, |
| 254 }, | 255 }, |
| 255 'conditions': [ | 256 'conditions': [ |
| 256 ['OS=="win" and win_use_allocator_shim==1', { | 257 ['OS=="win" and win_use_allocator_shim==1', { |
| 257 'dependencies': [ | 258 'dependencies': [ |
| 258 '../base/allocator/allocator.gyp:allocator', | 259 '../base/allocator/allocator.gyp:allocator', |
| 259 ], | 260 ], |
| 260 }], | 261 }], |
| 261 ['OS=="win"', { | 262 ['OS=="win"', { |
| 263 'sources': [ |
| 264 'shell/shell.rc', |
| 265 ], |
| 262 'configurations': { | 266 'configurations': { |
| 263 'Debug_Base': { | 267 'Debug_Base': { |
| 264 'msvs_settings': { | 268 'msvs_settings': { |
| 265 'VCLinkerTool': { | 269 'VCLinkerTool': { |
| 266 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', | 270 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', |
| 267 }, | 271 }, |
| 268 }, | 272 }, |
| 269 }, | 273 }, |
| 270 }, | 274 }, |
| 271 }], # OS=="win" | 275 }], # OS=="win" |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 'action': [ | 439 'action': [ |
| 436 '../build/mac/verify_no_objc.sh', | 440 '../build/mac/verify_no_objc.sh', |
| 437 ], | 441 ], |
| 438 }, | 442 }, |
| 439 ], | 443 ], |
| 440 }, # target content_shell_helper_app | 444 }, # target content_shell_helper_app |
| 441 ], | 445 ], |
| 442 }], # OS=="mac" | 446 }], # OS=="mac" |
| 443 ], | 447 ], |
| 444 } | 448 } |
| OLD | NEW |