| 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 'ldflags': [ | 95 'ldflags': [ |
| 96 '-Wl,-section-ordering-file=<(order_text_section)' ], | 96 '-Wl,-section-ordering-file=<(order_text_section)' ], |
| 97 }], | 97 }], |
| 98 ] | 98 ] |
| 99 }], | 99 }], |
| 100 ['OS == "win"', { | 100 ['OS == "win"', { |
| 101 'dependencies': [ | 101 'dependencies': [ |
| 102 'chrome_watcher', | 102 'chrome_watcher', |
| 103 'chrome_watcher_client', | 103 'chrome_watcher_client', |
| 104 '../components/components.gyp:browser_watcher_client', | 104 '../components/components.gyp:browser_watcher_client', |
| 105 '../third_party/crashpad/crashpad/handler/handler.gyp:crashpad_handl
er_lib', | |
| 106 ], | 105 ], |
| 107 'conditions': [ | 106 'conditions': [ |
| 108 ['kasko==1', { | 107 ['kasko==1', { |
| 109 'dependencies': [ | 108 'dependencies': [ |
| 110 'kasko_dll', | 109 'kasko_dll', |
| 111 ], | 110 ], |
| 112 }], | 111 }], |
| 113 ['win_console_app==1', { | 112 ['win_console_app==1', { |
| 114 'defines': ['WIN_CONSOLE_APP'], | 113 'defines': ['WIN_CONSOLE_APP'], |
| 115 }], | 114 }], |
| (...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 '../chrome_elf/chrome_elf.gyp:chrome_elf', | 421 '../chrome_elf/chrome_elf.gyp:chrome_elf', |
| 423 '../components/components.gyp:crash_component', | 422 '../components/components.gyp:crash_component', |
| 424 '../components/components.gyp:crash_core_common', | 423 '../components/components.gyp:crash_core_common', |
| 425 '../sandbox/sandbox.gyp:sandbox', | 424 '../sandbox/sandbox.gyp:sandbox', |
| 426 '../ui/gfx/gfx.gyp:gfx', | 425 '../ui/gfx/gfx.gyp:gfx', |
| 427 '../win8/metro_driver/metro_driver.gyp:metro_driver', | 426 '../win8/metro_driver/metro_driver.gyp:metro_driver', |
| 428 '../win8/delegate_execute/delegate_execute.gyp:*', | 427 '../win8/delegate_execute/delegate_execute.gyp:*', |
| 429 ], | 428 ], |
| 430 'sources': [ | 429 'sources': [ |
| 431 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_exe_version.rc', | 430 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_exe_version.rc', |
| 431 'app/chrome_crash_reporter_client.cc', |
| 432 'app/chrome_crash_reporter_client.h', |
| 432 'app/chrome_exe.rc', | 433 'app/chrome_exe.rc', |
| 433 'common/crash_keys.cc', | 434 'common/crash_keys.cc', |
| 434 'common/crash_keys.h', | 435 'common/crash_keys.h', |
| 435 ], | 436 ], |
| 436 'sources!': [ | 437 'sources!': [ |
| 437 # We still want the _win entry point for sandbox, etc. | 438 # We still want the _win entry point for sandbox, etc. |
| 438 'app/chrome_exe_main_aura.cc', | 439 'app/chrome_exe_main_aura.cc', |
| 439 ], | 440 ], |
| 440 'msvs_settings': { | 441 'msvs_settings': { |
| 441 'VCLinkerTool': { | 442 'VCLinkerTool': { |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 616 'dependencies': [ | 617 'dependencies': [ |
| 617 'chrome_nacl_win64', | 618 'chrome_nacl_win64', |
| 618 ], | 619 ], |
| 619 }], | 620 }], |
| 620 ], | 621 ], |
| 621 }, | 622 }, |
| 622 ], | 623 ], |
| 623 }], | 624 }], |
| 624 ], | 625 ], |
| 625 } | 626 } |
| OLD | NEW |