| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 # Name the exe chrome.exe, not chrome_initial.exe. | 49 # Name the exe chrome.exe, not chrome_initial.exe. |
| 50 'product_name': 'chrome', | 50 'product_name': 'chrome', |
| 51 'mac_bundle': 1, | 51 'mac_bundle': 1, |
| 52 'variables': { | 52 'variables': { |
| 53 'use_system_xdg_utils%': 0, | 53 'use_system_xdg_utils%': 0, |
| 54 'enable_wexit_time_destructors': 1, | 54 'enable_wexit_time_destructors': 1, |
| 55 }, | 55 }, |
| 56 'sources': [ | 56 'sources': [ |
| 57 # Note that due to InitializeSandboxInfo, this must be directly linked | 57 # Note that due to InitializeSandboxInfo, this must be directly linked |
| 58 # into chrome.exe, not into a dependent. | 58 # into chrome.exe, not into a dependent. |
| 59 '<(DEPTH)/content/app/startup_helper_win.cc', | 59 '<(DEPTH)/content/app/sandbox_helper_win.cc', |
| 60 '<(DEPTH)/content/public/common/content_switches.cc', | 60 '<(DEPTH)/content/public/common/content_switches.cc', |
| 61 'app/chrome_exe_load_config_win.cc', | 61 'app/chrome_exe_load_config_win.cc', |
| 62 'app/chrome_exe_main_aura.cc', | 62 'app/chrome_exe_main_aura.cc', |
| 63 'app/chrome_exe_main_mac.cc', | 63 'app/chrome_exe_main_mac.cc', |
| 64 'app/chrome_exe_main_win.cc', | 64 'app/chrome_exe_main_win.cc', |
| 65 'app/chrome_exe_resource.h', | 65 'app/chrome_exe_resource.h', |
| 66 'app/chrome_watcher_client_win.cc', | 66 'app/chrome_watcher_client_win.cc', |
| 67 'app/chrome_watcher_client_win.h', | 67 'app/chrome_watcher_client_win.h', |
| 68 'app/chrome_watcher_command_line_win.cc', | 68 'app/chrome_watcher_command_line_win.cc', |
| 69 'app/chrome_watcher_command_line_win.h', | 69 'app/chrome_watcher_command_line_win.h', |
| (...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 524 }, | 524 }, |
| 525 ], | 525 ], |
| 526 'conditions': [ | 526 'conditions': [ |
| 527 ['disable_nacl!=1 and target_arch=="ia32"', { | 527 ['disable_nacl!=1 and target_arch=="ia32"', { |
| 528 'targets': [ | 528 'targets': [ |
| 529 { | 529 { |
| 530 'target_name': 'chrome_nacl_win64', | 530 'target_name': 'chrome_nacl_win64', |
| 531 'type': 'executable', | 531 'type': 'executable', |
| 532 'product_name': 'nacl64', | 532 'product_name': 'nacl64', |
| 533 'sources': [ | 533 'sources': [ |
| 534 '../content/app/startup_helper_win.cc', | 534 '../content/app/sandbox_helper_win.cc', |
| 535 '../content/common/sandbox_init_win.cc', | 535 '../content/common/sandbox_init_win.cc', |
| 536 '../content/common/sandbox_win.cc', | 536 '../content/common/sandbox_win.cc', |
| 537 '../content/public/common/content_switches.cc', | 537 '../content/public/common/content_switches.cc', |
| 538 '../content/public/common/sandboxed_process_launcher_delegate.cc
', | 538 '../content/public/common/sandboxed_process_launcher_delegate.cc
', |
| 539 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/nacl64_exe_version.rc
', | 539 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/nacl64_exe_version.rc
', |
| 540 'app/chrome_crash_reporter_client.cc', | 540 'app/chrome_crash_reporter_client.cc', |
| 541 'common/crash_keys.cc', | 541 'common/crash_keys.cc', |
| 542 'nacl/nacl_exe_win_64.cc', | 542 'nacl/nacl_exe_win_64.cc', |
| 543 ], | 543 ], |
| 544 'dependencies': [ | 544 'dependencies': [ |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 617 'dependencies': [ | 617 'dependencies': [ |
| 618 'chrome_nacl_win64', | 618 'chrome_nacl_win64', |
| 619 ], | 619 ], |
| 620 }], | 620 }], |
| 621 ], | 621 ], |
| 622 }, | 622 }, |
| 623 ], | 623 ], |
| 624 }], | 624 }], |
| 625 ], | 625 ], |
| 626 } | 626 } |
| OLD | NEW |