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