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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
66 | 66 |
67 deps = [ | 67 deps = [ |
68 "//base:base_unittests", | 68 "//base:base_unittests", |
69 "//cc:cc_unittests", | 69 "//cc:cc_unittests", |
70 "//chrome", | 70 "//chrome", |
71 "//chrome/test:browser_tests", | 71 "//chrome/test:browser_tests", |
72 "//chrome/test:interactive_ui_tests", | 72 "//chrome/test:interactive_ui_tests", |
73 "//chrome/test:sync_integration_tests", | 73 "//chrome/test:sync_integration_tests", |
74 "//chrome/test:unit_tests", | 74 "//chrome/test:unit_tests", |
75 "//chrome/test/chromedriver:chromedriver_unittests", | 75 "//chrome/test/chromedriver:chromedriver_unittests", |
76 "//chromecast:chromecast_unittests", | |
gunsch
2015/06/12 00:37:09
Remove this for now. Brett and others have express
slan
2015/06/15 17:01:44
Done.
| |
76 "//components:components_browsertests", | 77 "//components:components_browsertests", |
77 "//components:components_unittests", | 78 "//components:components_unittests", |
78 "//content/shell:content_shell", | 79 "//content/shell:content_shell", |
79 "//content/test:content_browsertests", | 80 "//content/test:content_browsertests", |
80 "//content/test:content_perftests", | 81 "//content/test:content_perftests", |
81 "//content/test:content_unittests", | 82 "//content/test:content_unittests", |
82 "//crypto:crypto_unittests", | 83 "//crypto:crypto_unittests", |
83 "//device:device_unittests", | 84 "//device:device_unittests", |
84 "//extensions:extensions_browsertests", | 85 "//extensions:extensions_browsertests", |
85 "//extensions:extensions_unittests", | 86 "//extensions:extensions_unittests", |
(...skipping 817 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
903 "//ui/views:views_unittests", # TooltipControllerTest failures | 904 "//ui/views:views_unittests", # TooltipControllerTest failures |
904 "//ui/wm:wm_unittests", # PASSES 4/21/2015 | 905 "//ui/wm:wm_unittests", # PASSES 4/21/2015 |
905 "//url:url_unittests", # PASSES 4/17/2015 | 906 "//url:url_unittests", # PASSES 4/17/2015 |
906 | 907 |
907 # TODO(GYP) nacl_integration | 908 # TODO(GYP) nacl_integration |
908 # TODO(GYP) telemetry_perf_unittests | 909 # TODO(GYP) telemetry_perf_unittests |
909 # TODO(GYP) telemetry_unittests | 910 # TODO(GYP) telemetry_unittests |
910 ] | 911 ] |
911 } | 912 } |
912 } | 913 } |
OLD | NEW |