| 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 # GN version: //chrome | 8 # GN version: //chrome |
| 9 'target_name': 'chrome', | 9 'target_name': 'chrome', |
| 10 'type': 'none', | 10 'type': 'none', |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 'ldflags': [ | 98 'ldflags': [ |
| 99 '-Wl,-section-ordering-file=<(order_text_section)' ], | 99 '-Wl,-section-ordering-file=<(order_text_section)' ], |
| 100 }], | 100 }], |
| 101 ] | 101 ] |
| 102 }], | 102 }], |
| 103 ['OS == "win"', { | 103 ['OS == "win"', { |
| 104 'dependencies': [ | 104 'dependencies': [ |
| 105 'chrome_watcher', | 105 'chrome_watcher', |
| 106 'chrome_watcher_client', | 106 'chrome_watcher_client', |
| 107 '../components/components.gyp:browser_watcher_client', | 107 '../components/components.gyp:browser_watcher_client', |
| 108 '../third_party/crashpad/crashpad/handler/handler.gyp:crashpad_handl
er_lib', |
| 108 ], | 109 ], |
| 109 'conditions': [ | 110 'conditions': [ |
| 110 ['kasko==1', { | 111 ['kasko==1', { |
| 111 'dependencies': [ | 112 'dependencies': [ |
| 112 'kasko_dll', | 113 'kasko_dll', |
| 113 ], | 114 ], |
| 114 }], | 115 }], |
| 115 ['win_console_app==1', { | 116 ['win_console_app==1', { |
| 116 'defines': ['WIN_CONSOLE_APP'], | 117 'defines': ['WIN_CONSOLE_APP'], |
| 117 }], | 118 }], |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 425 '../components/components.gyp:crash_component', | 426 '../components/components.gyp:crash_component', |
| 426 '../components/components.gyp:crash_core_common', | 427 '../components/components.gyp:crash_core_common', |
| 427 '../components/components.gyp:flags_ui_switches', | 428 '../components/components.gyp:flags_ui_switches', |
| 428 '../sandbox/sandbox.gyp:sandbox', | 429 '../sandbox/sandbox.gyp:sandbox', |
| 429 '../ui/gfx/gfx.gyp:gfx', | 430 '../ui/gfx/gfx.gyp:gfx', |
| 430 '../win8/metro_driver/metro_driver.gyp:metro_driver', | 431 '../win8/metro_driver/metro_driver.gyp:metro_driver', |
| 431 '../win8/delegate_execute/delegate_execute.gyp:*', | 432 '../win8/delegate_execute/delegate_execute.gyp:*', |
| 432 ], | 433 ], |
| 433 'sources': [ | 434 'sources': [ |
| 434 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_exe_version.rc', | 435 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_exe_version.rc', |
| 435 'app/chrome_crash_reporter_client.cc', | |
| 436 'app/chrome_crash_reporter_client.h', | |
| 437 'app/chrome_exe.rc', | 436 'app/chrome_exe.rc', |
| 438 'common/crash_keys.cc', | 437 'common/crash_keys.cc', |
| 439 'common/crash_keys.h', | 438 'common/crash_keys.h', |
| 440 ], | 439 ], |
| 441 'sources!': [ | 440 'sources!': [ |
| 442 # We still want the _win entry point for sandbox, etc. | 441 # We still want the _win entry point for sandbox, etc. |
| 443 'app/chrome_exe_main_aura.cc', | 442 'app/chrome_exe_main_aura.cc', |
| 444 ], | 443 ], |
| 445 'msvs_settings': { | 444 'msvs_settings': { |
| 446 'VCLinkerTool': { | 445 'VCLinkerTool': { |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 622 'dependencies': [ | 621 'dependencies': [ |
| 623 'chrome_nacl_win64', | 622 'chrome_nacl_win64', |
| 624 ], | 623 ], |
| 625 }], | 624 }], |
| 626 ], | 625 ], |
| 627 }, | 626 }, |
| 628 ], | 627 ], |
| 629 }], | 628 }], |
| 630 ], | 629 ], |
| 631 } | 630 } |
| OLD | NEW |