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 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
(...skipping 2803 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2814 'dependencies': [ | 2814 'dependencies': [ |
2815 'app', | 2815 'app', |
2816 'browser', | 2816 'browser', |
2817 'common', | 2817 'common', |
2818 'renderer', | 2818 'renderer', |
2819 'utility', | 2819 'utility', |
2820 'chrome_resources', | 2820 'chrome_resources', |
2821 'chrome_strings', | 2821 'chrome_strings', |
2822 'test_support_unit', | 2822 'test_support_unit', |
2823 '../app/app.gyp:app_resources', | 2823 '../app/app.gyp:app_resources', |
| 2824 '../breakpad/breakpad.gyp:breakpad_client', |
2824 '../net/net.gyp:net_test_support', | 2825 '../net/net.gyp:net_test_support', |
2825 '../printing/printing.gyp:printing', | 2826 '../printing/printing.gyp:printing', |
2826 '../webkit/webkit.gyp:webkit', | 2827 '../webkit/webkit.gyp:webkit', |
2827 '../skia/skia.gyp:skia', | 2828 '../skia/skia.gyp:skia', |
2828 '../testing/gtest.gyp:gtest', | 2829 '../testing/gtest.gyp:gtest', |
2829 '../third_party/icu38/icu38.gyp:icui18n', | 2830 '../third_party/icu38/icu38.gyp:icui18n', |
2830 '../third_party/icu38/icu38.gyp:icuuc', | 2831 '../third_party/icu38/icu38.gyp:icuuc', |
2831 '../third_party/libxml/libxml.gyp:libxml', | 2832 '../third_party/libxml/libxml.gyp:libxml', |
2832 '../third_party/npapi/npapi.gyp:npapi', | 2833 '../third_party/npapi/npapi.gyp:npapi', |
2833 ], | 2834 ], |
2834 'include_dirs': [ | 2835 'include_dirs': [ |
2835 '..', | 2836 '..', |
2836 ], | 2837 ], |
2837 'sources': [ | 2838 'sources': [ |
| 2839 'app/breakpad_linux.h', |
| 2840 'app/breakpad_linux_stub.cc', |
2838 'app/breakpad_mac_stubs.mm', | 2841 'app/breakpad_mac_stubs.mm', |
2839 # *NO* files in chrome/app have unit tests (except keystone_glue)!!! | 2842 # *NO* files in chrome/app have unit tests (except keystone_glue)!!! |
2840 # It seems a waste to have an app_unittests target, so for now | 2843 # It seems a waste to have an app_unittests target, so for now |
2841 # I add keystone_glue.m explicitly to this target. | 2844 # I add keystone_glue.m explicitly to this target. |
2842 'app/keystone_glue.m', | 2845 'app/keystone_glue.m', |
2843 'app/keystone_glue_unittest.mm', | 2846 'app/keystone_glue_unittest.mm', |
2844 # All unittests in browser, common, and renderer. | 2847 # All unittests in browser, common, and renderer. |
2845 'browser/autocomplete/autocomplete_unittest.cc', | 2848 'browser/autocomplete/autocomplete_unittest.cc', |
2846 'browser/autocomplete/autocomplete_popup_view_mac_unittest.mm', | 2849 'browser/autocomplete/autocomplete_popup_view_mac_unittest.mm', |
2847 'browser/autocomplete/history_contents_provider_unittest.cc', | 2850 'browser/autocomplete/history_contents_provider_unittest.cc', |
(...skipping 1019 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3867 # Use outputs of this action as inputs for the main target build. | 3870 # Use outputs of this action as inputs for the main target build. |
3868 # Seems as a misnomer but makes this happy on Linux (scons). | 3871 # Seems as a misnomer but makes this happy on Linux (scons). |
3869 'process_outputs_as_sources': 1, | 3872 'process_outputs_as_sources': 1, |
3870 }, | 3873 }, |
3871 ], # 'actions' | 3874 ], # 'actions' |
3872 }, | 3875 }, |
3873 ] | 3876 ] |
3874 }], | 3877 }], |
3875 ], # 'conditions' | 3878 ], # 'conditions' |
3876 } | 3879 } |
OLD | NEW |