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

Side by Side Diff: build/all.gyp

Issue 901273003: roll up of misc. gn work (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 | « base/BUILD.gn ('k') | build/config/BUILDCONFIG.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 # A hook that can be overridden in other repositories to add additional 7 # A hook that can be overridden in other repositories to add additional
8 # compilation targets to 'All'. 8 # compilation targets to 'All'.
9 'app_targets%': [], 9 'app_targets%': [],
10 # For Android-specific targets. 10 # For Android-specific targets.
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 ], 269 ],
270 }], 270 }],
271 ['envoy==1', { 271 ['envoy==1', {
272 'dependencies': [ 272 'dependencies': [
273 '../envoy/envoy.gyp:*', 273 '../envoy/envoy.gyp:*',
274 ], 274 ],
275 }], 275 }],
276 ], 276 ],
277 }, # target_name: All 277 }, # target_name: All
278 { 278 {
279 'target_name': 'gyp_all',
280 'type': 'none',
281 'dependencies': [
282 ':gn_all',
283
284 '../chrome/chrome.gyp:chrome_app_unittests',
285 '../chrome/chrome.gyp:chromedriver_unittests',
286 '../chrome/chrome.gyp:performance_browser_tests',
287 '../extensions/shell/app_shell.gyp:app_shell_unittests',
288 '../net/net.gyp:hpack_example_generator',
289 '../net/net.gyp:hpack_fuzz_wrapper',
290 '../ppapi/ppapi_internal.gyp:ppapi_perftests',
291 '../ppapi/ppapi_internal.gyp:ppapi_unittests',
292 '../remoting/remoting.gyp:remoting_host',
293 '../remoting/remoting.gyp:remoting_unittests',
294 '../third_party/codesighs/codesighs.gyp:codesighs',
295 '../third_party/codesighs/codesighs.gyp:nm2tsv',
296 '../tools/telemetry/telemetry.gyp:bitmaptools',
297 ],
298 'conditions': [
299 ['OS=="linux"', {
300 'dependencies': [
301 '../sandbox/sandbox.gyp:sandbox_linux_jni_unittests',
302 ],
303 }],
304 ],
305 },
306 {
307 'target_name': 'gn_all',
308 'type': 'none',
309
310 'dependencies': [
311 '../ash/ash.gyp:ash_shell',
312 '../ash/ash.gyp:ash_shell_unittests',
313 '../ash/ash.gyp:ash_unittests',
314 '../base/base.gyp:base_unittests',
315 '../base/base.gyp:base_i18n_perftests',
316 '../breakpad/breakpad.gyp:breakpad_unittests',
317 '../breakpad/breakpad.gyp:dump_syms',
318 '../breakpad/breakpad.gyp:generate_test_dump',
319 '../breakpad/breakpad.gyp:microdump_stackwalk',
320 '../breakpad/breakpad.gyp:minidump_dump',
321 '../breakpad/breakpad.gyp:minidump_stackwalk',
322 '../breakpad/breakpad.gyp:symupload',
323 '../cc/cc_tests.gyp:cc_perftests',
324 '../cc/cc_tests.gyp:cc_unittests',
325 '../cc/blink/cc_blink_tests.gyp:cc_blink_unittests',
326 '../chrome/chrome.gyp:chrome',
327 '../chrome/chrome.gyp:browser_tests',
328 '../chrome/chrome.gyp:interactive_ui_tests',
329 '../chrome/chrome.gyp:perf_tests',
330 '../chrome/chrome.gyp:sync_integration_tests',
331 '../chrome/chrome.gyp:sync_performance_tests',
332 '../chrome/chrome.gyp:unit_tests',
333 '../chrome/tools/profile_reset/jtl_compiler.gyp:jtl_compiler',
334 '../components/components_tests.gyp:components_browsertests',
335 '../components/components_tests.gyp:components_unittests',
336 '../components/nacl.gyp:nacl_loader_unittests',
337 '../content/content_shell_and_tests.gyp:content_shell',
338 '../content/content_shell_and_tests.gyp:content_browsertests',
339 '../content/content_shell_and_tests.gyp:content_perftests',
340 '../content/content_shell_and_tests.gyp:content_unittests',
341 '../courgette/courgette.gyp:courgette_minimal_tool',
342 '../courgette/courgette.gyp:courgette_unittests',
343 '../crypto/crypto.gyp:crypto_unittests',
344 '../device/device_tests.gyp:device_unittests',
345 '../extensions/extensions_tests.gyp:extensions_browsertests',
346 '../extensions/extensions_tests.gyp:extensions_unittests',
347 '../gin/gin.gyp:gin_unittests',
348 '../google_apis/google_apis.gyp:google_apis_unittests',
349 '../google_apis/gcm/gcm.gyp:gcm_unit_tests',
350 '../gpu/gpu.gyp:angle_unittests',
351 '../gpu/gpu.gyp:gpu_unittests',
352 '../ipc/ipc.gyp:ipc_perftests',
353 '../ipc/ipc.gyp:ipc_tests',
354 '../ipc/mojo/ipc_mojo.gyp:ipc_mojo_unittests',
355 '../jingle/jingle.gyp:jingle_unittests',
356 '../media/media.gyp:ffmpeg_regression_tests',
357 '../media/media.gyp:media_perftests',
358 '../media/media.gyp:media_unittests',
359 '../media/media.gyp:player_x11',
360 '../media/cast/cast.gyp:cast_unittests',
361 '../mojo/mojo_base.gyp:mojo_common_unittests',
362 '../mojo/mojo_nacl.gyp:monacl_shell',
363 '../net/net.gyp:dump_cache',
364 '../net/net.gyp:flip_in_mem_edsm_server_unittests',
365 '../net/net.gyp:get_server_time',
366 '../net/net.gyp:net_unittests',
367 '../ppapi/ppapi_internal.gyp:ppapi_tests',
368 '../printing/printing.gyp:printing_unittests',
369 '../sql/sql.gyp:sql_unittests',
370 '../skia/skia_tests.gyp:skia_unittests',
371 '../sync/sync.gyp:sync_unit_tests',
372
373 # TODO(GYP): the Blink test targets should be public, but
374 # currently aren't. all_blink puls them in, though
375 # "//third_party/WebKit/Source/platform:heap_unittests",
376 # "//third_party/WebKit/Source/platform:platform_unittests",
377 # "//third_party/WebKit/Source/wtf:wtf_unittests",
378 '../third_party/WebKit/public/all.gyp:all_blink',
379
380 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_unittests',
381
382 # TODO(GYP): Needed only w/ cld_version==1. What configs set that?
383 '../third_party/cld/cld.gyp:cld',
384
385 # TODO(GYP): This is needed only w/ use_system_fontconfig==0. What confi gs set that?
386 '../third_party/fontconfig/fontconfig.gyp:fontconfig',
387
388 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput_unit tests',
389 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber_unittes ts',
390 '../third_party/mojo/mojo_edk_tests.gyp:mojo_system_unittests',
391 '../third_party/mojo/mojo_edk_tests.gyp:mojo_public_bindings_unittests',
392 '../third_party/mojo/mojo_edk_tests.gyp:mojo_public_environment_unittest s',
393 '../third_party/mojo/mojo_edk_tests.gyp:mojo_public_system_unittests',
394 '../third_party/mojo/mojo_edk_tests.gyp:mojo_public_utility_unittests',
395 '../third_party/pdfium/samples/samples.gyp:pdfium_test',
396
397 # TODO(GYP): Verify that this is no longer needed.
398 '../third_party/smhasher/smhasher.gyp:pmurhash',
399
400 '../third_party/sqlite/sqlite.gyp:sqlite_shell',
401 '../tools/gn/gn.gyp:gn',
402 '../tools/gn/gn.gyp:generate_test_gn_data',
403 '../tools/gn/gn.gyp:gn_unittests',
404 '../tools/imagediff/image_diff.gyp:image_diff',
405 '../ui/accessibility/accessibility.gyp:accessibility_unittests',
406 '../ui/app_list/app_list.gyp:app_list_unittests',
407 '../ui/aura/aura.gyp:aura_bench',
408 '../ui/aura/aura.gyp:aura_demo',
409 '../ui/aura/aura.gyp:aura_unittests',
410 '../ui/base/ui_base_tests.gyp:ui_base_unittests',
411 '../ui/compositor/compositor.gyp:compositor_unittests',
412 '../ui/display/display.gyp:display_unittests',
413 '../ui/events/events.gyp:events_unittests',
414 '../ui/gfx/gfx_tests.gyp:gfx_unittests',
415 '../ui/keyboard/keyboard.gyp:keyboard_unittests',
416 '../ui/snapshot/snapshot.gyp:snapshot_unittests',
417 '../ui/touch_selection/ui_touch_selection.gyp:ui_touch_selection_unittes ts',
418 '../ui/views/views.gyp:views_unittests',
419 '../ui/wm/wm.gyp:wm_unittests',
420 '../url/url.gyp:url_unittests',
421 ],
422 'conditions': [
423 ['OS=="android"', {
424 'dependencies': [
425 '../chrome/chrome.gyp:chrome_shell_apk',
426 '../content/content_shell_and_tests.gyp:content_shell_apk',
427 ],
428 'dependencies!': [
429 '../url/url.gyp:url_unittests',
430 ],
431 }],
432 ['OS=="linux"', {
433 'dependencies': [
434 '../dbus/dbus.gyp:dbus_unittests',
435 '../sandbox/sandbox.gyp:chrome_sandbox',
436 '../sandbox/sandbox.gyp:sandbox_linux_unittests',
437 ],
438 }],
439 ],
440 },
441 {
279 'target_name': 'All_syzygy', 442 'target_name': 'All_syzygy',
280 'type': 'none', 443 'type': 'none',
281 'conditions': [ 444 'conditions': [
282 ['OS=="win" and fastbuild==0 and target_arch=="ia32" and ' 445 ['OS=="win" and fastbuild==0 and target_arch=="ia32" and '
283 '(syzyasan==1 or syzygy_optimize==1)', { 446 '(syzyasan==1 or syzygy_optimize==1)', {
284 'dependencies': [ 447 'dependencies': [
285 '../chrome/installer/mini_installer_syzygy.gyp:*', 448 '../chrome/installer/mini_installer_syzygy.gyp:*',
286 ], 449 ],
287 }], 450 }],
288 ], 451 ],
(...skipping 1092 matching lines...) Expand 10 before | Expand all | Expand 10 after
1381 'dependencies': [ 1544 'dependencies': [
1382 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', 1545 '../ui/views/examples/examples.gyp:views_examples_with_content_exe',
1383 '../ui/views/views.gyp:views', 1546 '../ui/views/views.gyp:views',
1384 '../ui/views/views.gyp:views_unittests', 1547 '../ui/views/views.gyp:views_unittests',
1385 ], 1548 ],
1386 }, # target_name: macviews_builder 1549 }, # target_name: macviews_builder
1387 ], # targets 1550 ], # targets
1388 }], # os=='mac' and toolkit_views==1 1551 }], # os=='mac' and toolkit_views==1
1389 ], # conditions 1552 ], # conditions
1390 } 1553 }
OLDNEW
« no previous file with comments | « base/BUILD.gn ('k') | build/config/BUILDCONFIG.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698