| 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 2817 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2828 'dependencies': [ | 2828 'dependencies': [ |
| 2829 'app', | 2829 'app', |
| 2830 'browser', | 2830 'browser', |
| 2831 'common', | 2831 'common', |
| 2832 'renderer', | 2832 'renderer', |
| 2833 'utility', | 2833 'utility', |
| 2834 'chrome_resources', | 2834 'chrome_resources', |
| 2835 'chrome_strings', | 2835 'chrome_strings', |
| 2836 'test_support_unit', | 2836 'test_support_unit', |
| 2837 '../app/app.gyp:app_resources', | 2837 '../app/app.gyp:app_resources', |
| 2838 '../breakpad/breakpad.gyp:breakpad_client', | |
| 2839 '../net/net.gyp:net_test_support', | 2838 '../net/net.gyp:net_test_support', |
| 2840 '../printing/printing.gyp:printing', | 2839 '../printing/printing.gyp:printing', |
| 2841 '../webkit/webkit.gyp:webkit', | 2840 '../webkit/webkit.gyp:webkit', |
| 2842 '../skia/skia.gyp:skia', | 2841 '../skia/skia.gyp:skia', |
| 2843 '../testing/gtest.gyp:gtest', | 2842 '../testing/gtest.gyp:gtest', |
| 2844 '../third_party/icu38/icu38.gyp:icui18n', | 2843 '../third_party/icu38/icu38.gyp:icui18n', |
| 2845 '../third_party/icu38/icu38.gyp:icuuc', | 2844 '../third_party/icu38/icu38.gyp:icuuc', |
| 2846 '../third_party/libxml/libxml.gyp:libxml', | 2845 '../third_party/libxml/libxml.gyp:libxml', |
| 2847 '../third_party/npapi/npapi.gyp:npapi', | 2846 '../third_party/npapi/npapi.gyp:npapi', |
| 2848 ], | 2847 ], |
| 2849 'include_dirs': [ | 2848 'include_dirs': [ |
| 2850 '..', | 2849 '..', |
| 2851 ], | 2850 ], |
| 2852 'sources': [ | 2851 'sources': [ |
| 2853 'app/breakpad_linux.h', | |
| 2854 'app/breakpad_linux_stub.cc', | |
| 2855 'app/breakpad_mac_stubs.mm', | 2852 'app/breakpad_mac_stubs.mm', |
| 2856 # *NO* files in chrome/app have unit tests (except keystone_glue)!!! | 2853 # *NO* files in chrome/app have unit tests (except keystone_glue)!!! |
| 2857 # It seems a waste to have an app_unittests target, so for now | 2854 # It seems a waste to have an app_unittests target, so for now |
| 2858 # I add keystone_glue.m explicitly to this target. | 2855 # I add keystone_glue.m explicitly to this target. |
| 2859 'app/keystone_glue.m', | 2856 'app/keystone_glue.m', |
| 2860 'app/keystone_glue_unittest.mm', | 2857 'app/keystone_glue_unittest.mm', |
| 2861 # All unittests in browser, common, and renderer. | 2858 # All unittests in browser, common, and renderer. |
| 2862 'browser/autocomplete/autocomplete_unittest.cc', | 2859 'browser/autocomplete/autocomplete_unittest.cc', |
| 2863 'browser/autocomplete/autocomplete_popup_view_mac_unittest.mm', | 2860 'browser/autocomplete/autocomplete_popup_view_mac_unittest.mm', |
| 2864 'browser/autocomplete/history_contents_provider_unittest.cc', | 2861 'browser/autocomplete/history_contents_provider_unittest.cc', |
| (...skipping 1019 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3884 # Use outputs of this action as inputs for the main target build. | 3881 # Use outputs of this action as inputs for the main target build. |
| 3885 # Seems as a misnomer but makes this happy on Linux (scons). | 3882 # Seems as a misnomer but makes this happy on Linux (scons). |
| 3886 'process_outputs_as_sources': 1, | 3883 'process_outputs_as_sources': 1, |
| 3887 }, | 3884 }, |
| 3888 ], # 'actions' | 3885 ], # 'actions' |
| 3889 }, | 3886 }, |
| 3890 ] | 3887 ] |
| 3891 }], | 3888 }], |
| 3892 ], # 'conditions' | 3889 ], # 'conditions' |
| 3893 } | 3890 } |
| OLD | NEW |