| 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': 'executable', | 9 'type': 'executable', |
| 10 'mac_bundle': 1, | 10 'mac_bundle': 1, |
| 11 'variables': { | 11 'variables': { |
| 12 'use_system_xdg_utils%': 0, | 12 'use_system_xdg_utils%': 0, |
| 13 'enable_wexit_time_destructors': 1, | 13 'enable_wexit_time_destructors': 1, |
| 14 }, | 14 }, |
| 15 'sources': [ | 15 'sources': [ |
| 16 'app/breakpad_field_trial_win.cc', | 16 'app/breakpad_field_trial_win.cc', |
| 17 'app/breakpad_field_trial_win.h', | 17 'app/breakpad_field_trial_win.h', |
| 18 'app/breakpad_win.cc', | 18 'app/breakpad_win.cc', |
| 19 'app/breakpad_win.h', | 19 'app/breakpad_win.h', |
| 20 'app/chrome_exe_main_aura.cc', | 20 'app/chrome_exe_main_aura.cc', |
| 21 'app/chrome_exe_main_gtk.cc', | 21 'app/chrome_exe_main_gtk.cc', |
| 22 'app/chrome_exe_main_mac.cc', | 22 'app/chrome_exe_main_mac.cc', |
| 23 'app/chrome_exe_main_win.cc', | 23 'app/chrome_exe_main_win.cc', |
| 24 'app/chrome_exe_resource.h', | 24 'app/chrome_exe_resource.h', |
| 25 'app/client_util.cc', | 25 'app/client_util.cc', |
| 26 'app/client_util.h', | 26 'app/client_util.h', |
| 27 'app/additional.manifest', |
| 28 'app/chrome.manifest', |
| 27 'app/hard_error_handler_win.cc', | 29 'app/hard_error_handler_win.cc', |
| 28 'app/hard_error_handler_win.h', | 30 'app/hard_error_handler_win.h', |
| 29 'app/metro_driver_win.cc', | 31 'app/metro_driver_win.cc', |
| 30 'app/metro_driver_win.h', | 32 'app/metro_driver_win.h', |
| 31 '../content/app/startup_helper_win.cc', | 33 '../content/app/startup_helper_win.cc', |
| 32 ], | 34 ], |
| 33 'mac_bundle_resources': [ | 35 'mac_bundle_resources': [ |
| 34 'app/app-Info.plist', | 36 'app/app-Info.plist', |
| 35 ], | 37 ], |
| 36 # TODO(mark): Come up with a fancier way to do this. It should only | 38 # TODO(mark): Come up with a fancier way to do this. It should only |
| (...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 478 'dbghelp.dll', | 480 'dbghelp.dll', |
| 479 'dwmapi.dll', | 481 'dwmapi.dll', |
| 480 'uxtheme.dll', | 482 'uxtheme.dll', |
| 481 'ole32.dll', | 483 'ole32.dll', |
| 482 'oleaut32.dll', | 484 'oleaut32.dll', |
| 483 ], | 485 ], |
| 484 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself. | 486 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself. |
| 485 'SubSystem': '2', | 487 'SubSystem': '2', |
| 486 }, | 488 }, |
| 487 'VCManifestTool': { | 489 'VCManifestTool': { |
| 488 'AdditionalManifestFiles': '$(ProjectDir)\\app\\chrome.exe.manifes
t', | 490 'AdditionalManifestFiles': '$(ProjectDir)\\app\\additional.manifes
t;$(ProjectDir)\\app\\chrome.manifest', |
| 489 }, | 491 }, |
| 490 }, | 492 }, |
| 491 'actions': [ | 493 'actions': [ |
| 492 { | 494 { |
| 493 'action_name': 'first_run', | 495 'action_name': 'first_run', |
| 494 'inputs': [ | 496 'inputs': [ |
| 495 'app/FirstRun', | 497 'app/FirstRun', |
| 496 ], | 498 ], |
| 497 'outputs': [ | 499 'outputs': [ |
| 498 '<(PRODUCT_DIR)/First Run', | 500 '<(PRODUCT_DIR)/First Run', |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 588 'target_name': 'chrome_nacl_win64', | 590 'target_name': 'chrome_nacl_win64', |
| 589 'type': 'none', | 591 'type': 'none', |
| 590 'sources': [], | 592 'sources': [], |
| 591 }, | 593 }, |
| 592 ], | 594 ], |
| 593 }], | 595 }], |
| 594 ], | 596 ], |
| 595 }], | 597 }], |
| 596 ], | 598 ], |
| 597 } | 599 } |
| OLD | NEW |