| OLD | NEW |
| 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 '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 'dependencies': [ | 10 'dependencies': [ |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 '../testing/gmock.gyp:gmock', | 43 '../testing/gmock.gyp:gmock', |
| 44 '../testing/gtest.gyp:gtest', | 44 '../testing/gtest.gyp:gtest', |
| 45 '../third_party/libjingle/libjingle.gyp:libjingle', | 45 '../third_party/libjingle/libjingle.gyp:libjingle', |
| 46 ], | 46 ], |
| 47 'include_dirs': [ | 47 'include_dirs': [ |
| 48 '..', | 48 '..', |
| 49 ], | 49 ], |
| 50 'sources': [ | 50 'sources': [ |
| 51 'browser/browser_thread_unittest.cc', | 51 'browser/browser_thread_unittest.cc', |
| 52 'browser/child_process_security_policy_unittest.cc', | 52 'browser/child_process_security_policy_unittest.cc', |
| 53 'browser/renderer_host/gtk_key_bindings_handler_unittest.cc', |
| 53 'browser/ssl/ssl_host_state_unittest.cc', | 54 'browser/ssl/ssl_host_state_unittest.cc', |
| 54 'browser/trace_subscriber_stdio_unittest.cc', | 55 'browser/trace_subscriber_stdio_unittest.cc', |
| 55 'common/process_watcher_unittest.cc', | 56 'common/process_watcher_unittest.cc', |
| 56 'common/property_bag_unittest.cc', | 57 'common/property_bag_unittest.cc', |
| 57 'common/resource_dispatcher_unittest.cc', | 58 'common/resource_dispatcher_unittest.cc', |
| 58 'common/url_fetcher_unittest.cc', | 59 'common/url_fetcher_unittest.cc', |
| 59 'renderer/active_notification_tracker_unittest.cc', | 60 'renderer/active_notification_tracker_unittest.cc', |
| 60 'renderer/media/audio_message_filter_unittest.cc', | 61 'renderer/media/audio_message_filter_unittest.cc', |
| 61 'renderer/media/audio_renderer_impl_unittest.cc', | 62 'renderer/media/audio_renderer_impl_unittest.cc', |
| 62 'renderer/media/capture_video_decoder_unittest.cc', | 63 'renderer/media/capture_video_decoder_unittest.cc', |
| 63 'renderer/media/media_stream_dispatcher_unittest.cc', | 64 'renderer/media/media_stream_dispatcher_unittest.cc', |
| 64 'renderer/media/rtc_video_decoder_unittest.cc', | 65 'renderer/media/rtc_video_decoder_unittest.cc', |
| 65 'renderer/media/video_capture_impl_unittest.cc', | 66 'renderer/media/video_capture_impl_unittest.cc', |
| 66 'renderer/media/video_capture_message_filter_unittest.cc', | 67 'renderer/media/video_capture_message_filter_unittest.cc', |
| 67 'renderer/paint_aggregator_unittest.cc', | 68 'renderer/paint_aggregator_unittest.cc', |
| 68 'test/run_all_unittests.cc', | 69 'test/run_all_unittests.cc', |
| 69 ], | 70 ], |
| 70 'conditions': [ | 71 'conditions': [ |
| 71 ['os_posix!=1', { | 72 ['os_posix!=1', { |
| 72 'sources!': [ | 73 'sources!': [ |
| 73 # TODO(port): port those unit tests. | 74 # TODO(port): port those unit tests. |
| 74 'common/process_watcher_unittest.cc', | 75 'common/process_watcher_unittest.cc', |
| 75 ], | 76 ], |
| 76 }], | 77 }], |
| 77 ['OS=="win" and win_use_allocator_shim==1', { | 78 ['OS=="win" and win_use_allocator_shim==1', { |
| 78 'dependencies': [ | 79 'dependencies': [ |
| 79 '../base/allocator/allocator.gyp:allocator', | 80 '../base/allocator/allocator.gyp:allocator', |
| 80 ], | 81 ], |
| 81 }], | 82 }], |
| 83 ['chromeos==1', { |
| 84 'sources/': [ |
| 85 ['exclude', '^browser/renderer_host/gtk_key_bindings_handler_unittes
t.cc'], |
| 86 ], |
| 87 }], |
| 82 ], | 88 ], |
| 83 }, | 89 }, |
| 84 ], | 90 ], |
| 85 } | 91 } |
| OLD | NEW |