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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 6346007: Refactor and improve gpu_info_collector: collect information on linux;... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: This should turn three trybots green Created 9 years, 11 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 | « chrome/chrome.gyp ('k') | chrome/common/child_process_logging_mac.mm » ('j') | 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 { 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 969 matching lines...) Expand 10 before | Expand all | Expand 10 after
980 'chrome_strings', 980 'chrome_strings',
981 'common', 981 'common',
982 'profile_import', 982 'profile_import',
983 'renderer', 983 'renderer',
984 'service', 984 'service',
985 'test_support_common', 985 'test_support_common',
986 'test_support_unit', 986 'test_support_unit',
987 'utility', 987 'utility',
988 '../app/app.gyp:app_base', 988 '../app/app.gyp:app_base',
989 '../app/app.gyp:app_resources', 989 '../app/app.gyp:app_resources',
990 '../gpu/gpu.gyp:gpu_unittest_utils',
990 '../ipc/ipc.gyp:ipc', 991 '../ipc/ipc.gyp:ipc',
991 '../media/media.gyp:media_test_support', 992 '../media/media.gyp:media_test_support',
992 '../net/net.gyp:net_resources', 993 '../net/net.gyp:net_resources',
993 '../net/net.gyp:net_test_support', 994 '../net/net.gyp:net_test_support',
994 '../printing/printing.gyp:printing', 995 '../printing/printing.gyp:printing',
995 '../webkit/support/webkit_support.gyp:webkit_resources', 996 '../webkit/support/webkit_support.gyp:webkit_resources',
996 '../skia/skia.gyp:skia', 997 '../skia/skia.gyp:skia',
997 '../testing/gmock.gyp:gmock', 998 '../testing/gmock.gyp:gmock',
998 '../testing/gtest.gyp:gtest', 999 '../testing/gtest.gyp:gtest',
999 '../third_party/bzip2/bzip2.gyp:bzip2', 1000 '../third_party/bzip2/bzip2.gyp:bzip2',
(...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after
1664 'common/sandbox_mac_unittest_helper.mm', 1665 'common/sandbox_mac_unittest_helper.mm',
1665 'common/sandbox_mac_system_access_unittest.mm', 1666 'common/sandbox_mac_system_access_unittest.mm',
1666 'common/service_process_util_unittest.cc', 1667 'common/service_process_util_unittest.cc',
1667 'common/switch_utils_unittest.cc', 1668 'common/switch_utils_unittest.cc',
1668 'common/thumbnail_score_unittest.cc', 1669 'common/thumbnail_score_unittest.cc',
1669 'common/time_format_unittest.cc', 1670 'common/time_format_unittest.cc',
1670 'common/web_apps_unittest.cc', 1671 'common/web_apps_unittest.cc',
1671 'common/worker_thread_ticker_unittest.cc', 1672 'common/worker_thread_ticker_unittest.cc',
1672 'common/zip_unittest.cc', 1673 'common/zip_unittest.cc',
1673 'gpu/gpu_idirect3d9_mock_win.h', 1674 'gpu/gpu_idirect3d9_mock_win.h',
1675 'gpu/gpu_info_collector_unittest.cc',
1674 'gpu/gpu_info_unittest_win.cc', 1676 'gpu/gpu_info_unittest_win.cc',
1675 'gpu/gpu_video_decoder_unittest.cc', 1677 'gpu/gpu_video_decoder_unittest.cc',
1676 'renderer/audio_message_filter_unittest.cc', 1678 'renderer/audio_message_filter_unittest.cc',
1677 'renderer/extensions/extension_api_json_validity_unittest.cc', 1679 'renderer/extensions/extension_api_json_validity_unittest.cc',
1678 'renderer/extensions/extension_renderer_info_unittest.cc', 1680 'renderer/extensions/extension_renderer_info_unittest.cc',
1679 'renderer/extensions/json_schema_unittest.cc', 1681 'renderer/extensions/json_schema_unittest.cc',
1680 'renderer/gpu_video_decoder_host_unittest.cc', 1682 'renderer/gpu_video_decoder_host_unittest.cc',
1681 'renderer/media/audio_renderer_impl_unittest.cc', 1683 'renderer/media/audio_renderer_impl_unittest.cc',
1682 'renderer/net/predictor_queue_unittest.cc', 1684 'renderer/net/predictor_queue_unittest.cc',
1683 'renderer/net/renderer_predictor_unittest.cc', 1685 'renderer/net/renderer_predictor_unittest.cc',
(...skipping 1952 matching lines...) Expand 10 before | Expand all | Expand 10 after
3636 ] 3638 ]
3637 }], # 'coverage!=0' 3639 }], # 'coverage!=0'
3638 ], # 'conditions' 3640 ], # 'conditions'
3639 } 3641 }
3640 3642
3641 # Local Variables: 3643 # Local Variables:
3642 # tab-width:2 3644 # tab-width:2
3643 # indent-tabs-mode:nil 3645 # indent-tabs-mode:nil
3644 # End: 3646 # End:
3645 # vim: set expandtab tabstop=2 shiftwidth=2: 3647 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/common/child_process_logging_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698