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 '../../gin/gin.gyp:gin', | 26 '../../gin/gin.gyp:gin', |
27 '../../gpu/gpu.gyp:gpu', | 27 '../../gpu/gpu.gyp:gpu', |
| 28 '../../net/net.gyp:net', |
28 '../../skia/skia.gyp:skia', | 29 '../../skia/skia.gyp:skia', |
29 '../../third_party/WebKit/public/blink.gyp:blink', | 30 '../../third_party/WebKit/public/blink.gyp:blink', |
30 '../../ui/events/events.gyp:dom_keycode_converter', | 31 '../../ui/events/events.gyp:dom_keycode_converter', |
31 '../../ui/events/events.gyp:events_base', | 32 '../../ui/events/events.gyp:events_base', |
32 '../../ui/gfx/gfx.gyp:gfx', | 33 '../../ui/gfx/gfx.gyp:gfx', |
33 '../../ui/gfx/gfx.gyp:gfx_geometry', | 34 '../../ui/gfx/gfx.gyp:gfx_geometry', |
34 '../../url/url.gyp:url_lib', | 35 '../../url/url.gyp:url_lib', |
35 '../../v8/tools/gyp/v8.gyp:v8', | 36 '../../v8/tools/gyp/v8.gyp:v8', |
36 ], | 37 ], |
37 'include_dirs': [ | 38 'include_dirs': [ |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 'mock_webrtc_data_channel_handler.cc', | 75 'mock_webrtc_data_channel_handler.cc', |
75 'mock_webrtc_data_channel_handler.h', | 76 'mock_webrtc_data_channel_handler.h', |
76 'mock_webrtc_dtmf_sender_handler.cc', | 77 'mock_webrtc_dtmf_sender_handler.cc', |
77 'mock_webrtc_dtmf_sender_handler.h', | 78 'mock_webrtc_dtmf_sender_handler.h', |
78 'mock_webrtc_peer_connection_handler.cc', | 79 'mock_webrtc_peer_connection_handler.cc', |
79 'mock_webrtc_peer_connection_handler.h', | 80 'mock_webrtc_peer_connection_handler.h', |
80 'spell_check_client.cc', | 81 'spell_check_client.cc', |
81 'spell_check_client.h', | 82 'spell_check_client.h', |
82 'test_common.cc', | 83 'test_common.cc', |
83 'test_common.h', | 84 'test_common.h', |
| 85 'test_info_extractor.cc', |
| 86 'test_info_extractor.h', |
84 'test_interfaces.cc', | 87 'test_interfaces.cc', |
85 'test_interfaces.h', | 88 'test_interfaces.h', |
86 'test_plugin.cc', | 89 'test_plugin.cc', |
87 'test_plugin.h', | 90 'test_plugin.h', |
88 'test_runner.cc', | 91 'test_runner.cc', |
89 'test_runner.h', | 92 'test_runner.h', |
90 'test_runner_export.h', | 93 'test_runner_export.h', |
91 'test_preferences.cc', | 94 'test_preferences.cc', |
92 'test_preferences.h', | 95 'test_preferences.h', |
93 'text_input_controller.cc', | 96 'text_input_controller.cc', |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', | 198 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', |
196 ], | 199 ], |
197 }, | 200 }, |
198 }], | 201 }], |
199 ], | 202 ], |
200 }, | 203 }, |
201 ], | 204 ], |
202 }], # OS=="mac" or OS=="win" | 205 }], # OS=="mac" or OS=="win" |
203 ] | 206 ] |
204 } | 207 } |
OLD | NEW |