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