| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 '<(DEPTH)/content/public/common/content_switches.cc', | 64 '<(DEPTH)/content/public/common/content_switches.cc', |
| 65 'app/chrome_exe_load_config_win.cc', | 65 'app/chrome_exe_load_config_win.cc', |
| 66 'app/chrome_exe_main_aura.cc', | 66 'app/chrome_exe_main_aura.cc', |
| 67 'app/chrome_exe_main_mac.c', | 67 'app/chrome_exe_main_mac.c', |
| 68 'app/chrome_exe_main_win.cc', | 68 'app/chrome_exe_main_win.cc', |
| 69 'app/chrome_exe_resource.h', | 69 'app/chrome_exe_resource.h', |
| 70 'app/chrome_watcher_client_win.cc', | 70 'app/chrome_watcher_client_win.cc', |
| 71 'app/chrome_watcher_client_win.h', | 71 'app/chrome_watcher_client_win.h', |
| 72 'app/chrome_watcher_command_line_win.cc', | 72 'app/chrome_watcher_command_line_win.cc', |
| 73 'app/chrome_watcher_command_line_win.h', | 73 'app/chrome_watcher_command_line_win.h', |
| 74 'app/kasko_client.cc', |
| 75 'app/kasko_client.h', |
| 74 'app/main_dll_loader_win.cc', | 76 'app/main_dll_loader_win.cc', |
| 75 'app/main_dll_loader_win.h', | 77 'app/main_dll_loader_win.h', |
| 76 'app/kasko_client.cc', | |
| 77 'app/kasko_client.h', | |
| 78 'app/signature_validator_win.cc', | 78 'app/signature_validator_win.cc', |
| 79 'app/signature_validator_win.h', | 79 'app/signature_validator_win.h', |
| 80 ], | 80 ], |
| 81 'mac_bundle_resources': [ | 81 'mac_bundle_resources': [ |
| 82 'app/app-Info.plist', | 82 'app/app-Info.plist', |
| 83 ], | 83 ], |
| 84 # TODO(mark): Come up with a fancier way to do this. It should only | 84 # TODO(mark): Come up with a fancier way to do this. It should only |
| 85 # be necessary to list app-Info.plist once, not the three times it is | 85 # be necessary to list app-Info.plist once, not the three times it is |
| 86 # listed here. | 86 # listed here. |
| 87 'mac_bundle_resources!': [ | 87 'mac_bundle_resources!': [ |
| (...skipping 10 matching lines...) Expand all 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 '../components/components.gyp:crash_component', |
| 108 '../third_party/crashpad/crashpad/handler/handler.gyp:crashpad_handl
er_lib', | 109 '../third_party/crashpad/crashpad/handler/handler.gyp:crashpad_handl
er_lib', |
| 109 ], | 110 ], |
| 111 'sources': [ |
| 112 'app/chrome_crash_reporter_client.cc', |
| 113 'app/chrome_crash_reporter_client.h', |
| 114 ], |
| 110 'conditions': [ | 115 'conditions': [ |
| 111 ['kasko==1', { | 116 ['kasko==1', { |
| 112 'dependencies': [ | 117 'dependencies': [ |
| 113 'kasko_dll', | 118 'kasko_dll', |
| 114 ], | 119 ], |
| 115 'sources': [ | 120 'sources': [ |
| 116 'app/chrome_crash_reporter_client.cc', | 121 'app/chrome_crash_reporter_client.cc', |
| 117 ], | 122 ], |
| 118 }], | 123 }], |
| 119 ['win_console_app==1', { | 124 ['win_console_app==1', { |
| (...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 624 'dependencies': [ | 629 'dependencies': [ |
| 625 'chrome_nacl_win64', | 630 'chrome_nacl_win64', |
| 626 ], | 631 ], |
| 627 }], | 632 }], |
| 628 ], | 633 ], |
| 629 }, | 634 }, |
| 630 ], | 635 ], |
| 631 }], | 636 }], |
| 632 ], | 637 ], |
| 633 } | 638 } |
| OLD | NEW |