OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 '../build/common.gypi', | 10 '../build/common.gypi', |
(...skipping 1450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1461 'type': 'executable', | 1461 'type': 'executable', |
1462 'mac_bundle': 1, | 1462 'mac_bundle': 1, |
1463 'dependencies': [ | 1463 'dependencies': [ |
1464 'common', | 1464 'common', |
1465 'browser', | 1465 'browser', |
1466 'renderer', | 1466 'renderer', |
1467 '../printing/printing.gyp:printing', | 1467 '../printing/printing.gyp:printing', |
1468 ], | 1468 ], |
1469 'sources': [ | 1469 'sources': [ |
1470 # All .cc, .h, .m, and .mm files under app except for tests. | 1470 # All .cc, .h, .m, and .mm files under app except for tests. |
1471 'app/breakpad.cc', | 1471 'app/breakpad_win.cc', |
1472 'app/breakpad.h', | 1472 'app/breakpad_win.h', |
| 1473 'app/breakpad_mac.mm', |
| 1474 'app/breakpad_mac.h', |
1473 'app/chrome_dll_main.cc', | 1475 'app/chrome_dll_main.cc', |
1474 'app/chrome_dll_resource.h', | 1476 'app/chrome_dll_resource.h', |
1475 'app/chrome_exe_main.cc', | 1477 'app/chrome_exe_main.cc', |
1476 'app/chrome_exe_main.mm', | 1478 'app/chrome_exe_main.mm', |
1477 'app/chrome_exe_main_gtk.cc', | 1479 'app/chrome_exe_main_gtk.cc', |
1478 'app/chrome_exe_resource.h', | 1480 'app/chrome_exe_resource.h', |
1479 'app/client_util.cc', | 1481 'app/client_util.cc', |
1480 'app/client_util.h', | 1482 'app/client_util.h', |
1481 'app/google_update_client.cc', | 1483 'app/google_update_client.cc', |
1482 'app/google_update_client.h', | 1484 'app/google_update_client.h', |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1659 'outputs': [ | 1661 'outputs': [ |
1660 '<(INTERMEDIATE_DIR)/repack/en-US.pak', | 1662 '<(INTERMEDIATE_DIR)/repack/en-US.pak', |
1661 ], | 1663 ], |
1662 }], | 1664 }], |
1663 ], | 1665 ], |
1664 'action': ['python', '<(repack_path)', '<@(_outputs)', '<@(pak_inp
uts)'], | 1666 'action': ['python', '<(repack_path)', '<@(_outputs)', '<@(pak_inp
uts)'], |
1665 'process_outputs_as_mac_bundle_resources': 1, | 1667 'process_outputs_as_mac_bundle_resources': 1, |
1666 }, | 1668 }, |
1667 ], | 1669 ], |
1668 'sources!': [ | 1670 'sources!': [ |
1669 'app/breakpad.cc', | |
1670 'app/chrome_exe_main.cc', | 1671 'app/chrome_exe_main.cc', |
1671 'app/client_util.cc', | 1672 'app/client_util.cc', |
1672 'app/google_update_client.cc', | 1673 'app/google_update_client.cc', |
1673 ] | 1674 ] |
1674 }], | 1675 }], |
1675 ], | 1676 ], |
1676 }, | 1677 }, |
1677 { | 1678 { |
1678 'target_name': 'image_diff', | 1679 'target_name': 'image_diff', |
1679 'type': 'executable', | 1680 'type': 'executable', |
(...skipping 1059 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2739 'Debug': { | 2740 'Debug': { |
2740 'msvs_precompiled_header': 'tools/build/win/precompiled.h', | 2741 'msvs_precompiled_header': 'tools/build/win/precompiled.h', |
2741 'msvs_precompiled_source': 'tools/build/win/precompiled.cc', | 2742 'msvs_precompiled_source': 'tools/build/win/precompiled.cc', |
2742 }, | 2743 }, |
2743 }, | 2744 }, |
2744 }, | 2745 }, |
2745 ]}, # 'targets' | 2746 ]}, # 'targets' |
2746 ], # OS=="win" | 2747 ], # OS=="win" |
2747 ], # 'conditions' | 2748 ], # 'conditions' |
2748 } | 2749 } |
OLD | NEW |