| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'test_support_content', | 8 'target_name': 'test_support_content', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'defines!': ['CONTENT_IMPLEMENTATION'], | 10 'defines!': ['CONTENT_IMPLEMENTATION'], |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 '../webkit/support/webkit_support.gyp:appcache', | 23 '../webkit/support/webkit_support.gyp:appcache', |
| 24 ], | 24 ], |
| 25 'include_dirs': [ | 25 'include_dirs': [ |
| 26 '..', | 26 '..', |
| 27 ], | 27 ], |
| 28 'sources': [ | 28 'sources': [ |
| 29 'public/test/accessibility_test_utils_win.h', | 29 'public/test/accessibility_test_utils_win.h', |
| 30 'public/test/browser_test.h', | 30 'public/test/browser_test.h', |
| 31 'public/test/browser_test_utils.h', | 31 'public/test/browser_test_utils.h', |
| 32 'public/test/content_test_suite_base.h', | 32 'public/test/content_test_suite_base.h', |
| 33 'public/test/download_test_observer.h', |
| 33 'public/test/js_injection_ready_observer.h', | 34 'public/test/js_injection_ready_observer.h', |
| 34 'public/test/mock_download_item.h', | 35 'public/test/mock_download_item.h', |
| 35 'public/test/mock_download_manager.h', | 36 'public/test/mock_download_manager.h', |
| 36 'public/test/mock_notification_observer.h', | 37 'public/test/mock_notification_observer.h', |
| 37 'public/test/mock_render_process_host.h', | 38 'public/test/mock_render_process_host.h', |
| 38 'public/test/mock_render_thread.h', | 39 'public/test/mock_render_thread.h', |
| 39 'public/test/mock_resource_context.h', | 40 'public/test/mock_resource_context.h', |
| 40 'public/test/render_view_fake_resources_test.h', | 41 'public/test/render_view_fake_resources_test.h', |
| 41 'public/test/render_view_test.h', | 42 'public/test/render_view_test.h', |
| 42 'public/test/render_widget_browsertest.h', | 43 'public/test/render_widget_browsertest.h', |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 'common/test_url_constants.h', | 76 'common/test_url_constants.h', |
| 76 'gpu/gpu_idirect3d9_mock_win.cc', | 77 'gpu/gpu_idirect3d9_mock_win.cc', |
| 77 'gpu/gpu_idirect3d9_mock_win.h', | 78 'gpu/gpu_idirect3d9_mock_win.h', |
| 78 'test/accessibility_test_utils_win.cc', | 79 'test/accessibility_test_utils_win.cc', |
| 79 'test/browser_test_base.cc', | 80 'test/browser_test_base.cc', |
| 80 'test/browser_test_base.h', | 81 'test/browser_test_base.h', |
| 81 'test/browser_test_utils.cc', | 82 'test/browser_test_utils.cc', |
| 82 'test/content_test_suite.cc', | 83 'test/content_test_suite.cc', |
| 83 'test/content_test_suite.h', | 84 'test/content_test_suite.h', |
| 84 'test/content_test_suite_base.cc', | 85 'test/content_test_suite_base.cc', |
| 86 'test/download_test_observer.cc', |
| 85 'test/gpu/gpu_test_config.cc', | 87 'test/gpu/gpu_test_config.cc', |
| 86 'test/gpu/gpu_test_config.h', | 88 'test/gpu/gpu_test_config.h', |
| 87 'test/gpu/gpu_test_expectations_parser.cc', | 89 'test/gpu/gpu_test_expectations_parser.cc', |
| 88 'test/gpu/gpu_test_expectations_parser.h', | 90 'test/gpu/gpu_test_expectations_parser.h', |
| 89 'test/mock_download_item.cc', | 91 'test/mock_download_item.cc', |
| 90 'test/mock_download_manager.cc', | 92 'test/mock_download_manager.cc', |
| 91 'test/mock_keyboard.cc', | 93 'test/mock_keyboard.cc', |
| 92 'test/mock_keyboard_driver_win.cc', | 94 'test/mock_keyboard_driver_win.cc', |
| 93 'test/mock_keyboard_driver_win.h', | 95 'test/mock_keyboard_driver_win.h', |
| 94 'test/mock_keyboard.h', | 96 'test/mock_keyboard.h', |
| (...skipping 731 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 826 '-buildfile', | 828 '-buildfile', |
| 827 '<(DEPTH)/content/shell/android/javatests/content_shell_test_apk
.xml', | 829 '<(DEPTH)/content/shell/android/javatests/content_shell_test_apk
.xml', |
| 828 ] | 830 ] |
| 829 } | 831 } |
| 830 ], | 832 ], |
| 831 }, | 833 }, |
| 832 ], | 834 ], |
| 833 }], | 835 }], |
| 834 ], | 836 ], |
| 835 } | 837 } |
| OLD | NEW |