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

Side by Side Diff: BUILD.gn

Issue 1101323003: Work on Windows GN tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 | chrome/app_installer/BUILD.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) 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 748 matching lines...) Expand 10 before | Expand all | Expand 10 after
759 } 759 }
760 } 760 }
761 } else if (is_win) { 761 } else if (is_win) {
762 group("windows_default_tests") { 762 group("windows_default_tests") {
763 testonly = true 763 testonly = true
764 deps = [ 764 deps = [
765 "//ash:ash_unittests", # FAILS 4/20/2015 765 "//ash:ash_unittests", # FAILS 4/20/2015
766 "//base:base_unittests", # PASSES 4/20/2015 766 "//base:base_unittests", # PASSES 4/20/2015
767 "//cc:cc_unittests", # PASSES 4/17/2015 767 "//cc:cc_unittests", # PASSES 4/17/2015
768 "//chrome_elf:chrome_elf_unittests", # FAILS 4/20/2015 768 "//chrome_elf:chrome_elf_unittests", # FAILS 4/20/2015
769 "//chrome/app_installer:app_installer_unittests",
769 "//chrome/test:browser_tests", 770 "//chrome/test:browser_tests",
770 "//chrome/test:interactive_ui_tests", 771 "//chrome/test:interactive_ui_tests",
771 "//chrome/test:sync_integration_tests", # Note: need to turn off incremen tal linking for debug. 772 "//chrome/test:sync_integration_tests", # Note: need to turn off incremen tal linking for debug.
772 "//chrome/test:unit_tests", 773 "//chrome/test:unit_tests",
773 "//chrome/test/chromedriver:chromedriver_unittests", # PASSES 4/20/2015 774 "//chrome/test/chromedriver:chromedriver_unittests", # PASSES 4/20/2015
774 "//components:components_browsertests", 775 "//components:components_browsertests",
775 "//components:components_unittests", # PASSES 4/17/2015 776 "//components:components_unittests", # PASSES 4/17/2015
776 "//courgette:courgette_unittests", # PASSES 4/20/2015 777 "//courgette:courgette_unittests", # PASSES 4/20/2015
777 "//content/test:content_browsertests", 778 "//content/test:content_browsertests",
778 "//content/test:content_unittests", # PASSES 4/17/2015 779 "//content/test:content_unittests", # PASSES 4/17/2015
(...skipping 30 matching lines...) Expand all
809 "//ui/accessibility:accessibility_unittests", # PASSES 4/20/2015 810 "//ui/accessibility:accessibility_unittests", # PASSES 4/20/2015
810 "//ui/app_list:app_list_unittests", # PASSES 4/20/2015 811 "//ui/app_list:app_list_unittests", # PASSES 4/20/2015
811 "//ui/aura:aura_unittests", # PASSES 4/17/2015 812 "//ui/aura:aura_unittests", # PASSES 4/17/2015
812 "//ui/base:ui_base_unittests", # PASSES 4/20/2015 813 "//ui/base:ui_base_unittests", # PASSES 4/20/2015
813 "//ui/compositor:compositor_unittests", # PASSES 4/20/2015 814 "//ui/compositor:compositor_unittests", # PASSES 4/20/2015
814 "//ui/display:display_unittests", # PASSES 4/20/2015 815 "//ui/display:display_unittests", # PASSES 4/20/2015
815 "//ui/events:events_unittests", # PASSES 4/20/2015 816 "//ui/events:events_unittests", # PASSES 4/20/2015
816 "//ui/gfx:gfx_unittests", # PASSES (with assertion failure?) 4/20/2015 817 "//ui/gfx:gfx_unittests", # PASSES (with assertion failure?) 4/20/2015
817 "//ui/message_center:message_center_unittests", # PASSES 4/20/2015 818 "//ui/message_center:message_center_unittests", # PASSES 4/20/2015
818 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 4/20/2015 819 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 4/20/2015
819 "//ui/views:views_unittests", # Same as WM unittests 820 "//ui/views:views_unittests", # TooltipControllerTest failures
820 "//ui/wm:wm_unittests", # CRASHES, looks like something simple missing. 821 "//ui/wm:wm_unittests", # PASSES 4/21/2015
821 "//url:url_unittests", # PASSES 4/17/2015 822 "//url:url_unittests", # PASSES 4/17/2015
822 823
823 # TODO(GYP) installer_util_unittests 824 # TODO(GYP) installer_util_unittests
824 # TODO(GYP) app_installer_unittests 825 # TODO(GYP) app_installer_unittests
825 # TODO(GYP) nacl_integration 826 # TODO(GYP) nacl_integration
826 # TODO(GYP) telemetry_perf_unittests 827 # TODO(GYP) telemetry_perf_unittests
827 # TODO(GYP) telemetry_unittests 828 # TODO(GYP) telemetry_unittests
828 ] 829 ]
829 } 830 }
830 } 831 }
OLDNEW
« no previous file with comments | « no previous file | chrome/app_installer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698