| 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', | |
| 109 ], | 108 ], |
| 110 'conditions': [ | 109 'conditions': [ |
| 111 ['kasko==1', { | 110 ['kasko==1', { |
| 112 'dependencies': [ | 111 'dependencies': [ |
| 113 'kasko_dll', | 112 'kasko_dll', |
| 114 ], | 113 ], |
| 115 }], | 114 }], |
| 116 ['win_console_app==1', { | 115 ['win_console_app==1', { |
| 117 'defines': ['WIN_CONSOLE_APP'], | 116 'defines': ['WIN_CONSOLE_APP'], |
| 118 }], | 117 }], |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 426 '../components/components.gyp:crash_component', | 425 '../components/components.gyp:crash_component', |
| 427 '../components/components.gyp:crash_core_common', | 426 '../components/components.gyp:crash_core_common', |
| 428 '../components/components.gyp:flags_ui_switches', | 427 '../components/components.gyp:flags_ui_switches', |
| 429 '../sandbox/sandbox.gyp:sandbox', | 428 '../sandbox/sandbox.gyp:sandbox', |
| 430 '../ui/gfx/gfx.gyp:gfx', | 429 '../ui/gfx/gfx.gyp:gfx', |
| 431 '../win8/metro_driver/metro_driver.gyp:metro_driver', | 430 '../win8/metro_driver/metro_driver.gyp:metro_driver', |
| 432 '../win8/delegate_execute/delegate_execute.gyp:*', | 431 '../win8/delegate_execute/delegate_execute.gyp:*', |
| 433 ], | 432 ], |
| 434 'sources': [ | 433 'sources': [ |
| 435 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_exe_version.rc', | 434 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_exe_version.rc', |
| 435 'app/chrome_crash_reporter_client.cc', |
| 436 'app/chrome_crash_reporter_client.h', |
| 436 'app/chrome_exe.rc', | 437 'app/chrome_exe.rc', |
| 437 'common/crash_keys.cc', | 438 'common/crash_keys.cc', |
| 438 'common/crash_keys.h', | 439 'common/crash_keys.h', |
| 439 ], | 440 ], |
| 440 'sources!': [ | 441 'sources!': [ |
| 441 # We still want the _win entry point for sandbox, etc. | 442 # We still want the _win entry point for sandbox, etc. |
| 442 'app/chrome_exe_main_aura.cc', | 443 'app/chrome_exe_main_aura.cc', |
| 443 ], | 444 ], |
| 444 'msvs_settings': { | 445 'msvs_settings': { |
| 445 'VCLinkerTool': { | 446 'VCLinkerTool': { |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 621 'dependencies': [ | 622 'dependencies': [ |
| 622 'chrome_nacl_win64', | 623 'chrome_nacl_win64', |
| 623 ], | 624 ], |
| 624 }], | 625 }], |
| 625 ], | 626 ], |
| 626 }, | 627 }, |
| 627 ], | 628 ], |
| 628 }], | 629 }], |
| 629 ], | 630 ], |
| 630 } | 631 } |
| OLD | NEW |