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_win.cc', | 16 'app/breakpad_win.cc', |
17 'app/breakpad_win.h', | 17 'app/breakpad_win.h', |
18 'app/chrome_exe_main_aura.cc', | 18 'app/chrome_exe_main_aura.cc', |
19 'app/chrome_exe_main_gtk.cc', | 19 'app/chrome_exe_main_gtk.cc', |
20 'app/chrome_exe_main_mac.cc', | 20 'app/chrome_exe_main_mac.cc', |
21 'app/chrome_exe_main_win.cc', | 21 'app/chrome_exe_main_win.cc', |
22 'app/chrome_exe_resource.h', | 22 'app/chrome_exe_resource.h', |
23 'app/client_util.cc', | 23 'app/client_util.cc', |
24 'app/client_util.h', | 24 'app/client_util.h', |
25 'app/hard_error_handler_win.cc', | 25 'app/hard_error_handler_win.cc', |
26 'app/hard_error_handler_win.h', | 26 'app/hard_error_handler_win.h', |
27 'app/scoped_ole_initializer.h', | 27 'app/scoped_ole_initializer.h', |
28 '../content/app/startup_helper_win.cc', | 28 '../content/app/startup_helper_win.cc', |
29 '../content/public/common/content_switches.cc', | |
30 ], | 29 ], |
31 'mac_bundle_resources': [ | 30 'mac_bundle_resources': [ |
32 'app/app-Info.plist', | 31 'app/app-Info.plist', |
33 ], | 32 ], |
34 # TODO(mark): Come up with a fancier way to do this. It should only | 33 # TODO(mark): Come up with a fancier way to do this. It should only |
35 # be necessary to list app-Info.plist once, not the three times it is | 34 # be necessary to list app-Info.plist once, not the three times it is |
36 # listed here. | 35 # listed here. |
37 'mac_bundle_resources!': [ | 36 'mac_bundle_resources!': [ |
38 'app/app-Info.plist', | 37 'app/app-Info.plist', |
39 ], | 38 ], |
(...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
569 'configurations': { | 568 'configurations': { |
570 'Common_Base': { | 569 'Common_Base': { |
571 'msvs_target_platform': 'x64', | 570 'msvs_target_platform': 'x64', |
572 }, | 571 }, |
573 }, | 572 }, |
574 }, | 573 }, |
575 ], | 574 ], |
576 }], | 575 }], |
577 ], | 576 ], |
578 } | 577 } |
OLD | NEW |