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 838 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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/test:browser_tests", | 855 "//chrome/test:browser_tests", |
| 856 "//chrome/test:interactive_ui_tests", | 856 "//chrome/test:interactive_ui_tests", |
| 857 "//chrome/test:sync_integration_tests", # Note: need to turn off incremen tal linking for debug. | 857 "//chrome/test:sync_integration_tests", # Note: need to turn off incremen tal linking for debug. |
| 858 "//chrome/test:unit_tests", | 858 "//chrome/test:unit_tests", |
| 859 "//cloud_print:cloud_print_unittests", | |
|
dcheng
2015/06/30 21:34:20
Please ignore this, I'll revert this before landin
| |
| 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 |
| 865 "//crypto:crypto_unittests", # PASSES 4/17/2015 | 866 "//crypto:crypto_unittests", # PASSES 4/17/2015 |
| 866 "//device:device_unittests", # PASSES 4/17/2015 | 867 "//device:device_unittests", # PASSES 4/17/2015 |
| 867 "//extensions:extensions_browsertests", # PASSES 4/17/2015 | 868 "//extensions:extensions_browsertests", # PASSES 4/17/2015 |
| 868 "//extensions:extensions_unittests", # PASSES 4/17/2015 | 869 "//extensions:extensions_unittests", # PASSES 4/17/2015 |
| (...skipping 37 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 |