Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: chrome/chrome.gyp

Issue 115844: Add *_unittest.cc and *_uitest.cc modules left out of the gyp build:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 2608 matching lines...) Expand 10 before | Expand all | Expand 10 after
2619 'chrome_resources', 2619 'chrome_resources',
2620 'chrome_strings', 2620 'chrome_strings',
2621 '../skia/skia.gyp:skia', 2621 '../skia/skia.gyp:skia',
2622 '../testing/gtest.gyp:gtest', 2622 '../testing/gtest.gyp:gtest',
2623 ], 2623 ],
2624 'include_dirs': [ 2624 'include_dirs': [
2625 '..', 2625 '..',
2626 ], 2626 ],
2627 'sources': [ 2627 'sources': [
2628 'test/testing_browser_process.h', 2628 'test/testing_browser_process.h',
2629 'test/ui/javascript_test_util.cc',
2629 'test/ui/npapi_test_helper.cc', 2630 'test/ui/npapi_test_helper.cc',
2630 'test/ui/npapi_test_helper.h', 2631 'test/ui/npapi_test_helper.h',
2631 'test/ui/run_all_unittests.cc', 2632 'test/ui/run_all_unittests.cc',
2632 'test/ui/ui_test.cc', 2633 'test/ui/ui_test.cc',
2633 'test/ui/ui_test.h', 2634 'test/ui/ui_test.h',
2634 'test/ui/ui_test_suite.cc', 2635 'test/ui/ui_test_suite.cc',
2635 'test/ui/ui_test_suite.h', 2636 'test/ui/ui_test_suite.h',
2636 ], 2637 ],
2637 'conditions': [ 2638 'conditions': [
2638 ['OS=="linux"', { 2639 ['OS=="linux"', {
2639 'dependencies': [ 2640 'dependencies': [
2640 '../build/linux/system.gyp:gtk', 2641 '../build/linux/system.gyp:gtk',
2641 ], 2642 ],
2642 }], 2643 }],
2643 ['OS!="win"', { 2644 ['OS!="win"', {
2644 'sources!': [ 2645 'sources!': [
2646 'test/ui/javascript_test_util.cc',
2645 'test/ui/npapi_test_helper.cc', 2647 'test/ui/npapi_test_helper.cc',
2646 ], 2648 ],
2647 }], 2649 }],
2648 ], 2650 ],
2649 }, 2651 },
2650 { 2652 {
2651 'target_name': 'test_support_unit', 2653 'target_name': 'test_support_unit',
2652 'type': '<(library)', 2654 'type': '<(library)',
2653 'dependencies': [ 2655 'dependencies': [
2654 'test_support_common', 2656 'test_support_common',
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
2769 'test/chrome_process_util_uitest.cc', 2771 'test/chrome_process_util_uitest.cc',
2770 'test/reliability/page_load_test.cc', 2772 'test/reliability/page_load_test.cc',
2771 'test/reliability/page_load_test.h', 2773 'test/reliability/page_load_test.h',
2772 'test/ui/dom_checker_uitest.cc', 2774 'test/ui/dom_checker_uitest.cc',
2773 'test/ui/history_uitest.cc', 2775 'test/ui/history_uitest.cc',
2774 'test/ui/inspector_controller_uitest.cc', 2776 'test/ui/inspector_controller_uitest.cc',
2775 'test/ui/layout_plugin_uitest.cc', 2777 'test/ui/layout_plugin_uitest.cc',
2776 'test/ui/npapi_uitest.cc', 2778 'test/ui/npapi_uitest.cc',
2777 'test/ui/omnibox_uitest.cc', 2779 'test/ui/omnibox_uitest.cc',
2778 'test/ui/sandbox_uitests.cc', 2780 'test/ui/sandbox_uitests.cc',
2781 'test/ui/sunspider_uitest.cc',
2782 'test/ui/v8_benchmark_uitest.cc',
2783 'worker/worker_uitest.cc',
2779 ], 2784 ],
2780 'conditions': [ 2785 'conditions': [
2781 ['OS=="linux"', { 2786 ['OS=="linux"', {
2782 'dependencies': [ 2787 'dependencies': [
2783 '../build/linux/system.gyp:gtk', 2788 '../build/linux/system.gyp:gtk',
2784 ], 2789 ],
2785 'sources!': [ 2790 'sources!': [
2786 # TODO(port) 2791 # TODO(port)
2787 'browser/crash_recovery_uitest.cc', 2792 'browser/crash_recovery_uitest.cc',
2788 'browser/login_prompt_uitest.cc', 2793 'browser/login_prompt_uitest.cc',
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
2838 'browser/views/find_bar_win_uitest.cc', 2843 'browser/views/find_bar_win_uitest.cc',
2839 'common/logging_chrome_uitest.cc', 2844 'common/logging_chrome_uitest.cc',
2840 'test/accessibility/accessibility_tests.cc', 2845 'test/accessibility/accessibility_tests.cc',
2841 'test/accessibility/accessibility_util.cc', 2846 'test/accessibility/accessibility_util.cc',
2842 'test/accessibility/browser_impl.cc', 2847 'test/accessibility/browser_impl.cc',
2843 'test/accessibility/keyboard_util.cc', 2848 'test/accessibility/keyboard_util.cc',
2844 'test/accessibility/registry_util.cc', 2849 'test/accessibility/registry_util.cc',
2845 'test/accessibility/tab_impl.cc', 2850 'test/accessibility/tab_impl.cc',
2846 'test/ui/npapi_uitest.cc', 2851 'test/ui/npapi_uitest.cc',
2847 'test/ui/sandbox_uitests.cc', 2852 'test/ui/sandbox_uitests.cc',
2853 'test/ui/sunspider_uitest.cc',
2854 'test/ui/v8_benchmark_uitest.cc',
2855 'worker/worker_uitest.cc',
2848 ], 2856 ],
2849 }], 2857 }],
2850 ], 2858 ],
2851 }, 2859 },
2852 { 2860 {
2853 'target_name': 'unit_tests', 2861 'target_name': 'unit_tests',
2854 'type': 'executable', 2862 'type': 'executable',
2855 'dependencies': [ 2863 'dependencies': [
2856 'app', 2864 'app',
2857 'browser', 2865 'browser',
(...skipping 23 matching lines...) Expand all
2881 # It seems a waste to have an app_unittests target, so for now 2889 # It seems a waste to have an app_unittests target, so for now
2882 # I add keystone_glue.m explicitly to this target. 2890 # I add keystone_glue.m explicitly to this target.
2883 'app/keystone_glue.m', 2891 'app/keystone_glue.m',
2884 'app/keystone_glue_unittest.mm', 2892 'app/keystone_glue_unittest.mm',
2885 # All unittests in browser, common, and renderer. 2893 # All unittests in browser, common, and renderer.
2886 'browser/autocomplete/autocomplete_unittest.cc', 2894 'browser/autocomplete/autocomplete_unittest.cc',
2887 'browser/autocomplete/autocomplete_popup_view_mac_unittest.mm', 2895 'browser/autocomplete/autocomplete_popup_view_mac_unittest.mm',
2888 'browser/autocomplete/history_contents_provider_unittest.cc', 2896 'browser/autocomplete/history_contents_provider_unittest.cc',
2889 'browser/autocomplete/history_url_provider_unittest.cc', 2897 'browser/autocomplete/history_url_provider_unittest.cc',
2890 'browser/autocomplete/keyword_provider_unittest.cc', 2898 'browser/autocomplete/keyword_provider_unittest.cc',
2899 'browser/autocomplete/search_provider_unittest.cc',
2891 'browser/back_forward_menu_model_unittest.cc', 2900 'browser/back_forward_menu_model_unittest.cc',
2892 'browser/bookmarks/bookmark_codec_unittest.cc', 2901 'browser/bookmarks/bookmark_codec_unittest.cc',
2893 'browser/bookmarks/bookmark_context_menu_test.cc', 2902 'browser/bookmarks/bookmark_context_menu_test.cc',
2894 'browser/bookmarks/bookmark_drag_data_unittest.cc', 2903 'browser/bookmarks/bookmark_drag_data_unittest.cc',
2895 'browser/bookmarks/bookmark_folder_tree_model_unittest.cc', 2904 'browser/bookmarks/bookmark_folder_tree_model_unittest.cc',
2896 'browser/bookmarks/bookmark_html_writer_unittest.cc', 2905 'browser/bookmarks/bookmark_html_writer_unittest.cc',
2897 'browser/bookmarks/bookmark_index_unittest.cc', 2906 'browser/bookmarks/bookmark_index_unittest.cc',
2898 'browser/bookmarks/bookmark_model_test_utils.cc', 2907 'browser/bookmarks/bookmark_model_test_utils.cc',
2899 'browser/bookmarks/bookmark_model_test_utils.h', 2908 'browser/bookmarks/bookmark_model_test_utils.h',
2900 'browser/bookmarks/bookmark_model_unittest.cc', 2909 'browser/bookmarks/bookmark_model_unittest.cc',
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
2939 'browser/cocoa/toolbar_controller_unittest.mm', 2948 'browser/cocoa/toolbar_controller_unittest.mm',
2940 'browser/cocoa/toolbar_view_unittest.mm', 2949 'browser/cocoa/toolbar_view_unittest.mm',
2941 'browser/command_updater_unittest.cc', 2950 'browser/command_updater_unittest.cc',
2942 'browser/debugger/devtools_manager_unittest.cc', 2951 'browser/debugger/devtools_manager_unittest.cc',
2943 'browser/dom_ui/dom_ui_theme_source_unittest.cc', 2952 'browser/dom_ui/dom_ui_theme_source_unittest.cc',
2944 'browser/dom_ui/dom_ui_unittest.cc', 2953 'browser/dom_ui/dom_ui_unittest.cc',
2945 'browser/download/download_manager_unittest.cc', 2954 'browser/download/download_manager_unittest.cc',
2946 'browser/download/download_request_manager_unittest.cc', 2955 'browser/download/download_request_manager_unittest.cc',
2947 'browser/download/save_package_unittest.cc', 2956 'browser/download/save_package_unittest.cc',
2948 'browser/extensions/extension_messages_unittest.cc', 2957 'browser/extensions/extension_messages_unittest.cc',
2949 'browser/extensions/extension_process_manager_unittest.h', 2958 'browser/extensions/extension_process_manager_unittest.cc',
2950 'browser/extensions/extension_ui_unittest.cc', 2959 'browser/extensions/extension_ui_unittest.cc',
2960 'browser/extensions/extension_view_unittest.cc',
2951 'browser/extensions/extensions_service_unittest.cc', 2961 'browser/extensions/extensions_service_unittest.cc',
2952 'browser/extensions/test_extension_loader.cc', 2962 'browser/extensions/test_extension_loader.cc',
2953 'browser/extensions/user_script_master_unittest.cc', 2963 'browser/extensions/user_script_master_unittest.cc',
2964 'browser/find_backend_unittest.cc',
2954 'browser/google_url_tracker_unittest.cc', 2965 'browser/google_url_tracker_unittest.cc',
2955 'browser/google_update_settings_mac_unittest.mm', 2966 'browser/google_update_settings_mac_unittest.mm',
2956 'browser/gtk/bookmark_editor_gtk_unittest.cc', 2967 'browser/gtk/bookmark_editor_gtk_unittest.cc',
2957 'browser/gtk/go_button_gtk_unittest.cc', 2968 'browser/gtk/go_button_gtk_unittest.cc',
2958 'browser/gtk/tabs/tab_renderer_gtk_unittest.cc', 2969 'browser/gtk/tabs/tab_renderer_gtk_unittest.cc',
2959 'browser/history/expire_history_backend_unittest.cc', 2970 'browser/history/expire_history_backend_unittest.cc',
2960 'browser/history/history_backend_unittest.cc', 2971 'browser/history/history_backend_unittest.cc',
2961 'browser/history/history_querying_unittest.cc', 2972 'browser/history/history_querying_unittest.cc',
2962 'browser/history/history_types_unittest.cc', 2973 'browser/history/history_types_unittest.cc',
2963 'browser/history/history_unittest.cc', 2974 'browser/history/history_unittest.cc',
(...skipping 30 matching lines...) Expand all
2994 'browser/renderer_host/audio_renderer_host_unittest.cc', 3005 'browser/renderer_host/audio_renderer_host_unittest.cc',
2995 'browser/renderer_host/render_view_host_unittest.cc', 3006 'browser/renderer_host/render_view_host_unittest.cc',
2996 'browser/renderer_host/render_widget_host_unittest.cc', 3007 'browser/renderer_host/render_widget_host_unittest.cc',
2997 'browser/renderer_host/resource_dispatcher_host_unittest.cc', 3008 'browser/renderer_host/resource_dispatcher_host_unittest.cc',
2998 'browser/renderer_host/web_cache_manager_unittest.cc', 3009 'browser/renderer_host/web_cache_manager_unittest.cc',
2999 'browser/rlz/rlz_unittest.cc', 3010 'browser/rlz/rlz_unittest.cc',
3000 'browser/safe_browsing/bloom_filter_unittest.cc', 3011 'browser/safe_browsing/bloom_filter_unittest.cc',
3001 'browser/safe_browsing/chunk_range_unittest.cc', 3012 'browser/safe_browsing/chunk_range_unittest.cc',
3002 'browser/safe_browsing/protocol_manager_unittest.cc', 3013 'browser/safe_browsing/protocol_manager_unittest.cc',
3003 'browser/safe_browsing/protocol_parser_unittest.cc', 3014 'browser/safe_browsing/protocol_parser_unittest.cc',
3015 'browser/safe_browsing/safe_browsing_blocking_page_unittest.cc',
3004 'browser/safe_browsing/safe_browsing_database_unittest.cc', 3016 'browser/safe_browsing/safe_browsing_database_unittest.cc',
3005 'browser/safe_browsing/safe_browsing_util_unittest.cc', 3017 'browser/safe_browsing/safe_browsing_util_unittest.cc',
3006 'browser/search_engines/template_url_model_unittest.cc', 3018 'browser/search_engines/template_url_model_unittest.cc',
3007 'browser/search_engines/template_url_parser_unittest.cc', 3019 'browser/search_engines/template_url_parser_unittest.cc',
3008 'browser/search_engines/template_url_prepopulate_data_unittest.cc', 3020 'browser/search_engines/template_url_prepopulate_data_unittest.cc',
3021 'browser/search_engines/template_url_scraper_unittest.cc',
3009 'browser/search_engines/template_url_unittest.cc', 3022 'browser/search_engines/template_url_unittest.cc',
3010 'browser/sessions/session_backend_unittest.cc', 3023 'browser/sessions/session_backend_unittest.cc',
3011 'browser/sessions/session_service_test_helper.cc', 3024 'browser/sessions/session_service_test_helper.cc',
3012 'browser/sessions/session_service_test_helper.h', 3025 'browser/sessions/session_service_test_helper.h',
3013 'browser/sessions/session_service_unittest.cc', 3026 'browser/sessions/session_service_unittest.cc',
3014 'browser/sessions/tab_restore_service_unittest.cc', 3027 'browser/sessions/tab_restore_service_unittest.cc',
3015 'browser/spellcheck_unittest.cc', 3028 'browser/spellcheck_unittest.cc',
3016 'browser/ssl/ssl_host_state_unittest.cc', 3029 'browser/ssl/ssl_host_state_unittest.cc',
3017 'browser/tab_contents/navigation_controller_unittest.cc', 3030 'browser/tab_contents/navigation_controller_unittest.cc',
3018 'browser/tab_contents/navigation_entry_unittest.cc', 3031 'browser/tab_contents/navigation_entry_unittest.cc',
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
3140 'Debug': { 3153 'Debug': {
3141 'msvs_settings': { 3154 'msvs_settings': {
3142 'VCLinkerTool': { 3155 'VCLinkerTool': {
3143 'LinkIncremental': '1', # /INCREMENTAL:NO 3156 'LinkIncremental': '1', # /INCREMENTAL:NO
3144 }, 3157 },
3145 }, 3158 },
3146 }, 3159 },
3147 }, 3160 },
3148 }, { # else: OS != "win" 3161 }, { # else: OS != "win"
3149 'sources!': [ 3162 'sources!': [
3163 'browser/autocomplete/search_provider_unittest.cc',
3150 'browser/bookmarks/bookmark_codec_unittest.cc', 3164 'browser/bookmarks/bookmark_codec_unittest.cc',
3151 'browser/bookmarks/bookmark_drag_data_unittest.cc', 3165 'browser/bookmarks/bookmark_drag_data_unittest.cc',
3152 'browser/bookmarks/bookmark_folder_tree_model_unittest.cc', 3166 'browser/bookmarks/bookmark_folder_tree_model_unittest.cc',
3153 'browser/bookmarks/bookmark_table_model_unittest.cc', 3167 'browser/bookmarks/bookmark_table_model_unittest.cc',
3154 'browser/browser_commands_unittest.cc', 3168 'browser/browser_commands_unittest.cc',
3155 'browser/browser_unittest.cc', 3169 'browser/browser_unittest.cc',
3156 'browser/debugger/devtools_sanity_unittest.cc', 3170 'browser/debugger/devtools_sanity_unittest.cc',
3171 'browser/extensions/extension_process_manager_unittest.cc',
3172 'browser/extensions/extension_view_unittest.cc',
3157 'browser/extensions/test_extension_loader.cc', 3173 'browser/extensions/test_extension_loader.cc',
3174 'browser/find_backend_unittest.cc',
3158 'browser/importer/firefox_importer_unittest.cc', 3175 'browser/importer/firefox_importer_unittest.cc',
3159 'browser/importer/importer_unittest.cc', 3176 'browser/importer/importer_unittest.cc',
3160 'browser/login_prompt_unittest.cc', 3177 'browser/login_prompt_unittest.cc',
3161 'browser/password_manager/password_form_manager_unittest.cc', 3178 'browser/password_manager/password_form_manager_unittest.cc',
3162 'browser/printing/page_number_unittest.cc', 3179 'browser/printing/page_number_unittest.cc',
3163 'browser/printing/page_overlays_unittest.cc', 3180 'browser/printing/page_overlays_unittest.cc',
3164 'browser/printing/print_job_unittest.cc', 3181 'browser/printing/print_job_unittest.cc',
3165 'browser/rlz/rlz_unittest.cc', 3182 'browser/rlz/rlz_unittest.cc',
3183 'browser/safe_browsing/safe_browsing_blocking_page_unittest.cc',
3184 'browser/search_engines/template_url_scraper_unittest.cc',
3166 'browser/tabs/tab_strip_model_unittest.cc', 3185 'browser/tabs/tab_strip_model_unittest.cc',
3167 'browser/views/bookmark_editor_view_unittest.cc', 3186 'browser/views/bookmark_editor_view_unittest.cc',
3168 'browser/views/find_bar_win_unittest.cc', 3187 'browser/views/find_bar_win_unittest.cc',
3169 'browser/views/keyword_editor_view_unittest.cc', 3188 'browser/views/keyword_editor_view_unittest.cc',
3170 'browser/window_sizer_unittest.cc', 3189 'browser/window_sizer_unittest.cc',
3171 'common/chrome_plugin_unittest.cc', 3190 'common/chrome_plugin_unittest.cc',
3172 'common/gfx/emf_unittest.cc', 3191 'common/gfx/emf_unittest.cc',
3173 'common/net/url_util_unittest.cc', 3192 'common/net/url_util_unittest.cc',
3174 'test/browser_with_test_window_test.cc', 3193 'test/browser_with_test_window_test.cc',
3175 'test/browser_with_test_window_test.h', 3194 'test/browser_with_test_window_test.h',
(...skipping 898 matching lines...) Expand 10 before | Expand all | Expand 10 after
4074 # Use outputs of this action as inputs for the main target build. 4093 # Use outputs of this action as inputs for the main target build.
4075 # Seems as a misnomer but makes this happy on Linux (scons). 4094 # Seems as a misnomer but makes this happy on Linux (scons).
4076 'process_outputs_as_sources': 1, 4095 'process_outputs_as_sources': 1,
4077 }, 4096 },
4078 ], # 'actions' 4097 ], # 'actions'
4079 }, 4098 },
4080 ] 4099 ]
4081 }], 4100 }],
4082 ], # 'conditions' 4101 ], # 'conditions'
4083 } 4102 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698