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

Side by Side Diff: BUILD.gn

Issue 1212163010: GN support for setup_unittests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@iwt
Patch Set: both_gn_and_gyp Created 5 years, 5 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 | build/gn_migration.gypi » ('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) 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 537 matching lines...) Expand 10 before | Expand all | Expand 10 after
548 "//third_party/WebKit/Source/platform:platform_unittests", 548 "//third_party/WebKit/Source/platform:platform_unittests",
549 "//third_party/WebKit/Source/web:webkit_unit_tests", 549 "//third_party/WebKit/Source/web:webkit_unit_tests",
550 "//ui/app_list:app_list_unittests", # TODO(GYP) 550 "//ui/app_list:app_list_unittests", # TODO(GYP)
551 "//ui/gfx:gfx_unittests", # TODO(GYP) 551 "//ui/gfx:gfx_unittests", # TODO(GYP)
552 ] 552 ]
553 } 553 }
554 554
555 if (is_win) { 555 if (is_win) {
556 deps += [ 556 deps += [
557 "//base:pe_image_test", 557 "//base:pe_image_test",
558 "//chrome/installer/setup:setup_unittests",
558 "//chrome_elf:chrome_elf_unittests", 559 "//chrome_elf:chrome_elf_unittests",
559 "//chrome_elf:dll_hash_main", 560 "//chrome_elf:dll_hash_main",
560 "//components/crash/tools:crash_service", 561 "//components/crash/tools:crash_service",
561 "//components/wifi:wifi_test", 562 "//components/wifi:wifi_test",
562 "//net:quic_client", 563 "//net:quic_client",
563 "//net:quic_server", 564 "//net:quic_server",
564 "//sandbox/win:pocdll", 565 "//sandbox/win:pocdll",
565 "//sandbox/win:sandbox_poc", 566 "//sandbox/win:sandbox_poc",
566 "//sandbox/win:sbox_integration_tests", 567 "//sandbox/win:sbox_integration_tests",
567 "//sandbox/win:sbox_unittests", 568 "//sandbox/win:sbox_unittests",
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
845 } 846 }
846 } else if (is_win) { 847 } else if (is_win) {
847 group("windows_default_tests") { 848 group("windows_default_tests") {
848 testonly = true 849 testonly = true
849 deps = [ 850 deps = [
850 "//ash:ash_unittests", # FAILS 4/20/2015 851 "//ash:ash_unittests", # FAILS 4/20/2015
851 "//base:base_unittests", # PASSES 4/20/2015 852 "//base:base_unittests", # PASSES 4/20/2015
852 "//cc:cc_unittests", # PASSES 4/17/2015 853 "//cc:cc_unittests", # PASSES 4/17/2015
853 "//chrome_elf:chrome_elf_unittests", # FAILS 4/20/2015 854 "//chrome_elf:chrome_elf_unittests", # FAILS 4/20/2015
854 "//chrome/installer/util:installer_util_unittests", 855 "//chrome/installer/util:installer_util_unittests",
856 "//chrome/installer/setup:setup_unittests",
855 "//chrome/test:browser_tests", 857 "//chrome/test:browser_tests",
856 "//chrome/test:interactive_ui_tests", 858 "//chrome/test:interactive_ui_tests",
857 "//chrome/test:sync_integration_tests", # Note: need to turn off incremen tal linking for debug. 859 "//chrome/test:sync_integration_tests", # Note: need to turn off incremen tal linking for debug.
858 "//chrome/test:unit_tests", 860 "//chrome/test:unit_tests",
859 "//chrome/test/chromedriver:chromedriver_unittests", # PASSES 4/20/2015 861 "//chrome/test/chromedriver:chromedriver_unittests", # PASSES 4/20/2015
860 "//components:components_browsertests", # PASSES 4/24/2015 862 "//components:components_browsertests", # PASSES 4/24/2015
861 "//components:components_unittests", # PASSES 4/17/2015 863 "//components:components_unittests", # PASSES 4/17/2015
862 "//courgette:courgette_unittests", # PASSES 4/20/2015 864 "//courgette:courgette_unittests", # PASSES 4/20/2015
863 "//content/test:content_browsertests", 865 "//content/test:content_browsertests",
864 "//content/test:content_unittests", # PASSES 4/17/2015 866 "//content/test:content_unittests", # PASSES 4/17/2015
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
906 "//ui/views:views_unittests", # TooltipControllerTest failures 908 "//ui/views:views_unittests", # TooltipControllerTest failures
907 "//ui/wm:wm_unittests", # PASSES 4/21/2015 909 "//ui/wm:wm_unittests", # PASSES 4/21/2015
908 "//url:url_unittests", # PASSES 4/17/2015 910 "//url:url_unittests", # PASSES 4/17/2015
909 911
910 # TODO(GYP) nacl_integration 912 # TODO(GYP) nacl_integration
911 # TODO(GYP) telemetry_perf_unittests 913 # TODO(GYP) telemetry_perf_unittests
912 # TODO(GYP) telemetry_unittests 914 # TODO(GYP) telemetry_unittests
913 ] 915 ]
914 } 916 }
915 } 917 }
OLDNEW
« no previous file with comments | « no previous file | build/gn_migration.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698