| 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 'defines!': ['CONTENT_IMPLEMENTATION'], | 10 'defines!': ['CONTENT_IMPLEMENTATION'], |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 'content_browser', | 133 'content_browser', |
| 134 'content_gpu', | 134 'content_gpu', |
| 135 'content_plugin', | 135 'content_plugin', |
| 136 'content_renderer', | 136 'content_renderer', |
| 137 'test_support_content', | 137 'test_support_content', |
| 138 '../base/base.gyp:test_support_base', | 138 '../base/base.gyp:test_support_base', |
| 139 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 139 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 140 '../crypto/crypto.gyp:crypto', | 140 '../crypto/crypto.gyp:crypto', |
| 141 '../gpu/gpu.gyp:gpu_unittest_utils', | 141 '../gpu/gpu.gyp:gpu_unittest_utils', |
| 142 '../ipc/ipc.gyp:test_support_ipc', | 142 '../ipc/ipc.gyp:test_support_ipc', |
| 143 '../jingle/jingle.gyp:jingle_glue_test_util', |
| 143 '../media/media.gyp:media_test_support', | 144 '../media/media.gyp:media_test_support', |
| 144 '../net/net.gyp:net_test_support', | 145 '../net/net.gyp:net_test_support', |
| 145 '../skia/skia.gyp:skia', | 146 '../skia/skia.gyp:skia', |
| 146 '../testing/gmock.gyp:gmock', | 147 '../testing/gmock.gyp:gmock', |
| 147 '../testing/gtest.gyp:gtest', | 148 '../testing/gtest.gyp:gtest', |
| 148 '../third_party/libjingle/libjingle.gyp:libjingle', | 149 '../third_party/libjingle/libjingle.gyp:libjingle', |
| 149 '../third_party/libjingle/libjingle.gyp:libjingle_peerconnection', | 150 '../third_party/libjingle/libjingle.gyp:libjingle_peerconnection', |
| 150 '../third_party/libvpx/libvpx.gyp:libvpx', | 151 '../third_party/libvpx/libvpx.gyp:libvpx', |
| 151 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', | 152 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', |
| 152 '../third_party/webrtc/modules/modules.gyp:video_capture_module', | 153 '../third_party/webrtc/modules/modules.gyp:video_capture_module', |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 ['input_speech==0', { | 251 ['input_speech==0', { |
| 251 'sources/': [ | 252 'sources/': [ |
| 252 ['exclude', '^browser/speech/'], | 253 ['exclude', '^browser/speech/'], |
| 253 ] | 254 ] |
| 254 }], | 255 }], |
| 255 ['notifications==0', { | 256 ['notifications==0', { |
| 256 'sources!': [ | 257 'sources!': [ |
| 257 'renderer/active_notification_tracker_unittest.cc', | 258 'renderer/active_notification_tracker_unittest.cc', |
| 258 ], | 259 ], |
| 259 }], | 260 }], |
| 261 ['p2p_apis==1', { |
| 262 'sources': [ |
| 263 'browser/renderer_host/p2p/socket_host_test_utils.h', |
| 264 'browser/renderer_host/p2p/socket_host_tcp_unittest.cc', |
| 265 'browser/renderer_host/p2p/socket_host_tcp_server_unittest.cc', |
| 266 'browser/renderer_host/p2p/socket_host_udp_unittest.cc', |
| 267 'renderer/p2p/p2p_transport_impl_unittest.cc', |
| 268 ], |
| 269 }], |
| 260 ['use_x11 == 1', { | 270 ['use_x11 == 1', { |
| 261 'dependencies': [ | 271 'dependencies': [ |
| 262 '../build/linux/system.gyp:dbus', | 272 '../build/linux/system.gyp:dbus', |
| 263 '../dbus/dbus.gyp:dbus_test_support', | 273 '../dbus/dbus.gyp:dbus_test_support', |
| 264 ], | 274 ], |
| 265 }], | 275 }], |
| 266 ['OS=="win" and win_use_allocator_shim==1', { | 276 ['OS=="win" and win_use_allocator_shim==1', { |
| 267 'dependencies': [ | 277 'dependencies': [ |
| 268 '../base/allocator/allocator.gyp:allocator', | 278 '../base/allocator/allocator.gyp:allocator', |
| 269 ], | 279 ], |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 ], | 391 ], |
| 382 'sources': [ | 392 'sources': [ |
| 383 'common/gpu/media/omx_video_decode_accelerator_unittest.cc', | 393 'common/gpu/media/omx_video_decode_accelerator_unittest.cc', |
| 384 ], | 394 ], |
| 385 } | 395 } |
| 386 ], | 396 ], |
| 387 }, | 397 }, |
| 388 ], | 398 ], |
| 389 ], | 399 ], |
| 390 } | 400 } |
| OLD | NEW |