| 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_network_delegate.cc', | 91 'shell/shell_network_delegate.cc', |
| 91 'shell/shell_network_delegate.h', | 92 'shell/shell_network_delegate.h', |
| 92 'shell/shell_render_process_observer.cc', | 93 'shell/shell_render_process_observer.cc', |
| 93 'shell/shell_render_process_observer.h', | 94 'shell/shell_render_process_observer.h', |
| 94 'shell/shell_render_view_host_observer.cc', | 95 'shell/shell_render_view_host_observer.cc', |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 255 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 255 }, | 256 }, |
| 256 }, | 257 }, |
| 257 'conditions': [ | 258 'conditions': [ |
| 258 ['OS=="win" and win_use_allocator_shim==1', { | 259 ['OS=="win" and win_use_allocator_shim==1', { |
| 259 'dependencies': [ | 260 'dependencies': [ |
| 260 '../base/allocator/allocator.gyp:allocator', | 261 '../base/allocator/allocator.gyp:allocator', |
| 261 ], | 262 ], |
| 262 }], | 263 }], |
| 263 ['OS=="win"', { | 264 ['OS=="win"', { |
| 265 'sources': [ |
| 266 'shell/shell.rc', |
| 267 ], |
| 264 'configurations': { | 268 'configurations': { |
| 265 'Debug_Base': { | 269 'Debug_Base': { |
| 266 'msvs_settings': { | 270 'msvs_settings': { |
| 267 'VCLinkerTool': { | 271 'VCLinkerTool': { |
| 268 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', | 272 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', |
| 269 }, | 273 }, |
| 270 }, | 274 }, |
| 271 }, | 275 }, |
| 272 }, | 276 }, |
| 273 }], # OS=="win" | 277 }], # OS=="win" |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 '-buildfile', | 471 '-buildfile', |
| 468 '<(DEPTH)/content/shell/android/content_shell_apk.xml', | 472 '<(DEPTH)/content/shell/android/content_shell_apk.xml', |
| 469 ] | 473 ] |
| 470 } | 474 } |
| 471 ], | 475 ], |
| 472 }, | 476 }, |
| 473 ], | 477 ], |
| 474 }], # OS=="android" | 478 }], # OS=="android" |
| 475 ] | 479 ] |
| 476 } | 480 } |
| OLD | NEW |