Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 834 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 845 } | 845 } |
| 846 } else if (is_win) { | 846 } else if (is_win) { |
| 847 group("windows_default_tests") { | 847 group("windows_default_tests") { |
| 848 testonly = true | 848 testonly = true |
| 849 deps = [ | 849 deps = [ |
| 850 "//ash:ash_unittests", # FAILS 4/20/2015 | 850 "//ash:ash_unittests", # FAILS 4/20/2015 |
| 851 "//base:base_unittests", # PASSES 4/20/2015 | 851 "//base:base_unittests", # PASSES 4/20/2015 |
| 852 "//cc:cc_unittests", # PASSES 4/17/2015 | 852 "//cc:cc_unittests", # PASSES 4/17/2015 |
| 853 "//chrome_elf:chrome_elf_unittests", # FAILS 4/20/2015 | 853 "//chrome_elf:chrome_elf_unittests", # FAILS 4/20/2015 |
| 854 "//chrome/installer/util:installer_util_unittests", | 854 "//chrome/installer/util:installer_util_unittests", |
| 855 "//chrome/installer/setup:setup_unittests", | |
|
brettw
2015/07/01 17:08:09
This list is trying to track the set of tests run
grt (UTC plus 2)
2015/07/01 17:38:57
At the moment, it's none of the above. I'm trying
grt (UTC plus 2)
2015/07/06 15:20:33
FYI: I have https://codereview.chromium.org/121992
| |
| 855 "//chrome/test:browser_tests", | 856 "//chrome/test:browser_tests", |
| 856 "//chrome/test:interactive_ui_tests", | 857 "//chrome/test:interactive_ui_tests", |
| 857 "//chrome/test:sync_integration_tests", # Note: need to turn off incremen tal linking for debug. | 858 "//chrome/test:sync_integration_tests", # Note: need to turn off incremen tal linking for debug. |
| 858 "//chrome/test:unit_tests", | 859 "//chrome/test:unit_tests", |
| 859 "//chrome/test/chromedriver:chromedriver_unittests", # PASSES 4/20/2015 | 860 "//chrome/test/chromedriver:chromedriver_unittests", # PASSES 4/20/2015 |
| 860 "//components:components_browsertests", # PASSES 4/24/2015 | 861 "//components:components_browsertests", # PASSES 4/24/2015 |
| 861 "//components:components_unittests", # PASSES 4/17/2015 | 862 "//components:components_unittests", # PASSES 4/17/2015 |
| 862 "//courgette:courgette_unittests", # PASSES 4/20/2015 | 863 "//courgette:courgette_unittests", # PASSES 4/20/2015 |
| 863 "//content/test:content_browsertests", | 864 "//content/test:content_browsertests", |
| 864 "//content/test:content_unittests", # PASSES 4/17/2015 | 865 "//content/test:content_unittests", # PASSES 4/17/2015 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 906 "//ui/views:views_unittests", # TooltipControllerTest failures | 907 "//ui/views:views_unittests", # TooltipControllerTest failures |
| 907 "//ui/wm:wm_unittests", # PASSES 4/21/2015 | 908 "//ui/wm:wm_unittests", # PASSES 4/21/2015 |
| 908 "//url:url_unittests", # PASSES 4/17/2015 | 909 "//url:url_unittests", # PASSES 4/17/2015 |
| 909 | 910 |
| 910 # TODO(GYP) nacl_integration | 911 # TODO(GYP) nacl_integration |
| 911 # TODO(GYP) telemetry_perf_unittests | 912 # TODO(GYP) telemetry_perf_unittests |
| 912 # TODO(GYP) telemetry_unittests | 913 # TODO(GYP) telemetry_unittests |
| 913 ] | 914 ] |
| 914 } | 915 } |
| 915 } | 916 } |
| OLD | NEW |