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

Side by Side Diff: BUILD.gn

Issue 1288263002: GN: app_list_unittests links on Mac. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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 | « no previous file | no next file » | 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) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 # This is the root build file for GN. GN will start processing by loading this 5 # This is the root build file for GN. GN will start processing by loading this
6 # file, and recursively load all dependencies until all dependencies are either 6 # file, and recursively load all dependencies until all dependencies are either
7 # resolved or known not to exist (which will cause the build to fail). So if 7 # resolved or known not to exist (which will cause the build to fail). So if
8 # you add a new build file, there must be some path of dependencies from this 8 # you add a new build file, there must be some path of dependencies from this
9 # file to your new one or GN won't know about it. 9 # file to your new one or GN won't know about it.
10 10
(...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after
526 "//storage/browser", 526 "//storage/browser",
527 "//third_party/brotli", 527 "//third_party/brotli",
528 "//third_party/flac", 528 "//third_party/flac",
529 "//third_party/hunspell", 529 "//third_party/hunspell",
530 "//third_party/iccjpeg", 530 "//third_party/iccjpeg",
531 "//third_party/libphonenumber", 531 "//third_party/libphonenumber",
532 "//third_party/ots", 532 "//third_party/ots",
533 "//third_party/qcms", 533 "//third_party/qcms",
534 "//third_party/smhasher:murmurhash3", 534 "//third_party/smhasher:murmurhash3",
535 "//third_party/webrtc/system_wrappers", 535 "//third_party/webrtc/system_wrappers",
536 "//ui/app_list:app_list_unittests",
536 "//ui/gfx:gfx_unittests", 537 "//ui/gfx:gfx_unittests",
537 "//ui/native_theme", 538 "//ui/native_theme",
538 "//ui/snapshot", 539 "//ui/snapshot",
539 "//ui/surface", 540 "//ui/surface",
540 ] 541 ]
541 542
542 # TODO(dpranke): These are as-yet untriaged but need at least the above. 543 # TODO(dpranke): These are as-yet untriaged but need at least the above.
543 deps -= [ 544 deps -= [
544 "//chrome", # TODO(GYP) 545 "//chrome", # TODO(GYP)
545 "//chrome/test:browser_tests", # TODO(GYP) 546 "//chrome/test:browser_tests", # TODO(GYP)
546 "//chrome/test:interactive_ui_tests", # TODO(GYP) 547 "//chrome/test:interactive_ui_tests", # TODO(GYP)
547 "//chrome/test:sync_integration_tests", # TODO(GYP) 548 "//chrome/test:sync_integration_tests", # TODO(GYP)
548 "//chrome/test:unit_tests", # TODO(GYP) 549 "//chrome/test:unit_tests", # TODO(GYP)
549 "//components:components_browsertests", # TODO(GYP) 550 "//components:components_browsertests", # TODO(GYP)
550 "//components:components_unittests", # TODO(GYP) 551 "//components:components_unittests", # TODO(GYP)
551 "//content/test:content_browsertests", # TODO(GYP) 552 "//content/test:content_browsertests", # TODO(GYP)
552 "//content/test:content_perftests", # TODO(GYP) 553 "//content/test:content_perftests", # TODO(GYP)
553 "//device:device_unittests", # TODO(GYP) 554 "//device:device_unittests", # TODO(GYP)
554 "//extensions:extensions_browsertests", # TODO(GYP) 555 "//extensions:extensions_browsertests", # TODO(GYP)
555 "//extensions:extensions_unittests", # TODO(GYP) 556 "//extensions:extensions_unittests", # TODO(GYP)
556 "//mojo", # TODO(GYP) 557 "//mojo", # TODO(GYP)
557 "//mojo/application/public/cpp", # TODO(GYP) 558 "//mojo/application/public/cpp", # TODO(GYP)
558 559
559 # TODO(GYP): Re-enable this as soon as we can link Blink binaries on mac. 560 # TODO(GYP): Re-enable this as soon as we can link Blink binaries on mac.
560 "//third_party/WebKit/Source/platform:heap_unittests", 561 "//third_party/WebKit/Source/platform:heap_unittests",
561 "//third_party/WebKit/Source/platform:platform_unittests", 562 "//third_party/WebKit/Source/platform:platform_unittests",
562 "//third_party/WebKit/Source/web:webkit_unit_tests", 563 "//third_party/WebKit/Source/web:webkit_unit_tests",
563 "//ui/app_list:app_list_unittests", # TODO(GYP)
564 ] 564 ]
565 } 565 }
566 566
567 if (is_win) { 567 if (is_win) {
568 deps += [ 568 deps += [
569 "//base:pe_image_test", 569 "//base:pe_image_test",
570 "//chrome/installer/setup:setup_unittests", 570 "//chrome/installer/setup:setup_unittests",
571 "//chrome_elf:chrome_elf_unittests", 571 "//chrome_elf:chrome_elf_unittests",
572 "//chrome_elf:dll_hash_main", 572 "//chrome_elf:dll_hash_main",
573 "//components/crash/tools:crash_service", 573 "//components/crash/tools:crash_service",
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after
930 "//ui/views:views_unittests", # TooltipControllerTest failures 930 "//ui/views:views_unittests", # TooltipControllerTest failures
931 "//ui/wm:wm_unittests", # PASSES 4/21/2015 931 "//ui/wm:wm_unittests", # PASSES 4/21/2015
932 "//url:url_unittests", # PASSES 4/17/2015 932 "//url:url_unittests", # PASSES 4/17/2015
933 933
934 # TODO(GYP) nacl_integration 934 # TODO(GYP) nacl_integration
935 # TODO(GYP) telemetry_perf_unittests 935 # TODO(GYP) telemetry_perf_unittests
936 # TODO(GYP) telemetry_unittests 936 # TODO(GYP) telemetry_unittests
937 ] 937 ]
938 } 938 }
939 } 939 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698