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

Side by Side Diff: build/gn_migration.gypi

Issue 2299543008: Remove the top-level GYP files (or stub them out). (Closed)
Patch Set: lint Created 4 years, 3 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
« no previous file with comments | « build/common.gypi ('k') | build/gyp_chromium » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 # This file defines five targets that we are using to track the progress of the
6 # GYP->GN migration:
7 #
8 # 'both_gn_and_gyp' lists what GN is currently capable of building and should
9 # match the 'both_gn_and_gyp' target in //BUILD.gn.
10 #
11 # 'gyp_all' Should include everything built when building "all"; i.e., if you
12 # type 'ninja gyp_all' and then 'ninja all', the second build should do
13 # nothing. 'gyp_all' should just depend on the other four targets.
14 #
15 # 'gyp_remaining' lists all of the targets that still need to be converted,
16 # i.e., all of the other (non-empty) targets that a GYP build will build.
17
18 {
19 'includes': [
20 '../media/media_variables.gypi'
21 ],
22 'targets': [
23 {
24 'target_name': 'gyp_all',
25 'type': 'none',
26 'dependencies': [
27 'both_gn_and_gyp',
28 'gyp_remaining',
29 ]
30 },
31 {
32 # This target should mirror the structure of //:both_gn_and_gyp
33 # in src/BUILD.gn as closely as possible, for ease of comparison.
34 'target_name': 'both_gn_and_gyp',
35 'type': 'none',
36 'dependencies': [
37 '../base/base.gyp:base_i18n_perftests',
38 '../base/base.gyp:base_perftests',
39 '../base/base.gyp:base_unittests',
40 '../base/base.gyp:check_example',
41 '../cc/cc_tests.gyp:cc_perftests',
42 '../cc/cc_tests.gyp:cc_unittests',
43 '../cc/blink/cc_blink_tests.gyp:cc_blink_unittests',
44 '../chrome/chrome.gyp:load_library_perf_tests',
45 '../chrome/chrome.gyp:unit_tests',
46 '../components/components.gyp:network_hints_browser',
47 '../components/components.gyp:policy_templates',
48 '../components/components_tests.gyp:components_browsertests',
49 '../components/components_tests.gyp:components_perftests',
50 '../components/components_tests.gyp:components_unittests',
51 '../content/content.gyp:content_app_browser',
52 '../content/content.gyp:content_app_child',
53 '../content/content_shell_and_tests.gyp:content_browsertests',
54 '../content/content_shell_and_tests.gyp:content_perftests',
55 '../content/content_shell_and_tests.gyp:content_unittests',
56 '../crypto/crypto.gyp:crypto_unittests',
57 '../device/device_tests.gyp:device_unittests',
58 '../gin/gin.gyp:gin_v8_snapshot_fingerprint',
59 '../gpu/gpu.gyp:angle_unittests',
60 '../gpu/gpu.gyp:gl_tests',
61 '../gpu/gpu.gyp:gpu_perftests',
62 '../gpu/gpu.gyp:gpu_unittests',
63 '../ipc/ipc.gyp:ipc_tests',
64 '../media/cast/cast.gyp:cast_unittests',
65 '../media/media.gyp:media_perftests',
66 '../media/media.gyp:media_unittests',
67 '../media/midi/midi.gyp:midi_unittests',
68 '../net/net.gyp:dump_cache',
69 '../net/net.gyp:net_perftests',
70 '../net/net.gyp:net_unittests',
71 '../printing/printing.gyp:printing_unittests',
72 '../skia/skia_tests.gyp:skia_unittests',
73 '../sql/sql.gyp:sql_unittests',
74 '../testing/gmock.gyp:gmock_main',
75 '../third_party/WebKit/Source/platform/blink_platform_tests.gyp:blink_he ap_unittests',
76 '../third_party/WebKit/Source/platform/blink_platform_tests.gyp:blink_pl atform_unittests',
77 '../third_party/WebKit/Source/web/web_tests.gyp:webkit_unit_tests',
78 '../third_party/WebKit/Source/wtf/wtf_tests.gyp:wtf_unittests',
79 '../third_party/boringssl/boringssl_tests.gyp:boringssl_unittests',
80 '../third_party/leveldatabase/leveldatabase.gyp:env_chromium_unittests',
81 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput_unit tests',
82 '../third_party/smhasher/smhasher.gyp:pmurhash',
83 '../third_party/catapult/telemetry/telemetry.gyp:bitmaptools#host',
84 '../ui/accessibility/accessibility.gyp:accessibility_unittests',
85 '../ui/base/ui_base_tests.gyp:ui_base_unittests',
86 '../ui/display/display.gyp:display_unittests',
87 '../ui/events/events_unittests.gyp:events_unittests',
88 '../ui/gfx/gfx_tests.gyp:gfx_unittests',
89 '../ui/gl/gl_tests.gyp:gl_unittests',
90 '../ui/snapshot/snapshot.gyp:snapshot_unittests',
91 '../ui/touch_selection/ui_touch_selection.gyp:ui_touch_selection_unittes ts',
92 '../url/url.gyp:url_unittests',
93 '../v8/src/v8.gyp:v8_snapshot',
94 '../v8/src/v8.gyp:postmortem-metadata',
95 ],
96 'conditions': [
97 ['clang==1', {
98 'dependencies': [
99 '../build/sanitizers/sanitizers.gyp:llvm-symbolizer',
100 ],
101 }],
102 ['disable_nacl==0 and disable_nacl_untrusted==0', {
103 'dependencies': [
104 '../components/nacl.gyp:nacl_loader_unittests',
105 ]
106 }],
107 ['enable_extensions==1', {
108 'dependencies': [
109 '../extensions/shell/app_shell.gyp:app_shell',
110 '../extensions/shell/app_shell.gyp:app_shell_unittests',
111 ],
112 }],
113 ['enable_mdns==1', {
114 'dependencies': [
115 '../chrome/chrome.gyp:service_discovery_sniffer',
116 ]
117 }],
118 ['remoting==1', {
119 'dependencies': [
120 '../remoting/remoting_all.gyp:remoting_all',
121 ],
122 }],
123 ['remoting==1 and chromeos==0 and use_x11==1', {
124 'dependencies': [
125 '../remoting/remoting.gyp:remoting_me2me_host',
126 '../remoting/remoting.gyp:remoting_me2me_native_messaging_host',
127 ],
128 }],
129 ['toolkit_views==1', {
130 'dependencies': [
131 '../ui/views/views.gyp:views_unittests',
132 ],
133 }],
134 ['enable_app_list==1', {
135 'dependencies': [
136 '../ui/app_list/app_list.gyp:app_list_demo',
137 ],
138 }],
139 ['use_ash==1', {
140 'dependencies': [
141 '../ash/ash.gyp:ash_shell_with_content',
142 '../ash/ash.gyp:ash_unittests',
143 ],
144 }],
145 ['use_ash==1 or chromeos== 1', {
146 'dependencies': [
147 '../components/components.gyp:session_manager_component',
148 ]
149 }],
150 ['use_aura==1', {
151 'dependencies': [
152 '../ui/aura/aura.gyp:aura_demo',
153 '../ui/aura/aura.gyp:aura_unittests',
154 '../ui/keyboard/keyboard.gyp:keyboard_unittests',
155 '../ui/wm/wm.gyp:wm_unittests',
156 ],
157 }],
158 ['use_ozone==1', {
159 'dependencies': [
160 '../ui/ozone/ozone.gyp:ozone',
161 ],
162 }],
163 ['use_x11==1', {
164 'dependencies': [
165 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
166 ],
167 'conditions': [
168 ['target_arch!="arm"', {
169 'dependencies': [
170 '../gpu/tools/tools.gyp:compositor_model_bench',
171 ],
172 }],
173 ],
174 }],
175 ['OS=="android"', {
176 'dependencies': [
177 '../base/base.gyp:base_junit_tests',
178 '../base/base.gyp:base_perftests_apk',
179 '../base/base.gyp:base_unittests_apk',
180 '../base/base.gyp:chromium_android_linker',
181 '../breakpad/breakpad.gyp:breakpad_unittests_deps',
182 '../breakpad/breakpad.gyp:symupload#host',
183 '../breakpad/breakpad.gyp:microdump_stackwalk#host',
184 '../breakpad/breakpad.gyp:minidump_dump#host',
185 '../breakpad/breakpad.gyp:minidump_stackwalk#host',
186 '../build/android/rezip.gyp:rezip_apk_jar',
187 '../cc/blink/cc_blink_tests.gyp:cc_blink_unittests_apk',
188 '../cc/cc_tests.gyp:cc_perftests_apk',
189 '../cc/cc_tests.gyp:cc_unittests_apk',
190 #"//clank" TODO(GYP) - conditional somehow?
191 '../components/components.gyp:cronet_package',
192 '../components/components.gyp:cronet_sample_apk',
193 '../components/components.gyp:cronet_sample_test_apk',
194 '../components/components.gyp:cronet_test_apk',
195 '../components/components.gyp:cronet_test_instrumentation_apk',
196 '../components/components.gyp:cronet_unittests_apk',
197 '../components/components_tests.gyp:components_browsertests_apk',
198 '../components/components_tests.gyp:components_junit_tests',
199 '../components/components_tests.gyp:components_unittests_apk',
200 '../content/content_shell_and_tests.gyp:chromium_linker_test_apk',
201 '../content/content_shell_and_tests.gyp:content_browsertests_apk',
202 '../content/content_shell_and_tests.gyp:content_junit_tests',
203 '../content/content_shell_and_tests.gyp:content_shell_apk',
204 '../content/content_shell_and_tests.gyp:content_shell_test_apk',
205 '../content/content_shell_and_tests.gyp:content_unittests_apk',
206 '../device/device_tests.gyp:device_unittests_apk',
207 '../gpu/gpu.gyp:command_buffer_gles2_tests_apk',
208 '../gpu/gpu.gyp:gl_tests_apk',
209 '../gpu/gpu.gyp:gpu_perftests_apk',
210 '../gpu/gpu.gyp:gpu_unittests_apk',
211 '../ipc/ipc.gyp:ipc_tests_apk',
212 '../media/cast/cast.gyp:cast_unittests_apk',
213 '../media/media.gyp:media_perftests_apk',
214 '../media/media.gyp:media_unittests_apk',
215 '../media/media.gyp:video_decode_accelerator_unittest_apk',
216 '../media/midi/midi.gyp:midi_unittests_apk',
217 '../net/net.gyp:net_junit_tests',
218 '../net/net.gyp:net_unittests_apk',
219 '../sandbox/sandbox.gyp:sandbox_linux_unittests_deps',
220 '../skia/skia_tests.gyp:skia_unittests_apk',
221 '../sql/sql.gyp:sql_unittests_apk',
222 '../testing/android/junit/junit_test.gyp:junit_unit_tests',
223 '../third_party/smhasher/smhasher.gyp:murmurhash3',
224 '../third_party/WebKit/Source/platform/blink_platform_tests.gyp:blin k_heap_unittests_apk',
225 '../third_party/WebKit/Source/platform/blink_platform_tests.gyp:blin k_platform_unittests_apk',
226 '../third_party/WebKit/Source/web/web_tests.gyp:webkit_unit_tests_ap k',
227 '../third_party/WebKit/Source/wtf/wtf_tests.gyp:wtf_unittests_apk',
228 '../tools/android/heap_profiler/heap_profiler.gyp:heap_profiler_unit tests_apk',
229 '../tools/android/android_tools.gyp:memconsumer',
230 '../tools/android/android_tools.gyp:push_apps_to_background',
231 '../tools/imagediff/image_diff.gyp:image_diff#host',
232 '../third_party/catapult/telemetry/telemetry.gyp:bitmaptools#host',
233 '../ui/android/ui_android.gyp:ui_android_unittests_apk',
234 '../ui/android/ui_android.gyp:ui_junit_tests',
235 '../ui/base/ui_base_tests.gyp:ui_base_unittests_apk',
236 '../ui/events/events_unittests.gyp:events_unittests_apk',
237 '../ui/gfx/gfx_tests.gyp:gfx_unittests_apk',
238 '../ui/gl/gl_tests.gyp:gl_unittests_apk',
239 '../ui/touch_selection/ui_touch_selection.gyp:ui_touch_selection_uni ttests_apk',
240
241 #"//third_party/android_tools:uiautomator_java",
242 ],
243 'dependencies!': [
244 # TODO(GYP): All of these targets need to be ported over.
245 '../url/url.gyp:url_unittests',
246 ],
247 }],
248 ['OS=="android" and chromecast==0', {
249 'dependencies': [
250 '../android_webview/android_webview_shell.gyp:system_webview_shell_a pk',
251 '../android_webview/android_webview_shell.gyp:system_webview_shell_l ayout_test_apk',
252 '../android_webview/android_webview_shell.gyp:system_webview_shell_p age_cycler_apk',
253 '../chrome/android/chrome_apk.gyp:chrome_public_apk',
254 '../chrome/android/chrome_apk.gyp:chrome_public_test_apk',
255 '../chrome/android/chrome_apk.gyp:chrome_sync_shell_apk',
256 '../chrome/android/chrome_apk.gyp:chrome_sync_shell_test_apk',
257 '../chrome/chrome.gyp:chromedriver_webview_shell_apk',
258 '../chrome/chrome.gyp:chrome_junit_tests',
259 '../chrome/chrome.gyp:unit_tests_apk',
260 '../third_party/custom_tabs_client/custom_tabs_client.gyp:custom_tab s_client_example_apk',
261 ],
262 }],
263 ['OS!="android"', {
264 'dependencies': [
265 '../base/base.gyp:build_utf8_validator_tables#host',
266 '../chrome/chrome.gyp:chrome_app_unittests',
267 '../chrome/chrome.gyp:chromedriver',
268 '../chrome/chrome.gyp:chromedriver_tests',
269 '../chrome/chrome.gyp:chromedriver_unittests',
270 '../content/content_shell_and_tests.gyp:content_shell',
271 '../courgette/courgette.gyp:courgette',
272 '../courgette/courgette.gyp:courgette_fuzz',
273 '../courgette/courgette.gyp:courgette_minimal_tool',
274 '../courgette/courgette.gyp:courgette_unittests',
275 '../gin/gin.gyp:gin_unittests',
276 '../gpu/gles2_conform_support/gles2_conform_support.gyp:gles2_confor m_support', # TODO(GYP) crbug.com/471920
277 '../google_apis/gcm/gcm.gyp:gcm_unit_tests',
278 '../google_apis/gcm/gcm.gyp:mcs_probe',
279 '../google_apis/google_apis.gyp:google_apis_unittests',
280 '../jingle/jingle.gyp:jingle_unittests',
281 '../mojo/mojo.gyp:mojo',
282 '../mojo/mojo_edk_tests.gyp:mojo_system_unittests',
283 '../mojo/mojo_edk_tests.gyp:mojo_public_bindings_unittests',
284 '../mojo/mojo_edk_tests.gyp:mojo_public_system_perftests',
285 '../mojo/mojo_edk_tests.gyp:mojo_public_system_unittests',
286 '../net/net.gyp:crash_cache',
287 '../net/net.gyp:crl_set_dump',
288 '../net/net.gyp:dns_fuzz_stub',
289 '../net/net.gyp:gdig',
290 '../net/net.gyp:get_server_time',
291 '../net/net.gyp:hpack_example_generator',
292 '../net/net.gyp:hpack_fuzz_mutator',
293 '../net/net.gyp:hpack_fuzz_wrapper',
294 '../net/net.gyp:net_watcher', # TODO(GYP): This should be condition al on use_v8_in_net
295 '../net/net.gyp:run_testserver',
296 '../net/net.gyp:stress_cache',
297 '../net/net.gyp:tld_cleanup',
298 '../ppapi/ppapi_internal.gyp:ppapi_example_audio',
299 '../ppapi/ppapi_internal.gyp:ppapi_example_audio_input',
300 '../ppapi/ppapi_internal.gyp:ppapi_example_c_stub',
301 '../ppapi/ppapi_internal.gyp:ppapi_example_cc_stub',
302 '../ppapi/ppapi_internal.gyp:ppapi_example_compositor',
303 '../ppapi/ppapi_internal.gyp:ppapi_example_crxfs',
304 '../ppapi/ppapi_internal.gyp:ppapi_example_enumerate_devices',
305 '../ppapi/ppapi_internal.gyp:ppapi_example_file_chooser',
306 '../ppapi/ppapi_internal.gyp:ppapi_example_flash_topmost',
307 '../ppapi/ppapi_internal.gyp:ppapi_example_gamepad',
308 '../ppapi/ppapi_internal.gyp:ppapi_example_gles2',
309 '../ppapi/ppapi_internal.gyp:ppapi_example_gles2_spinning_cube',
310 '../ppapi/ppapi_internal.gyp:ppapi_example_graphics_2d',
311 '../ppapi/ppapi_internal.gyp:ppapi_example_ime',
312 '../ppapi/ppapi_internal.gyp:ppapi_example_input',
313 '../ppapi/ppapi_internal.gyp:ppapi_example_media_stream_audio',
314 '../ppapi/ppapi_internal.gyp:ppapi_example_media_stream_video',
315 '../ppapi/ppapi_internal.gyp:ppapi_example_mouse_cursor',
316 '../ppapi/ppapi_internal.gyp:ppapi_example_mouse_lock',
317 '../ppapi/ppapi_internal.gyp:ppapi_example_paint_manager',
318 '../ppapi/ppapi_internal.gyp:ppapi_example_post_message',
319 '../ppapi/ppapi_internal.gyp:ppapi_example_printing',
320 '../ppapi/ppapi_internal.gyp:ppapi_example_scaling',
321 '../ppapi/ppapi_internal.gyp:ppapi_example_scroll',
322 '../ppapi/ppapi_internal.gyp:ppapi_example_simple_font',
323 '../ppapi/ppapi_internal.gyp:ppapi_example_threading',
324 '../ppapi/ppapi_internal.gyp:ppapi_example_url_loader',
325 '../ppapi/ppapi_internal.gyp:ppapi_example_url_loader_file',
326 '../ppapi/ppapi_internal.gyp:ppapi_example_vc',
327 '../ppapi/ppapi_internal.gyp:ppapi_example_video_decode',
328 '../ppapi/ppapi_internal.gyp:ppapi_example_video_decode_dev',
329 '../ppapi/ppapi_internal.gyp:ppapi_example_video_effects',
330 '../ppapi/ppapi_internal.gyp:ppapi_example_video_encode',
331 '../ppapi/ppapi_internal.gyp:ppapi_tests',
332 '../ppapi/ppapi_internal.gyp:ppapi_perftests',
333 '../ppapi/ppapi_internal.gyp:ppapi_unittests',
334 '../components/sync.gyp:run_sync_testserver',
335 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalid ation_unittests',
336 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber_uni ttests',
337 '../tools/imagediff/image_diff.gyp:image_diff',
338 '../ui/compositor/compositor.gyp:compositor_unittests',
339 ],
340 }],
341 ['enable_app_list==1', {
342 'dependencies': [
343 '../ui/app_list/app_list.gyp:app_list_unittests',
344 ],
345 }],
346 ['OS!="android" and chromecast==0', {
347 'dependencies': [
348 '../chrome/chrome.gyp:browser_tests',
349 '../chrome/chrome.gyp:chrome',
350 '../chrome/chrome.gyp:interactive_ui_tests',
351 '../chrome/chrome.gyp:performance_browser_tests',
352 '../chrome/chrome.gyp:sync_integration_tests',
353 '../chrome/chrome.gyp:sync_performance_tests',
354 '../extensions/extensions_tests.gyp:extensions_browsertests',
355 '../extensions/extensions_tests.gyp:extensions_unittests',
356 '../gin/gin.gyp:gin_shell',
357 '../gpu/gles2_conform_support/gles2_conform_test.gyp:gles2_conform_t est', # TODO(GYP) crbug.com/471920
358 '../gpu/khronos_glcts_support/khronos_glcts_test.gyp:khronos_glcts_t est', # TODO(GYP) crbug.com/471903 to make this complete.
359 '../ipc/ipc.gyp:ipc_perftests',
360 '../mojo/mojo_base.gyp:mojo_common_unittests',
361 '../ppapi/tools/ppapi_tools.gyp:pepper_hash_for_uma',
362 '../skia/skia.gyp:filter_fuzz_stub',
363 '../skia/skia.gyp:image_operations_bench',
364 '../components/sync/tools/sync_tools.gyp:sync_client',
365 '../components/sync/tools/sync_tools.gyp:sync_listen_notifications',
366 '../third_party/codesighs/codesighs.gyp:codesighs',
367 '../third_party/codesighs/codesighs.gyp:maptsvdifftool',
368 '../third_party/pdfium/samples/samples.gyp:pdfium_diff',
369 '../third_party/pdfium/samples/samples.gyp:pdfium_test',
370 '../tools/battor_agent/battor_agent.gyp:battor_agent',
371 '../tools/battor_agent/battor_agent.gyp:battor_agent_unittests',
372 '../tools/gn/gn.gyp:gn',
373 '../tools/gn/gn.gyp:gn_unittests',
374 '../tools/perf/clear_system_cache/clear_system_cache.gyp:clear_syste m_cache',
375 '../ui/message_center/message_center.gyp:message_center_unittests',
376 '../ui/views/examples/examples.gyp:views_examples_with_content_exe',
377 ],
378 }],
379 ['media_use_ffmpeg==1 and OS!="android"', {
380 'dependencies': [
381 '../media/media.gyp:ffmpeg_regression_tests',
382 ],
383 }],
384 ['OS=="android" or OS=="linux"', {
385 'dependencies': [
386 '../net/net.gyp:disk_cache_memory_test',
387 ],
388 }],
389 ['chromeos==1', {
390 'dependencies': [
391 '../chromeos/chromeos.gyp:chromeos_unittests',
392 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos_unittests',
393 '../ui/arc/arc.gyp:ui_arc_unittests',
394 ]
395 }],
396 ['chromeos==1 or OS=="win" or OS=="mac"', {
397 'dependencies': [
398 '../rlz/rlz.gyp:rlz_id',
399 '../rlz/rlz.gyp:rlz_lib',
400 '../rlz/rlz.gyp:rlz_unittests',
401 ],
402 }],
403 ['OS=="linux" or OS=="android" or os_bsd==1', {
404 'dependencies': [
405 '../breakpad/breakpad.gyp:breakpad_unittests',
406 '../breakpad/breakpad.gyp:core-2-minidump',
407 '../breakpad/breakpad.gyp:dump_syms#host',
408 '../breakpad/breakpad.gyp:generate_test_dump',
409 '../breakpad/breakpad.gyp:minidump-2-core',
410 ],
411 }],
412 ['OS=="linux" or os_bsd==1', {
413 'dependencies': [
414 '../breakpad/breakpad.gyp:microdump_stackwalk',
415 '../breakpad/breakpad.gyp:minidump_dump',
416 '../breakpad/breakpad.gyp:minidump_stackwalk',
417 '../breakpad/breakpad.gyp:symupload',
418 '../third_party/codesighs/codesighs.gyp:nm2tsv',
419 ],
420 }],
421 ['OS=="linux"', {
422 'dependencies': [
423 '../dbus/dbus.gyp:dbus_test_server',
424 '../dbus/dbus.gyp:dbus_unittests',
425 '../media/cast/cast.gyp:cast_testing_tools',
426 '../media/cast/cast.gyp:tap_proxy',
427 '../net/net.gyp:disk_cache_memory_test',
428 '../net/net.gyp:epoll_quic_client',
429 '../net/net.gyp:epoll_quic_server',
430 '../net/net.gyp:hpack_example_generator',
431 '../net/net.gyp:hpack_fuzz_mutator',
432 '../net/net.gyp:hpack_fuzz_wrapper',
433 '../net/net.gyp:net_perftests',
434 '../net/net.gyp:quic_client',
435 '../net/net.gyp:quic_server',
436 '../sandbox/sandbox.gyp:chrome_sandbox',
437 '../sandbox/sandbox.gyp:sandbox_linux_unittests',
438 '../third_party/sqlite/sqlite.gyp:sqlite_shell',
439 ],
440 }],
441 ['OS=="mac"', {
442 'dependencies': [
443 '../breakpad/breakpad.gyp:crash_inspector',
444 '../breakpad/breakpad.gyp:dump_syms',
445 '../breakpad/breakpad.gyp:symupload',
446 '../third_party/apple_sample_code/apple_sample_code.gyp:apple_sample _code',
447 '../third_party/molokocacao/molokocacao.gyp:molokocacao',
448
449 # TODO(GYP): remove these when the corresponding root targets work.
450 #"//cc/blink",
451 #"//components/ui/zoom",
452 #"//content",
453 #"//content/test:test_support",
454 #"//device/battery",
455 #"//device/bluetooth",
456 #"//device/usb",
457 #"//device/vibration",
458 #"//media/blink",
459 #"//pdf",
460 #"//storage/browser",
461 #"//third_party/brotli",
462 #"//third_party/flac",
463 #"//third_party/hunspell",
464 #//third_party/iccjpeg",
465 #"//third_party/libphonenumber",
466 #"//third_party/ots",
467 #"//third_party/qcms",
468 #"//third_party/smhasher:murmurhash3",
469 #"//third_party/webrtc/system_wrappers",
470 #"//ui/native_theme",
471 #"//ui/snapshot",
472 #"//ui/surface",
473 ],
474 'dependencies!': [
475 #"//chrome", # TODO(GYP)
476 #"//chrome/test:browser_tests", # TODO(GYP)
477 #"//chrome/test:interactive_ui_tests", # TODO(GYP)
478 #"//chrome/test:sync_integration_tests", # TODO(GYP)
479 #"//chrome/test:unit_tests", # TODO(GYP)
480 #"//components:components_unittests", # TODO(GYP)
481 #"//extensions:extensions_browsertests", # TODO(GYP)
482 #"//extensions:extensions_unittests", # TODO(GYP)
483 #"//net:net_unittests", # TODO(GYP)
484 #"//third_party/usrsctp", # TODO(GYP)
485 #"//ui/app_list:app_list_unittests", # TODO(GYP)
486 #"//ui/gfx:gfx_unittests", # TODO(GYP)
487 ],
488 }],
489 ['OS=="win"', {
490 'dependencies': [
491 '../base/base.gyp:pe_image_test',
492 '../chrome/chrome.gyp:installer_util_unittests',
493 '../chrome/chrome.gyp:install_static_unittests',
494 '../chrome/chrome.gyp:setup',
495 '../chrome/chrome.gyp:setup_unittests',
496 '../chrome/installer/mini_installer.gyp:mini_installer',
497 '../chrome_elf/chrome_elf.gyp:chrome_elf_unittests',
498 '../chrome_elf/chrome_elf.gyp:dll_hash_main',
499 '../components/components.gyp:wifi_test',
500 '../net/net.gyp:quic_client',
501 '../net/net.gyp:quic_server',
502 '../rlz/rlz.gyp:rlz',
503 '../sandbox/sandbox.gyp:pocdll',
504 '../sandbox/sandbox.gyp:sandbox_poc',
505 '../sandbox/sandbox.gyp:sbox_integration_tests',
506 '../sandbox/sandbox.gyp:sbox_unittests',
507 '../sandbox/sandbox.gyp:sbox_validation_tests',
508 '../testing/gtest.gyp:gtest_main',
509 '../third_party/codesighs/codesighs.gyp:msdump2symdb',
510 '../third_party/codesighs/codesighs.gyp:msmap2tsv',
511 '../third_party/pdfium/samples/samples.gyp:pdfium_diff',
512 ],
513 'conditions': [
514 ['component!="shared_library" or target_arch!="ia32"', {
515 'dependencies': [
516 '../chrome/installer/mini_installer.gyp:next_version_mini_instal ler',
517 ],
518 }],
519 ],
520 }],
521 ['chromecast==1', {
522 'dependencies': [
523 '../chromecast/chromecast.gyp:cast_shell',
524 ],
525 }],
526 ['use_openh264==1', {
527 'dependencies': [
528 '../third_party/openh264/openh264.gyp:openh264_common',
529 '../third_party/openh264/openh264.gyp:openh264_processing',
530 '../third_party/openh264/openh264.gyp:openh264_encoder',
531 ],
532 }],
533 ],
534 },
535 {
536 'target_name': 'gyp_remaining',
537 'type': 'none',
538 'conditions': [
539 ['test_isolation_mode!="noop"', {
540 'dependencies': [
541 '../base/base.gyp:base_unittests_run',
542 '../cc/cc_tests.gyp:cc_unittests_run',
543 '../chrome/chrome.gyp:browser_tests_run',
544 '../chrome/chrome.gyp:chrome_app_unittests_run',
545 '../chrome/chrome.gyp:chrome_run',
546 '../chrome/chrome.gyp:interactive_ui_tests_run',
547 '../chrome/chrome.gyp:sync_integration_tests_run',
548 '../chrome/chrome.gyp:unit_tests_run',
549 '../device/device_tests.gyp:device_unittests_run',
550 '../components/components_tests.gyp:components_browsertests_run',
551 '../components/components_tests.gyp:components_unittests_run',
552 '../content/content_shell_and_tests.gyp:content_browsertests_run',
553 '../content/content_shell_and_tests.gyp:content_unittests_run',
554 '../courgette/courgette.gyp:courgette_unittests_run',
555 '../crypto/crypto.gyp:crypto_unittests_run',
556 '../extensions/extensions_tests.gyp:extensions_browsertests_run',
557 '../extensions/extensions_tests.gyp:extensions_unittests_run',
558 '../google_apis/gcm/gcm.gyp:gcm_unit_tests_run',
559 '../google_apis/google_apis.gyp:google_apis_unittests_run',
560 '../gpu/gpu.gyp:gpu_unittests_run',
561 '../media/blink/media_blink.gyp:media_blink_unittests_run',
562 '../media/cast/cast.gyp:cast_unittests_run',
563 '../media/media.gyp:media_unittests_run',
564 '../media/midi/midi.gyp:midi_unittests_run',
565 '../mojo/mojo_edk_tests.gyp:mojo_public_bindings_unittests_run',
566 '../mojo/mojo_edk_tests.gyp:mojo_public_system_unittests_run',
567 '../net/net.gyp:net_unittests_run',
568 '../ppapi/ppapi_internal.gyp:ppapi_unittests_run',
569 '../printing/printing.gyp:printing_unittests_run',
570 '../remoting/remoting.gyp:remoting_unittests_run',
571 '../skia/skia_tests.gyp:skia_unittests_run',
572 '../sql/sql.gyp:sql_unittests_run',
573 '../third_party/WebKit/Source/platform/blink_platform_tests.gyp:blin k_heap_unittests_run',
574 '../third_party/WebKit/Source/platform/blink_platform_tests.gyp:blin k_platform_unittests_run',
575 '../third_party/WebKit/Source/web/web_tests.gyp:webkit_unit_tests_ru n',
576 '../third_party/WebKit/Source/wtf/wtf_tests.gyp:wtf_unittests_run',
577 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalid ation_unittests_run',
578 '../tools/battor_agent/battor_agent.gyp:battor_agent_unittests_run',
579 '../tools/gn/gn.gyp:gn_unittests_run',
580 '../ui/accessibility/accessibility.gyp:accessibility_unittests_run',
581 '../ui/compositor/compositor.gyp:compositor_unittests_run',
582 '../ui/display/display.gyp:display_unittests_run',
583 '../ui/events/events_unittests.gyp:events_unittests_run',
584 '../ui/gfx/gfx_tests.gyp:gfx_unittests_run',
585 '../ui/message_center/message_center.gyp:message_center_unittests_ru n',
586 '../url/url.gyp:url_unittests_run',
587 ],
588 'conditions': [
589 ['OS=="linux"', {
590 'dependencies': [
591 '../sandbox/sandbox.gyp:sandbox_linux_unittests_run',
592 ],
593 }],
594 ['OS=="mac"', {
595 'dependencies': [
596 '../sandbox/sandbox.gyp:sandbox_mac_unittests_run',
597 ],
598 }],
599 ['OS=="win"', {
600 'dependencies': [
601 '../chrome/chrome.gyp:installer_util_unittests_run',
602 '../chrome/chrome.gyp:setup_unittests_run',
603 '../chrome_elf/chrome_elf.gyp:chrome_elf_unittests_run',
604 '../sandbox/sandbox.gyp:sbox_integration_tests_run',
605 '../sandbox/sandbox.gyp:sbox_unittests_run',
606 '../sandbox/sandbox.gyp:sbox_validation_tests_run',
607 ],
608 }],
609 ['OS!="android"', {
610 'dependencies': [
611 '../ipc/ipc.gyp:ipc_tests_run',
612 '../ui/base/ui_base_tests.gyp:ui_base_unittests_run',
613 '../ui/gl/gl_tests.gyp:gl_unittests_run',
614 '../ui/touch_selection/ui_touch_selection.gyp:ui_touch_selection _unittests_run',
615 ],
616 }],
617 ['OS!="android" and OS!="ios" and chromecast==0', {
618 'dependencies': [
619 '../mojo/mojo_edk_tests.gyp:mojo_js_unittests_run',
620 '../mojo/mojo_edk_tests.gyp:mojo_js_integration_tests_run',
621 '../mojo/mojo_edk_tests.gyp:mojo_system_unittests_run',
622 '../services/shell/shell.gyp:mojo_shell_unittests_run',
623 ],
624 }],
625 ['use_ash==1', {
626 'dependencies': [
627 '../ash/ash.gyp:ash_unittests_run',
628 ],
629 }],
630 ['enable_app_list==1', {
631 'dependencies': [
632 '../ui/app_list/app_list.gyp:app_list_unittests_run',
633 ],
634 }],
635 ['use_aura==1', {
636 'dependencies': [
637 '../ui/app_list/presenter/app_list_presenter.gyp:app_list_presen ter_unittests_run',
638 ],
639 }],
640 ['use_aura==1', {
641 'dependencies': [
642 '../ui/aura/aura.gyp:aura_unittests_run',
643 '../ui/wm/wm.gyp:wm_unittests_run',
644 ],
645 }],
646 ['enable_webrtc==1 or OS!="android"', {
647 'dependencies': [
648 '../jingle/jingle.gyp:jingle_unittests_run',
649 ],
650 }],
651 ['disable_nacl==0 and disable_nacl_untrusted==0', {
652 'dependencies': [
653 '../components/nacl.gyp:nacl_loader_unittests_run',
654 ]
655 }],
656 ['toolkit_views==1', {
657 'dependencies': [
658 '../ui/views/views.gyp:views_unittests_run',
659 ],
660 }],
661 ],
662 }],
663 ['chromeos==1', {
664 'dependencies': [
665 '../media/media.gyp:jpeg_decode_accelerator_unittest',
666 ],
667 }],
668 ['chromeos==1 or OS=="mac"', {
669 'dependencies': [
670 '../media/media.gyp:video_encode_accelerator_unittest',
671 ],
672 }],
673 ['chromeos==1 and target_arch != "arm"', {
674 'dependencies': [
675 '../media/media.gyp:vaapi_jpeg_decoder_unittest',
676 ],
677 }],
678 ['chromeos==1 or OS=="win" or OS=="android"', {
679 'dependencies': [
680 '../media/media.gyp:video_decode_accelerator_unittest',
681 ],
682 }],
683 ['OS=="linux" or OS=="win"', {
684 'dependencies': [
685 # TODO(GYP): Figure out which of these run on android/mac/win/ios/et c.
686 '../remoting/remoting.gyp:ar_sample_test_driver',
687
688 # TODO(GYP): in progress - see tfarina.
689 '../third_party/webrtc/tools/tools.gyp:frame_analyzer',
690 '../third_party/webrtc/tools/tools.gyp:rgba_to_i420_converter',
691 ],
692 }],
693 ['OS=="win"', {
694 'dependencies': [
695 # TODO(GYP): All of these targets still need to be converted.
696 '../chrome/chrome.gyp:gcapi_dll',
697 '../chrome/chrome.gyp:gcapi_test',
698 '../chrome/chrome.gyp:pack_policy_templates',
699
700 # This is a safe browsing utility only necessary for developers.
701 # For now, we can skip this and anybody that needs this can add it
702 # to the GN build.
703 '../chrome/chrome.gyp:sb_sigutil',
704
705 '../components/test_runner/test_runner.gyp:layout_test_helper',
706 '../content/content_shell_and_tests.gyp:content_shell_crash_service' ,
707 '../gpu/gpu.gyp:angle_end2end_tests',
708 '../gpu/gpu.gyp:angle_perftests',
709 '../ppapi/ppapi_internal.gyp:ppapi_perftests',
710 '../remoting/remoting.gyp:ar_sample_test_driver',
711 '../remoting/remoting.gyp:remoting_breakpad_tester',
712 '../remoting/remoting.gyp:remoting_console',
713 '../remoting/remoting.gyp:remoting_desktop',
714 '../tools/win/static_initializers/static_initializers.gyp:static_ini tializers',
715 ],
716 }],
717 ['OS=="win" and target_arch=="ia32"', {
718 'dependencies': [
719 # TODO(GYP): All of these targets need to be ported over.
720 '../base/base.gyp:base_win64',
721 '../base/base.gyp:base_i18n_nacl_win64',
722 '../chrome/chrome.gyp:launcher_support64',
723 '../components/components.gyp:breakpad_win64',
724 '../courgette/courgette.gyp:courgette64',
725 '../crypto/crypto.gyp:crypto_nacl_win64',
726 '../ipc/ipc.gyp:ipc_win64',
727 '../sandbox/sandbox.gyp:sandbox_win64',
728 ],
729 }],
730 ['OS=="win" and target_arch=="ia32" and configuration_policy==1', {
731 'dependencies': [
732 # TODO(GYP): All of these targets need to be ported over.
733 '../components/components.gyp:policy_win64',
734 ]
735 }],
736 ['OS=="android"', {
737 'dependencies': [
738 '../components/components.gyp:cronet_perf_test_apk',
739 '../url/url.gyp:url_unittests',
740 ],
741 }],
742 ['OS=="android" and chromecast==0', {
743 'dependencies': [
744 '../android_webview/android_webview.gyp:android_webview_apk',
745 '../android_webview/android_webview.gyp:android_webview_test_apk',
746 '../android_webview/android_webview.gyp:android_webview_unittests',
747 '../android_webview/android_webview.gyp:android_webview_unittests_ap k',
748 ],
749 }],
750 ['OS=="android" and chromecast==0 and use_webview_internal_framework==0' , {
751 'dependencies': [
752 '../android_webview/android_webview.gyp:system_webview_apk',
753 ],
754 }],
755 ['OS=="android" and target_arch != "x64"', {
756 'dependencies': [
757 '../third_party/android_platform/relocation_packer.gyp:android_reloc ation_packer_unittests#host'
758 ],
759 }],
760 ],
761 },
762 ]
763 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | build/gyp_chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698