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

Side by Side Diff: components/test_runner/test_runner.gyp

Issue 1371373002: Extend components/test_runner's generated WebMediaStream to have a ChromeMock VideoTrack and Source (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 # This turns on e.g. the filename-based detection of which 7 # This turns on e.g. the filename-based detection of which
8 # platforms to include source files on (e.g. files ending in 8 # platforms to include source files on (e.g. files ending in
9 # _mac.h or _mac.cc are only compiled on MacOSX). 9 # _mac.h or _mac.cc are only compiled on MacOSX).
10 'chromium_code': 1, 10 'chromium_code': 1,
11 }, 11 },
12 'targets': [ 12 'targets': [
13 { 13 {
14 # GN version: //components/test_runner:test_runner 14 # GN version: //components/test_runner:test_runner
15 'target_name': 'test_runner', 15 'target_name': 'test_runner',
16 'type': '<(component)', 16 'type': '<(component)',
17 'defines': [ 17 'defines': [
18 'TEST_RUNNER_IMPLEMENTATION', 18 'TEST_RUNNER_IMPLEMENTATION',
19 ], 19 ],
20 'dependencies': [ 20 'dependencies': [
21 'resources', 21 'resources',
22 '../../base/base.gyp:base', 22 '../../base/base.gyp:base',
23 '../../base/base.gyp:base_i18n', 23 '../../base/base.gyp:base_i18n',
24 '../../cc/cc.gyp:cc', 24 '../../cc/cc.gyp:cc',
25 '../../cc/blink/cc_blink.gyp:cc_blink', 25 '../../cc/blink/cc_blink.gyp:cc_blink',
26 '../../content/content.gyp:content_renderer',
26 '../../gin/gin.gyp:gin', 27 '../../gin/gin.gyp:gin',
27 '../../gpu/gpu.gyp:gpu', 28 '../../gpu/gpu.gyp:gpu',
29 '../../media/media.gyp:media',
28 '../../net/net.gyp:net', 30 '../../net/net.gyp:net',
29 '../../skia/skia.gyp:skia', 31 '../../skia/skia.gyp:skia',
30 '../../third_party/WebKit/public/blink.gyp:blink', 32 '../../third_party/WebKit/public/blink.gyp:blink',
31 '../../ui/events/events.gyp:dom_keycode_converter', 33 '../../ui/events/events.gyp:dom_keycode_converter',
32 '../../ui/events/events.gyp:events_base', 34 '../../ui/events/events.gyp:events_base',
33 '../../ui/gfx/gfx.gyp:gfx', 35 '../../ui/gfx/gfx.gyp:gfx',
34 '../../ui/gfx/gfx.gyp:gfx_geometry', 36 '../../ui/gfx/gfx.gyp:gfx_geometry',
35 '../../url/url.gyp:url_lib', 37 '../../url/url.gyp:url_lib',
36 '../../v8/tools/gyp/v8.gyp:v8', 38 '../../v8/tools/gyp/v8.gyp:v8',
37 ], 39 ],
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 'mock_web_theme_engine.cc', 73 'mock_web_theme_engine.cc',
72 'mock_web_theme_engine.h', 74 'mock_web_theme_engine.h',
73 'mock_web_user_media_client.cc', 75 'mock_web_user_media_client.cc',
74 'mock_web_user_media_client.h', 76 'mock_web_user_media_client.h',
75 'mock_webrtc_data_channel_handler.cc', 77 'mock_webrtc_data_channel_handler.cc',
76 'mock_webrtc_data_channel_handler.h', 78 'mock_webrtc_data_channel_handler.h',
77 'mock_webrtc_dtmf_sender_handler.cc', 79 'mock_webrtc_dtmf_sender_handler.cc',
78 'mock_webrtc_dtmf_sender_handler.h', 80 'mock_webrtc_dtmf_sender_handler.h',
79 'mock_webrtc_peer_connection_handler.cc', 81 'mock_webrtc_peer_connection_handler.cc',
80 'mock_webrtc_peer_connection_handler.h', 82 'mock_webrtc_peer_connection_handler.h',
83 'renderer/mock_video_capturer_source.h',
81 'spell_check_client.cc', 84 'spell_check_client.cc',
82 'spell_check_client.h', 85 'spell_check_client.h',
83 'test_common.cc', 86 'test_common.cc',
84 'test_common.h', 87 'test_common.h',
85 'test_info_extractor.cc', 88 'test_info_extractor.cc',
86 'test_info_extractor.h', 89 'test_info_extractor.h',
87 'test_interfaces.cc', 90 'test_interfaces.cc',
88 'test_interfaces.h', 91 'test_interfaces.h',
89 'test_plugin.cc', 92 'test_plugin.cc',
90 'test_plugin.h', 93 'test_plugin.h',
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', 201 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework',
199 ], 202 ],
200 }, 203 },
201 }], 204 }],
202 ], 205 ],
203 }, 206 },
204 ], 207 ],
205 }], # OS=="mac" or OS=="win" 208 }], # OS=="mac" or OS=="win"
206 ] 209 ]
207 } 210 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698