| 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 += [ | 172 deps += [ "//chrome/browser/media/router" ] |
| 173 "//chrome/browser/media/router/", | |
| 174 "//chrome/browser/media/router:unit_tests", | |
| 175 ] | |
| 176 } | 173 } |
| 177 | 174 |
| 178 if (enable_remoting) { | 175 if (enable_remoting) { |
| 179 deps += [ "//remoting:remoting_all" ] | 176 deps += [ "//remoting:remoting_all" ] |
| 180 } | 177 } |
| 181 | 178 |
| 182 if (toolkit_views) { | 179 if (toolkit_views) { |
| 183 deps += [ "//ui/views:views_unittests" ] | 180 deps += [ "//ui/views:views_unittests" ] |
| 184 } | 181 } |
| 185 | 182 |
| (...skipping 721 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 907 "//ui/views:views_unittests", # TooltipControllerTest failures | 904 "//ui/views:views_unittests", # TooltipControllerTest failures |
| 908 "//ui/wm:wm_unittests", # PASSES 4/21/2015 | 905 "//ui/wm:wm_unittests", # PASSES 4/21/2015 |
| 909 "//url:url_unittests", # PASSES 4/17/2015 | 906 "//url:url_unittests", # PASSES 4/17/2015 |
| 910 | 907 |
| 911 # TODO(GYP) nacl_integration | 908 # TODO(GYP) nacl_integration |
| 912 # TODO(GYP) telemetry_perf_unittests | 909 # TODO(GYP) telemetry_perf_unittests |
| 913 # TODO(GYP) telemetry_unittests | 910 # TODO(GYP) telemetry_unittests |
| 914 ] | 911 ] |
| 915 } | 912 } |
| 916 } | 913 } |
| OLD | NEW |