| 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 'target_name': 'chrome', | 8 'target_name': 'chrome', |
| 9 'type': 'none', | 9 'type': 'none', |
| 10 'dependencies': [ 'chrome_initial', ], | 10 'dependencies': [ 'chrome_initial', ], |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 'type': 'executable', | 46 'type': 'executable', |
| 47 # Name the exe chrome.exe, not chrome_initial.exe. | 47 # Name the exe chrome.exe, not chrome_initial.exe. |
| 48 'product_name': 'chrome', | 48 'product_name': 'chrome', |
| 49 'mac_bundle': 1, | 49 'mac_bundle': 1, |
| 50 'variables': { | 50 'variables': { |
| 51 'use_system_xdg_utils%': 0, | 51 'use_system_xdg_utils%': 0, |
| 52 'enable_wexit_time_destructors': 1, | 52 'enable_wexit_time_destructors': 1, |
| 53 }, | 53 }, |
| 54 'sources': [ | 54 'sources': [ |
| 55 'app/chrome_exe_main_aura.cc', | 55 'app/chrome_exe_main_aura.cc', |
| 56 'app/chrome_exe_main_gtk.cc', | |
| 57 'app/chrome_exe_main_mac.cc', | 56 'app/chrome_exe_main_mac.cc', |
| 58 'app/chrome_exe_main_win.cc', | 57 'app/chrome_exe_main_win.cc', |
| 59 'app/chrome_exe_resource.h', | 58 'app/chrome_exe_resource.h', |
| 60 'app/client_util.cc', | 59 'app/client_util.cc', |
| 61 'app/client_util.h', | 60 'app/client_util.h', |
| 62 'app/signature_validator_win.cc', | 61 'app/signature_validator_win.cc', |
| 63 'app/signature_validator_win.h', | 62 'app/signature_validator_win.h', |
| 64 '<(DEPTH)/content/app/startup_helper_win.cc', | 63 '<(DEPTH)/content/app/startup_helper_win.cc', |
| 65 '<(DEPTH)/content/public/common/content_switches.cc', | 64 '<(DEPTH)/content/public/common/content_switches.cc', |
| 66 ], | 65 ], |
| (...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 701 'dependencies': [ | 700 'dependencies': [ |
| 702 'chrome_nacl_win64', | 701 'chrome_nacl_win64', |
| 703 ], | 702 ], |
| 704 }], | 703 }], |
| 705 ], | 704 ], |
| 706 }, | 705 }, |
| 707 ], | 706 ], |
| 708 }], | 707 }], |
| 709 ], | 708 ], |
| 710 } | 709 } |
| OLD | NEW |