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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 8658002: Print preview: Enable tests that were previous excluded on CrOS. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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 | « chrome/browser/ui/webui/print_preview_ui_unittest.cc ('k') | 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) 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 'target_defaults': { 5 'target_defaults': {
6 'conditions': [ 6 'conditions': [
7 ['strip_tests==1', { 7 ['strip_tests==1', {
8 'cflags!': [ '-g' ], 8 'cflags!': [ '-g' ],
9 'ldflags': [ '-Wl,--strip-debug' ], 9 'ldflags': [ '-Wl,--strip-debug' ],
10 }], 10 }],
(...skipping 886 matching lines...) Expand 10 before | Expand all | Expand 10 after
897 }], 897 }],
898 ['os_posix == 1 and OS != "mac"', { 898 ['os_posix == 1 and OS != "mac"', {
899 'conditions': [ 899 'conditions': [
900 ['linux_use_tcmalloc==1', { 900 ['linux_use_tcmalloc==1', {
901 'dependencies': [ 901 'dependencies': [
902 '../base/allocator/allocator.gyp:allocator', 902 '../base/allocator/allocator.gyp:allocator',
903 ], 903 ],
904 }], 904 }],
905 ], 905 ],
906 }], 906 }],
907 ['chromeos==1', { 907 ['chromeos==0', {
908 'sources!': [
909 # TODO(thestig): Enable when print preview is ready for CrOS.
910 'browser/ui/webui/print_preview_ui_uitest.cc',
911 ],
912 }, { # else: chromeos == 0
913 'sources/': [ 908 'sources/': [
914 ['exclude', '^browser/ui/webui/options/chromeos/'], 909 ['exclude', '^browser/ui/webui/options/chromeos/'],
915 ], 910 ],
916 }], 911 }],
917 ], 912 ],
918 }, 913 },
919 { 914 {
920 # Third-party support sources for chromedriver_lib. 915 # Third-party support sources for chromedriver_lib.
921 'target_name': 'chromedriver_support', 916 'target_name': 'chromedriver_support',
922 'type': 'static_library', 917 'type': 'static_library',
(...skipping 1219 matching lines...) Expand 10 before | Expand all | Expand 10 after
2142 ['exclude', '^browser/safe_browsing/'], 2137 ['exclude', '^browser/safe_browsing/'],
2143 ['exclude', '^renderer/safe_browsing/'], 2138 ['exclude', '^renderer/safe_browsing/'],
2144 ], 2139 ],
2145 }], 2140 }],
2146 ['chromeos==1', { 2141 ['chromeos==1', {
2147 'sources/': [ 2142 'sources/': [
2148 ['exclude', '^browser/password_manager/native_backend_gnome_x_unitte st.cc'], 2143 ['exclude', '^browser/password_manager/native_backend_gnome_x_unitte st.cc'],
2149 ['exclude', '^browser/password_manager/native_backend_kwallet_x_unit test.cc'], 2144 ['exclude', '^browser/password_manager/native_backend_kwallet_x_unit test.cc'],
2150 ['exclude', '^browser/safe_browsing/download_protection_service_unit test.cc' ], 2145 ['exclude', '^browser/safe_browsing/download_protection_service_unit test.cc' ],
2151 ['exclude', '^../content/browser/geolocation/wifi_data_provider_linu x_unittest.cc'], 2146 ['exclude', '^../content/browser/geolocation/wifi_data_provider_linu x_unittest.cc'],
2152 # TODO(thestig) Enable PrintPreviewUI tests on CrOS when
2153 # print preview is enabled on CrOS.
2154 ['exclude', '^browser/ui/webui/print_preview_ui_unittest.cc'],
2155 ], 2147 ],
2156 'conditions': [ 2148 'conditions': [
2157 ['use_aura==1', { 2149 ['use_aura==1', {
2158 'sources!': [ 2150 'sources!': [
2159 'browser/chromeos/notifications/desktop_notifications_unittest.c c', 2151 'browser/chromeos/notifications/desktop_notifications_unittest.c c',
2160 ], 2152 ],
2161 }], 2153 }],
2162 ], 2154 ],
2163 }, { # else: chromeos == 0 2155 }, { # else: chromeos == 0
2164 'sources/': [ 2156 'sources/': [
(...skipping 599 matching lines...) Expand 10 before | Expand all | Expand 10 after
2764 '../content/browser/in_process_webkit/dom_storage_browsertest.cc', 2756 '../content/browser/in_process_webkit/dom_storage_browsertest.cc',
2765 '../content/browser/in_process_webkit/indexed_db_browsertest.cc', 2757 '../content/browser/in_process_webkit/indexed_db_browsertest.cc',
2766 '../content/browser/plugin_data_remover_impl_browsertest.cc', 2758 '../content/browser/plugin_data_remover_impl_browsertest.cc',
2767 '../content/browser/plugin_service_browsertest.cc', 2759 '../content/browser/plugin_service_browsertest.cc',
2768 '../content/browser/renderer_host/render_process_host_browsertest.cc', 2760 '../content/browser/renderer_host/render_process_host_browsertest.cc',
2769 '../content/browser/renderer_host/render_process_host_browsertest.h', 2761 '../content/browser/renderer_host/render_process_host_browsertest.h',
2770 '../content/browser/renderer_host/render_view_host_browsertest.cc', 2762 '../content/browser/renderer_host/render_view_host_browsertest.cc',
2771 '../content/browser/renderer_host/render_view_host_manager_browsertest.c c', 2763 '../content/browser/renderer_host/render_view_host_manager_browsertest.c c',
2772 '../content/browser/renderer_host/resource_dispatcher_host_browsertest.c c', 2764 '../content/browser/renderer_host/resource_dispatcher_host_browsertest.c c',
2773 '../content/browser/speech/speech_input_browsertest.cc', 2765 '../content/browser/speech/speech_input_browsertest.cc',
2774 » '../content/browser/webkit_browsertest.cc', 2766 '../content/browser/webkit_browsertest.cc',
2775 '../content/renderer/render_view_browsertest.cc', 2767 '../content/renderer/render_view_browsertest.cc',
2776 '../content/renderer/render_view_browsertest_mac.mm', 2768 '../content/renderer/render_view_browsertest_mac.mm',
2777 '../content/test/render_widget_browsertest.cc', 2769 '../content/test/render_widget_browsertest.cc',
2778 '../content/test/render_widget_browsertest.h', 2770 '../content/test/render_widget_browsertest.h',
2779 '../content/test/test_launcher.cc', 2771 '../content/test/test_launcher.cc',
2780 '../content/test/test_launcher.h', 2772 '../content/test/test_launcher.h',
2781 ], 2773 ],
2782 'rules': [ 2774 'rules': [
2783 { 2775 {
2784 'rule_name': 'js2webui', 2776 'rule_name': 'js2webui',
(...skipping 1557 matching lines...) Expand 10 before | Expand all | Expand 10 after
4342 # Use outputs of this action as inputs for the main target build. 4334 # Use outputs of this action as inputs for the main target build.
4343 # Seems as a misnomer but makes this happy on Linux (scons). 4335 # Seems as a misnomer but makes this happy on Linux (scons).
4344 'process_outputs_as_sources': 1, 4336 'process_outputs_as_sources': 1,
4345 }, 4337 },
4346 ], # 'actions' 4338 ], # 'actions'
4347 }, 4339 },
4348 ] 4340 ]
4349 }], # 'coverage!=0' 4341 }], # 'coverage!=0'
4350 ], # 'conditions' 4342 ], # 'conditions'
4351 } 4343 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/print_preview_ui_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698