| 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 745 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 756 | 756 | 
| 757     if (enable_nacl) { | 757     if (enable_nacl) { | 
| 758       deps += [ "//components/nacl:nacl_loader_unittests" ]  # PASSES 3/28/2015 | 758       deps += [ "//components/nacl:nacl_loader_unittests" ]  # PASSES 3/28/2015 | 
| 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/17/2015 in 32-bit, some 64-bit failur
     es. | 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/test:browser_tests", | 769       "//chrome/test:browser_tests", | 
| 770       "//chrome/test:interactive_ui_tests", | 770       "//chrome/test:interactive_ui_tests", | 
| 771       "//chrome/test:sync_integration_tests",  # Note: need to turn off incremen
     tal linking for debug. | 771       "//chrome/test:sync_integration_tests",  # Note: need to turn off incremen
     tal linking for debug. | 
| 772       "//chrome/test:unit_tests", | 772       "//chrome/test:unit_tests", | 
| 773       "//chrome/test/chromedriver:chromedriver_unittests",  # PASSES 4/20/2015 | 773       "//chrome/test/chromedriver:chromedriver_unittests",  # PASSES 4/20/2015 | 
| 774       "//components:components_browsertests", | 774       "//components:components_browsertests", | 
| 775       "//components:components_unittests",  # PASSES 4/17/2015 | 775       "//components:components_unittests",  # PASSES 4/17/2015 | 
| 776       "//courgette:courgette_unittests",  # PASSES 4/20/2015 | 776       "//courgette:courgette_unittests",  # PASSES 4/20/2015 | 
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 821       "//url:url_unittests",  # PASSES 4/17/2015 | 821       "//url:url_unittests",  # PASSES 4/17/2015 | 
| 822 | 822 | 
| 823       # TODO(GYP) installer_util_unittests | 823       # TODO(GYP) installer_util_unittests | 
| 824       # TODO(GYP) app_installer_unittests | 824       # TODO(GYP) app_installer_unittests | 
| 825       # TODO(GYP) nacl_integration | 825       # TODO(GYP) nacl_integration | 
| 826       # TODO(GYP) telemetry_perf_unittests | 826       # TODO(GYP) telemetry_perf_unittests | 
| 827       # TODO(GYP) telemetry_unittests | 827       # TODO(GYP) telemetry_unittests | 
| 828     ] | 828     ] | 
| 829   } | 829   } | 
| 830 } | 830 } | 
| OLD | NEW | 
|---|