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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 deps += [ "//ui/wm:wm_unittests" ] | 115 deps += [ "//ui/wm:wm_unittests" ] |
116 } | 116 } |
117 | 117 |
118 if (use_ozone) { | 118 if (use_ozone) { |
119 deps += [ | 119 deps += [ |
120 "//ui/ozone", | 120 "//ui/ozone", |
121 "//ui/ozone/demo", # GN only | 121 "//ui/ozone/demo", # GN only |
122 ] | 122 ] |
123 } | 123 } |
124 | 124 |
| 125 if (enable_media_router) { |
| 126 deps += [ |
| 127 "//chrome/browser/media/router/", |
| 128 "//chrome/browser/media/router:unit_tests", |
| 129 ] |
| 130 } |
| 131 |
125 if (is_win || is_mac || is_chromeos) { | 132 if (is_win || is_mac || is_chromeos) { |
126 # RLZ works on these platforms. | 133 # RLZ works on these platforms. |
127 # TODO(GYP): Is this target needed, or pulled in automatically? | 134 # TODO(GYP): Is this target needed, or pulled in automatically? |
128 deps += [ "//rlz:rlz_lib" ] | 135 deps += [ "//rlz:rlz_lib" ] |
129 } | 136 } |
130 | 137 |
131 if (is_android) { | 138 if (is_android) { |
132 deps += [ | 139 deps += [ |
133 "//base/android/linker:chromium_android_linker", | 140 "//base/android/linker:chromium_android_linker", |
134 "//build/android/gyp/test:hello_world", | 141 "//build/android/gyp/test:hello_world", |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
325 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015 | 332 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015 |
326 "//ui/views:views_unittests", # PASSES (*) 2/25/2015 | 333 "//ui/views:views_unittests", # PASSES (*) 2/25/2015 |
327 "//ui/wm:wm_unittests", # PASSES 2/25/2015 | 334 "//ui/wm:wm_unittests", # PASSES 2/25/2015 |
328 "//url:url_unittests", # PASSES 2/25/2015 | 335 "//url:url_unittests", # PASSES 2/25/2015 |
329 | 336 |
330 # Note: | 337 # Note: |
331 # (*) Fails but failures match GYP build at time of testing. | 338 # (*) Fails but failures match GYP build at time of testing. |
332 ] | 339 ] |
333 } | 340 } |
334 } | 341 } |
OLD | NEW |