OLD | NEW |
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 ], |
38 'include_dirs': [ | 40 'include_dirs': [ |
39 '..', | 41 '..', |
40 ], | 42 ], |
41 # Note: sources list duplicated in GN build. | 43 # Note: sources list duplicated in GN build. |
| 44 # TODO(mcasas): http://crbug.com/537709 extract them to a .gypi file. |
42 'sources': [ | 45 'sources': [ |
43 'accessibility_controller.cc', | 46 'accessibility_controller.cc', |
44 'accessibility_controller.h', | 47 'accessibility_controller.h', |
45 'app_banner_client.cc', | 48 'app_banner_client.cc', |
46 'app_banner_client.h', | 49 'app_banner_client.h', |
47 'event_sender.cc', | 50 'event_sender.cc', |
48 'event_sender.h', | 51 'event_sender.h', |
49 'gamepad_controller.cc', | 52 'gamepad_controller.cc', |
50 'gamepad_controller.h', | 53 'gamepad_controller.h', |
51 'mock_color_chooser.cc', | 54 'mock_color_chooser.cc', |
(...skipping 19 matching lines...) Expand all Loading... |
71 'mock_web_theme_engine.cc', | 74 'mock_web_theme_engine.cc', |
72 'mock_web_theme_engine.h', | 75 'mock_web_theme_engine.h', |
73 'mock_web_user_media_client.cc', | 76 'mock_web_user_media_client.cc', |
74 'mock_web_user_media_client.h', | 77 'mock_web_user_media_client.h', |
75 'mock_webrtc_data_channel_handler.cc', | 78 'mock_webrtc_data_channel_handler.cc', |
76 'mock_webrtc_data_channel_handler.h', | 79 'mock_webrtc_data_channel_handler.h', |
77 'mock_webrtc_dtmf_sender_handler.cc', | 80 'mock_webrtc_dtmf_sender_handler.cc', |
78 'mock_webrtc_dtmf_sender_handler.h', | 81 'mock_webrtc_dtmf_sender_handler.h', |
79 'mock_webrtc_peer_connection_handler.cc', | 82 'mock_webrtc_peer_connection_handler.cc', |
80 'mock_webrtc_peer_connection_handler.h', | 83 'mock_webrtc_peer_connection_handler.h', |
| 84 'renderer/mock_video_capturer_source.cc', |
| 85 'renderer/mock_video_capturer_source.h', |
81 'spell_check_client.cc', | 86 'spell_check_client.cc', |
82 'spell_check_client.h', | 87 'spell_check_client.h', |
83 'test_common.cc', | 88 'test_common.cc', |
84 'test_common.h', | 89 'test_common.h', |
85 'test_info_extractor.cc', | 90 'test_info_extractor.cc', |
86 'test_info_extractor.h', | 91 'test_info_extractor.h', |
87 'test_interfaces.cc', | 92 'test_interfaces.cc', |
88 'test_interfaces.h', | 93 'test_interfaces.h', |
89 'test_plugin.cc', | 94 'test_plugin.cc', |
90 'test_plugin.h', | 95 'test_plugin.h', |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', | 203 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', |
199 ], | 204 ], |
200 }, | 205 }, |
201 }], | 206 }], |
202 ], | 207 ], |
203 }, | 208 }, |
204 ], | 209 ], |
205 }], # OS=="mac" or OS=="win" | 210 }], # OS=="mac" or OS=="win" |
206 ] | 211 ] |
207 } | 212 } |
OLD | NEW |