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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 8036044: Add (not yet working) content_browsertests target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'pyautolib_sources': [ 7 'pyautolib_sources': [
8 'app/chrome_command_ids.h', 8 'app/chrome_command_ids.h',
9 'app/chrome_dll_resource.h', 9 'app/chrome_dll_resource.h',
10 'common/automation_constants.h', 10 'common/automation_constants.h',
(...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after
466 '../third_party/zlib/zlib.gyp:zlib', 466 '../third_party/zlib/zlib.gyp:zlib',
467 '../testing/gmock.gyp:gmock', 467 '../testing/gmock.gyp:gmock',
468 '../testing/gtest.gyp:gtest', 468 '../testing/gtest.gyp:gtest',
469 '../third_party/npapi/npapi.gyp:npapi', 469 '../third_party/npapi/npapi.gyp:npapi',
470 # run time dependency 470 # run time dependency
471 '../webkit/support/webkit_support.gyp:webkit_resources', 471 '../webkit/support/webkit_support.gyp:webkit_resources',
472 ], 472 ],
473 'include_dirs': [ 473 'include_dirs': [
474 '..', 474 '..',
475 ], 475 ],
476 'defines': [ 'HAS_OUT_OF_PROC_TEST_RUNNER' ], 476 'defines': [
477 'HAS_OUT_OF_PROC_TEST_RUNNER',
478 'BROWSER_TESTS_HEADER_OVERRIDE="chrome/test/base/in_process_browser_test .h"',
479 ],
477 'sources': [ 480 'sources': [
478 'browser/accessibility/accessibility_mac_uitest.mm', 481 'browser/accessibility/accessibility_mac_uitest.mm',
479 'browser/autofill/autofill_browsertest.cc', 482 'browser/autofill/autofill_browsertest.cc',
480 'browser/browser_focus_uitest.cc', 483 'browser/browser_focus_uitest.cc',
481 'browser/browser_keyevents_browsertest.cc', 484 'browser/browser_keyevents_browsertest.cc',
482 'browser/collected_cookies_uitest.cc', 485 'browser/collected_cookies_uitest.cc',
483 'browser/debugger/devtools_sanity_unittest.cc', 486 'browser/debugger/devtools_sanity_unittest.cc',
484 'browser/instant/instant_browsertest.cc', 487 'browser/instant/instant_browsertest.cc',
485 'browser/keyboard_access_uitest.cc', 488 'browser/keyboard_access_uitest.cc',
486 'browser/mouseleave_interactive_uitest.cc', 489 'browser/mouseleave_interactive_uitest.cc',
487 'browser/notifications/notifications_interactive_uitest.cc', 490 'browser/notifications/notifications_interactive_uitest.cc',
488 'browser/npapi_interactive_test.cc', 491 'browser/npapi_interactive_test.cc',
489 'browser/tab_contents/infobars_uitest.cc', 492 'browser/tab_contents/infobars_uitest.cc',
490 'browser/ui/gtk/bookmarks/bookmark_bar_gtk_interactive_uitest.cc', 493 'browser/ui/gtk/bookmarks/bookmark_bar_gtk_interactive_uitest.cc',
491 'browser/ui/omnibox/omnibox_view_browsertest.cc', 494 'browser/ui/omnibox/omnibox_view_browsertest.cc',
492 'browser/ui/views/bookmarks/bookmark_bar_view_test.cc', 495 'browser/ui/views/bookmarks/bookmark_bar_view_test.cc',
493 'browser/ui/views/button_dropdown_test.cc', 496 'browser/ui/views/button_dropdown_test.cc',
494 'browser/ui/views/find_bar_host_interactive_uitest.cc', 497 'browser/ui/views/find_bar_host_interactive_uitest.cc',
495 'browser/ui/views/menu_item_view_test.cc', 498 'browser/ui/views/menu_item_view_test.cc',
496 'browser/ui/views/menu_model_adapter_test.cc', 499 'browser/ui/views/menu_model_adapter_test.cc',
497 'browser/ui/views/ssl_client_certificate_selector_browsertest.cc', 500 'browser/ui/views/ssl_client_certificate_selector_browsertest.cc',
498 'browser/ui/views/tabs/tab_dragging_test.cc', 501 'browser/ui/views/tabs/tab_dragging_test.cc',
499 'browser/ui/webui/workers_ui_browsertest.cc', 502 'browser/ui/webui/workers_ui_browsertest.cc',
500 'test/base/out_of_proc_test_runner.cc', 503 'test/base/chrome_test_launcher.cc',
501 'test/base/view_event_test_base.cc', 504 'test/base/view_event_test_base.cc',
502 'test/base/view_event_test_base.h', 505 'test/base/view_event_test_base.h',
506 '../content/test/test_launcher.cc',
507 '../content/test/test_launcher.h',
503 ], 508 ],
504 'conditions': [ 509 'conditions': [
505 ['toolkit_uses_gtk == 1', { 510 ['toolkit_uses_gtk == 1', {
506 'dependencies': [ 511 'dependencies': [
507 '../build/linux/system.gyp:gtk', 512 '../build/linux/system.gyp:gtk',
508 '../build/linux/system.gyp:ssl', 513 '../build/linux/system.gyp:ssl',
509 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 514 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
510 ], 515 ],
511 }], 516 }],
512 ['toolkit_uses_gtk == 1 and toolkit_views == 0', { 517 ['toolkit_uses_gtk == 1 and toolkit_views == 0', {
(...skipping 1657 matching lines...) Expand 10 before | Expand all | Expand 10 after
2170 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 2175 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
2171 '../v8/tools/gyp/v8.gyp:v8', 2176 '../v8/tools/gyp/v8.gyp:v8',
2172 '../webkit/webkit.gyp:test_shell_test_support', 2177 '../webkit/webkit.gyp:test_shell_test_support',
2173 # Runtime dependencies 2178 # Runtime dependencies
2174 '../third_party/mesa/mesa.gyp:osmesa', 2179 '../third_party/mesa/mesa.gyp:osmesa',
2175 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:copy_TestNetsca pePlugIn', 2180 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:copy_TestNetsca pePlugIn',
2176 ], 2181 ],
2177 'include_dirs': [ 2182 'include_dirs': [
2178 '..', 2183 '..',
2179 ], 2184 ],
2180 'defines': [ 'HAS_OUT_OF_PROC_TEST_RUNNER' ], 2185 'defines': [
2186 'HAS_OUT_OF_PROC_TEST_RUNNER',
2187 'BROWSER_TESTS_HEADER_OVERRIDE="chrome/test/base/in_process_browser_test .h"',
2188 ],
2181 'sources': [ 2189 'sources': [
2182 'app/breakpad_mac_stubs.mm', 2190 'app/breakpad_mac_stubs.mm',
2183 'app/chrome_command_ids.h', 2191 'app/chrome_command_ids.h',
2184 'app/chrome_dll.rc', 2192 'app/chrome_dll.rc',
2185 'app/chrome_dll_resource.h', 2193 'app/chrome_dll_resource.h',
2186 'app/chrome_version.rc.version', 2194 'app/chrome_version.rc.version',
2187 'browser/accessibility/renderer_accessibility_browsertest.cc', 2195 'browser/accessibility/renderer_accessibility_browsertest.cc',
2188 'browser/autocomplete/autocomplete_browsertest.cc', 2196 'browser/autocomplete/autocomplete_browsertest.cc',
2189 'browser/autofill/form_structure_browsertest.cc', 2197 'browser/autofill/form_structure_browsertest.cc',
2190 'browser/automation/automation_tab_helper_browsertest.cc', 2198 'browser/automation/automation_tab_helper_browsertest.cc',
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
2429 'renderer/safe_browsing/phishing_classifier_delegate_browsertest.cc', 2437 'renderer/safe_browsing/phishing_classifier_delegate_browsertest.cc',
2430 'renderer/safe_browsing/phishing_dom_feature_extractor_browsertest.cc', 2438 'renderer/safe_browsing/phishing_dom_feature_extractor_browsertest.cc',
2431 'renderer/safe_browsing/phishing_thumbnailer_browsertest.cc', 2439 'renderer/safe_browsing/phishing_thumbnailer_browsertest.cc',
2432 'renderer/safe_browsing/render_view_fake_resources_test.cc', 2440 'renderer/safe_browsing/render_view_fake_resources_test.cc',
2433 'renderer/safe_browsing/render_view_fake_resources_test.h', 2441 'renderer/safe_browsing/render_view_fake_resources_test.h',
2434 'renderer/translate_helper_browsertest.cc', 2442 'renderer/translate_helper_browsertest.cc',
2435 'test/automation/dom_automation_browsertest.cc', 2443 'test/automation/dom_automation_browsertest.cc',
2436 'test/base/in_process_browser_test_browsertest.cc', 2444 'test/base/in_process_browser_test_browsertest.cc',
2437 'test/base/render_view_test.cc', 2445 'test/base/render_view_test.cc',
2438 'test/base/render_view_test.h', 2446 'test/base/render_view_test.h',
2439 'test/base/out_of_proc_test_runner.cc', 2447 'test/base/chrome_test_launcher.cc',
2440 'test/data/webui/assertions.js', 2448 'test/data/webui/assertions.js',
2441 'test/data/webui/async_gen-inl.h', 2449 'test/data/webui/async_gen-inl.h',
2442 'test/data/webui/async_gen.js', 2450 'test/data/webui/async_gen.js',
2443 'test/data/webui/certificate_viewer_dialog_test.js', 2451 'test/data/webui/certificate_viewer_dialog_test.js',
2444 'test/data/webui/certificate_viewer_ui_test-inl.h', 2452 'test/data/webui/certificate_viewer_ui_test-inl.h',
2445 'test/data/webui/ntp4.js', 2453 'test/data/webui/ntp4.js',
2446 'test/data/webui/options.js', 2454 'test/data/webui/options.js',
2447 'test/data/webui/print_preview.js', 2455 'test/data/webui/print_preview.js',
2448 # TODO(craig): Rename this and run from base_unittests when the test 2456 # TODO(craig): Rename this and run from base_unittests when the test
2449 # is safe to run there. See http://crbug.com/78722 for details. 2457 # is safe to run there. See http://crbug.com/78722 for details.
2450 '../base/files/file_path_watcher_browsertest.cc', 2458 '../base/files/file_path_watcher_browsertest.cc',
2451 '../content/browser/child_process_security_policy_browsertest.cc', 2459 '../content/browser/child_process_security_policy_browsertest.cc',
2452 '../content/browser/device_orientation/device_orientation_browsertest.cc ', 2460 '../content/browser/device_orientation/device_orientation_browsertest.cc ',
2453 '../content/browser/download/mhtml_generation_browsertest.cc', 2461 '../content/browser/download/mhtml_generation_browsertest.cc',
2454 '../content/browser/file_system/file_system_browsertest.cc', 2462 '../content/browser/file_system/file_system_browsertest.cc',
2455 '../content/browser/in_process_webkit/dom_storage_browsertest.cc', 2463 '../content/browser/in_process_webkit/dom_storage_browsertest.cc',
2456 '../content/browser/in_process_webkit/indexed_db_browsertest.cc', 2464 '../content/browser/in_process_webkit/indexed_db_browsertest.cc',
2457 '../content/browser/plugin_service_browsertest.cc', 2465 '../content/browser/plugin_service_browsertest.cc',
2458 '../content/browser/renderer_host/render_process_host_browsertest.cc', 2466 '../content/browser/renderer_host/render_process_host_browsertest.cc',
2459 '../content/browser/renderer_host/render_process_host_browsertest.h', 2467 '../content/browser/renderer_host/render_process_host_browsertest.h',
2460 '../content/browser/renderer_host/render_view_host_browsertest.cc', 2468 '../content/browser/renderer_host/render_view_host_browsertest.cc',
2461 '../content/browser/renderer_host/render_view_host_manager_browsertest.c c', 2469 '../content/browser/renderer_host/render_view_host_manager_browsertest.c c',
2462 '../content/browser/renderer_host/resource_dispatcher_host_browsertest.c c', 2470 '../content/browser/renderer_host/resource_dispatcher_host_browsertest.c c',
2463 '../content/browser/speech/speech_input_browsertest.cc', 2471 '../content/browser/speech/speech_input_browsertest.cc',
2464 '../content/renderer/render_view_browsertest.cc', 2472 '../content/renderer/render_view_browsertest.cc',
2465 '../content/renderer/render_view_browsertest_mac.mm', 2473 '../content/renderer/render_view_browsertest_mac.mm',
2466 '../content/renderer/render_widget_browsertest.cc', 2474 '../content/renderer/render_widget_browsertest.cc',
2467 '../content/renderer/render_widget_browsertest.h', 2475 '../content/renderer/render_widget_browsertest.h',
2468 '../content/renderer/v8_value_converter_browsertest.cc', 2476 '../content/renderer/v8_value_converter_browsertest.cc',
2477 '../content/test/test_launcher.cc',
2478 '../content/test/test_launcher.h',
2469 ], 2479 ],
2470 'conditions': [ 2480 'conditions': [
2471 ['chromeos==0', { 2481 ['chromeos==0', {
2472 'sources/': [ 2482 'sources/': [
2473 ['exclude', '^browser/chromeos'], 2483 ['exclude', '^browser/chromeos'],
2474 ], 2484 ],
2475 'sources!': [ 2485 'sources!': [
2476 'browser/chromeos/media/media_player_browsertest.cc', 2486 'browser/chromeos/media/media_player_browsertest.cc',
2477 'browser/extensions/extension_file_browser_private_apitest.cc', 2487 'browser/extensions/extension_file_browser_private_apitest.cc',
2478 'browser/extensions/extension_input_method_apitest.cc', 2488 'browser/extensions/extension_input_method_apitest.cc',
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
2699 '../skia/skia.gyp:skia', 2709 '../skia/skia.gyp:skia',
2700 '../testing/gtest.gyp:gtest', 2710 '../testing/gtest.gyp:gtest',
2701 # This is the safebrowsing test server. 2711 # This is the safebrowsing test server.
2702 '../third_party/safe_browsing/safe_browsing.gyp:safe_browsing', 2712 '../third_party/safe_browsing/safe_browsing.gyp:safe_browsing',
2703 '../ui/ui.gyp:ui_resources', 2713 '../ui/ui.gyp:ui_resources',
2704 '../ui/ui.gyp:ui_resources_standard', 2714 '../ui/ui.gyp:ui_resources_standard',
2705 ], 2715 ],
2706 'include_dirs': [ 2716 'include_dirs': [
2707 '..', 2717 '..',
2708 ], 2718 ],
2709 'defines': [ 'HAS_OUT_OF_PROC_TEST_RUNNER' ], 2719 'defines': [
2720 'HAS_OUT_OF_PROC_TEST_RUNNER',
2721 'BROWSER_TESTS_HEADER_OVERRIDE="chrome/test/base/in_process_browser_test .h"',
2722 ],
2710 'sources': [ 2723 'sources': [
2711 'app/chrome_dll.rc', 2724 'app/chrome_dll.rc',
2712 'browser/safe_browsing/safe_browsing_test.cc', 2725 'browser/safe_browsing/safe_browsing_test.cc',
2713 'test/base/out_of_proc_test_runner.cc', 2726 'test/base/chrome_test_launcher.cc',
2727 '../content/test/test_launcher.cc',
2728 '../content/test/test_launcher.h',
2714 ], 2729 ],
2715 'conditions': [ 2730 'conditions': [
2716 ['safe_browsing==0', { 2731 ['safe_browsing==0', {
2717 'sources!': [ 2732 'sources!': [
2718 'browser/safe_browsing/safe_browsing_test.cc', 2733 'browser/safe_browsing/safe_browsing_test.cc',
2719 ], 2734 ],
2720 }], 2735 }],
2721 ['OS=="win"', { 2736 ['OS=="win"', {
2722 'dependencies': [ 2737 'dependencies': [
2723 'chrome_version_resources', 2738 'chrome_version_resources',
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after
3087 '../third_party/icu/icu.gyp:icuuc', 3102 '../third_party/icu/icu.gyp:icuuc',
3088 '../third_party/npapi/npapi.gyp:npapi', 3103 '../third_party/npapi/npapi.gyp:npapi',
3089 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', 3104 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
3090 ], 3105 ],
3091 'include_dirs': [ 3106 'include_dirs': [
3092 '..', 3107 '..',
3093 '<(INTERMEDIATE_DIR)', 3108 '<(INTERMEDIATE_DIR)',
3094 '<(protoc_out_dir)', 3109 '<(protoc_out_dir)',
3095 ], 3110 ],
3096 # TODO(phajdan.jr): Only temporary, to make transition easier. 3111 # TODO(phajdan.jr): Only temporary, to make transition easier.
3097 'defines': [ 'HAS_OUT_OF_PROC_TEST_RUNNER' ], 3112 'defines': [
3113 'HAS_OUT_OF_PROC_TEST_RUNNER',
3114 'BROWSER_TESTS_HEADER_OVERRIDE="chrome/test/base/in_process_browser_test .h"',
3115 ],
3098 'sources': [ 3116 'sources': [
3099 'app/chrome_command_ids.h', 3117 'app/chrome_command_ids.h',
3100 'app/chrome_dll.rc', 3118 'app/chrome_dll.rc',
3101 'app/chrome_dll_resource.h', 3119 'app/chrome_dll_resource.h',
3102 'app/chrome_version.rc.version', 3120 'app/chrome_version.rc.version',
3103 'browser/password_manager/password_form_data.cc', 3121 'browser/password_manager/password_form_data.cc',
3104 'browser/sessions/session_backend.cc', 3122 'browser/sessions/session_backend.cc',
3105 'browser/sync/glue/session_model_associator.cc', 3123 'browser/sync/glue/session_model_associator.cc',
3106 'test/base/out_of_proc_test_runner.cc', 3124 'test/base/chrome_test_launcher.cc',
3107 'test/data/resource.rc', 3125 'test/data/resource.rc',
3108 'browser/sync/test/integration/apps_helper.cc', 3126 'browser/sync/test/integration/apps_helper.cc',
3109 'browser/sync/test/integration/apps_helper.h', 3127 'browser/sync/test/integration/apps_helper.h',
3110 'browser/sync/test/integration/autofill_helper.cc', 3128 'browser/sync/test/integration/autofill_helper.cc',
3111 'browser/sync/test/integration/autofill_helper.h', 3129 'browser/sync/test/integration/autofill_helper.h',
3112 'browser/sync/test/integration/bookmarks_helper.cc', 3130 'browser/sync/test/integration/bookmarks_helper.cc',
3113 'browser/sync/test/integration/bookmarks_helper.h', 3131 'browser/sync/test/integration/bookmarks_helper.h',
3114 'browser/sync/test/integration/extensions_helper.cc', 3132 'browser/sync/test/integration/extensions_helper.cc',
3115 'browser/sync/test/integration/extensions_helper.h', 3133 'browser/sync/test/integration/extensions_helper.h',
3116 'browser/sync/test/integration/many_client_bookmarks_sync_test.cc', 3134 'browser/sync/test/integration/many_client_bookmarks_sync_test.cc',
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
3153 'browser/sync/test/integration/two_client_bookmarks_sync_test.cc', 3171 'browser/sync/test/integration/two_client_bookmarks_sync_test.cc',
3154 'browser/sync/test/integration/two_client_extensions_sync_test.cc', 3172 'browser/sync/test/integration/two_client_extensions_sync_test.cc',
3155 'browser/sync/test/integration/two_client_passwords_sync_test.cc', 3173 'browser/sync/test/integration/two_client_passwords_sync_test.cc',
3156 'browser/sync/test/integration/two_client_preferences_sync_test.cc', 3174 'browser/sync/test/integration/two_client_preferences_sync_test.cc',
3157 'browser/sync/test/integration/two_client_search_engines_sync_test.cc', 3175 'browser/sync/test/integration/two_client_search_engines_sync_test.cc',
3158 'browser/sync/test/integration/two_client_sessions_sync_test.cc', 3176 'browser/sync/test/integration/two_client_sessions_sync_test.cc',
3159 'browser/sync/test/integration/two_client_themes_sync_test.cc', 3177 'browser/sync/test/integration/two_client_themes_sync_test.cc',
3160 'browser/sync/test/integration/two_client_typed_urls_sync_test.cc', 3178 'browser/sync/test/integration/two_client_typed_urls_sync_test.cc',
3161 'browser/sync/test/integration/typed_urls_helper.cc', 3179 'browser/sync/test/integration/typed_urls_helper.cc',
3162 'browser/sync/test/integration/typed_urls_helper.h', 3180 'browser/sync/test/integration/typed_urls_helper.h',
3181 '../content/test/test_launcher.cc',
3182 '../content/test/test_launcher.h',
3163 ], 3183 ],
3164 'conditions': [ 3184 'conditions': [
3165 ['toolkit_uses_gtk == 1', { 3185 ['toolkit_uses_gtk == 1', {
3166 'dependencies': [ 3186 'dependencies': [
3167 '../build/linux/system.gyp:gtk', 3187 '../build/linux/system.gyp:gtk',
3168 '../build/linux/system.gyp:ssl', 3188 '../build/linux/system.gyp:ssl',
3169 ], 3189 ],
3170 }], 3190 }],
3171 ['OS=="mac"', { 3191 ['OS=="mac"', {
3172 # See the comment in this section of the unit_tests target for an 3192 # See the comment in this section of the unit_tests target for an
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
3235 'test_support_common', 3255 'test_support_common',
3236 '../skia/skia.gyp:skia', 3256 '../skia/skia.gyp:skia',
3237 '../testing/gmock.gyp:gmock', 3257 '../testing/gmock.gyp:gmock',
3238 '../testing/gtest.gyp:gtest', 3258 '../testing/gtest.gyp:gtest',
3239 ], 3259 ],
3240 'include_dirs': [ 3260 'include_dirs': [
3241 '..', 3261 '..',
3242 '<(INTERMEDIATE_DIR)', 3262 '<(INTERMEDIATE_DIR)',
3243 '<(protoc_out_dir)', 3263 '<(protoc_out_dir)',
3244 ], 3264 ],
3245 'defines': [ 'HAS_OUT_OF_PROC_TEST_RUNNER' ], 3265 'defines': [
3266 'HAS_OUT_OF_PROC_TEST_RUNNER',
3267 'BROWSER_TESTS_HEADER_OVERRIDE="chrome/test/base/in_process_browser_test .h"',
3268 ],
3246 'sources': [ 3269 'sources': [
3247 'app/chrome_command_ids.h', 3270 'app/chrome_command_ids.h',
3248 'app/chrome_dll.rc', 3271 'app/chrome_dll.rc',
3249 'app/chrome_dll_resource.h', 3272 'app/chrome_dll_resource.h',
3250 'app/chrome_version.rc.version', 3273 'app/chrome_version.rc.version',
3251 'browser/password_manager/password_form_data.cc', 3274 'browser/password_manager/password_form_data.cc',
3252 'browser/sessions/session_backend.cc', 3275 'browser/sessions/session_backend.cc',
3253 'browser/sync/glue/session_model_associator.cc', 3276 'browser/sync/glue/session_model_associator.cc',
3254 'browser/sync/test/integration/autofill_helper.cc', 3277 'browser/sync/test/integration/autofill_helper.cc',
3255 'browser/sync/test/integration/autofill_helper.h', 3278 'browser/sync/test/integration/autofill_helper.h',
(...skipping 14 matching lines...) Expand all
3270 'browser/sync/test/integration/sessions_helper.cc', 3293 'browser/sync/test/integration/sessions_helper.cc',
3271 'browser/sync/test/integration/sessions_helper.h', 3294 'browser/sync/test/integration/sessions_helper.h',
3272 'browser/sync/test/integration/sync_datatype_helper.cc', 3295 'browser/sync/test/integration/sync_datatype_helper.cc',
3273 'browser/sync/test/integration/sync_datatype_helper.h', 3296 'browser/sync/test/integration/sync_datatype_helper.h',
3274 'browser/sync/test/integration/sync_extension_helper.cc', 3297 'browser/sync/test/integration/sync_extension_helper.cc',
3275 'browser/sync/test/integration/sync_extension_helper.h', 3298 'browser/sync/test/integration/sync_extension_helper.h',
3276 'browser/sync/test/integration/sync_test.cc', 3299 'browser/sync/test/integration/sync_test.cc',
3277 'browser/sync/test/integration/sync_test.h', 3300 'browser/sync/test/integration/sync_test.h',
3278 'browser/sync/test/integration/typed_urls_helper.cc', 3301 'browser/sync/test/integration/typed_urls_helper.cc',
3279 'browser/sync/test/integration/typed_urls_helper.h', 3302 'browser/sync/test/integration/typed_urls_helper.h',
3280 'test/base/out_of_proc_test_runner.cc', 3303 'test/base/chrome_test_launcher.cc',
3281 'test/data/resource.rc', 3304 'test/data/resource.rc',
3305 '../content/test/test_launcher.cc',
3306 '../content/test/test_launcher.h',
3282 ], 3307 ],
3283 'conditions': [ 3308 'conditions': [
3284 ['toolkit_uses_gtk == 1', { 3309 ['toolkit_uses_gtk == 1', {
3285 'dependencies': [ 3310 'dependencies': [
3286 '../build/linux/system.gyp:gtk', 3311 '../build/linux/system.gyp:gtk',
3287 '../build/linux/system.gyp:ssl', 3312 '../build/linux/system.gyp:ssl',
3288 ], 3313 ],
3289 }], 3314 }],
3290 ['OS=="mac"', { 3315 ['OS=="mac"', {
3291 # See the comment in this section of the unit_tests target for an 3316 # See the comment in this section of the unit_tests target for an
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
3367 '../testing/gtest.gyp:gtest', 3392 '../testing/gtest.gyp:gtest',
3368 '../third_party/icu/icu.gyp:icui18n', 3393 '../third_party/icu/icu.gyp:icui18n',
3369 '../third_party/icu/icu.gyp:icuuc', 3394 '../third_party/icu/icu.gyp:icuuc',
3370 # Runtime dependencies 3395 # Runtime dependencies
3371 '../third_party/mesa/mesa.gyp:osmesa', 3396 '../third_party/mesa/mesa.gyp:osmesa',
3372 ], 3397 ],
3373 'include_dirs': [ 3398 'include_dirs': [
3374 '..', 3399 '..',
3375 '<(test_list_out_dir)', 3400 '<(test_list_out_dir)',
3376 ], 3401 ],
3377 'defines': [ 'HAS_OUT_OF_PROC_TEST_RUNNER' ], 3402 'defines': [
3403 'HAS_OUT_OF_PROC_TEST_RUNNER',
3404 'BROWSER_TESTS_HEADER_OVERRIDE="chrome/test/base/in_process_browser_test .h"',
3405 ],
3378 'sources': [ 3406 'sources': [
3379 'browser/gpu_pixel_browsertest.cc', 3407 'browser/gpu_pixel_browsertest.cc',
3380 'browser/gpu_crash_browsertest.cc', 3408 'browser/gpu_crash_browsertest.cc',
3381 'test/base/out_of_proc_test_runner.cc', 3409 'test/base/chrome_test_launcher.cc',
3382 'test/gpu/webgl_conformance_tests.cc', 3410 'test/gpu/webgl_conformance_tests.cc',
3411 '../content/test/test_launcher.cc',
3412 '../content/test/test_launcher.h',
3383 '<(test_list_out_dir)/webgl_conformance_test_list_autogen.h', 3413 '<(test_list_out_dir)/webgl_conformance_test_list_autogen.h',
3384 ], 3414 ],
3385 # hard_dependency is necessary for this target because it has actions 3415 # hard_dependency is necessary for this target because it has actions
3386 # that generate a header file included by dependent targets. The header 3416 # that generate a header file included by dependent targets. The header
3387 # file must be generated before the dependents are compiled. The usual 3417 # file must be generated before the dependents are compiled. The usual
3388 # semantics are to allow the two targets to build concurrently. 3418 # semantics are to allow the two targets to build concurrently.
3389 'hard_dependency': 1, 3419 'hard_dependency': 1,
3390 'actions': [ 3420 'actions': [
3391 { 3421 {
3392 'action_name': 'generate_webgl_conformance_test_list', 3422 'action_name': 'generate_webgl_conformance_test_list',
(...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after
3928 # Use outputs of this action as inputs for the main target build. 3958 # Use outputs of this action as inputs for the main target build.
3929 # Seems as a misnomer but makes this happy on Linux (scons). 3959 # Seems as a misnomer but makes this happy on Linux (scons).
3930 'process_outputs_as_sources': 1, 3960 'process_outputs_as_sources': 1,
3931 }, 3961 },
3932 ], # 'actions' 3962 ], # 'actions'
3933 }, 3963 },
3934 ] 3964 ]
3935 }], # 'coverage!=0' 3965 }], # 'coverage!=0'
3936 ], # 'conditions' 3966 ], # 'conditions'
3937 } 3967 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698