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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 ] | 162 ] |
163 | 163 |
164 deps += root_extra_deps | 164 deps += root_extra_deps |
165 | 165 |
166 if (enable_extensions && !is_mac) { | 166 if (enable_extensions && !is_mac) { |
167 # TODO(GYP): Get this working on the mac? | 167 # TODO(GYP): Get this working on the mac? |
168 deps += [ "//extensions/shell:app_shell_unittests" ] | 168 deps += [ "//extensions/shell:app_shell_unittests" ] |
169 } | 169 } |
170 | 170 |
171 if (enable_media_router) { | 171 if (enable_media_router) { |
172 deps += [ "//chrome/browser/media/router" ] | 172 deps += [ |
| 173 "//chrome/browser/media/router/", |
| 174 "//chrome/browser/media/router:unit_tests", |
| 175 ] |
173 } | 176 } |
174 | 177 |
175 if (enable_remoting) { | 178 if (enable_remoting) { |
176 deps += [ "//remoting:remoting_all" ] | 179 deps += [ "//remoting:remoting_all" ] |
177 } | 180 } |
178 | 181 |
179 if (toolkit_views) { | 182 if (toolkit_views) { |
180 deps += [ "//ui/views:views_unittests" ] | 183 deps += [ "//ui/views:views_unittests" ] |
181 } | 184 } |
182 | 185 |
(...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
905 "//ui/views:views_unittests", # TooltipControllerTest failures | 908 "//ui/views:views_unittests", # TooltipControllerTest failures |
906 "//ui/wm:wm_unittests", # PASSES 4/21/2015 | 909 "//ui/wm:wm_unittests", # PASSES 4/21/2015 |
907 "//url:url_unittests", # PASSES 4/17/2015 | 910 "//url:url_unittests", # PASSES 4/17/2015 |
908 | 911 |
909 # TODO(GYP) nacl_integration | 912 # TODO(GYP) nacl_integration |
910 # TODO(GYP) telemetry_perf_unittests | 913 # TODO(GYP) telemetry_perf_unittests |
911 # TODO(GYP) telemetry_unittests | 914 # TODO(GYP) telemetry_unittests |
912 ] | 915 ] |
913 } | 916 } |
914 } | 917 } |
OLD | NEW |