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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 } | 117 } |
118 | 118 |
119 if (use_aura) { | 119 if (use_aura) { |
120 deps += [ "//ui/wm:wm_unittests" ] | 120 deps += [ "//ui/wm:wm_unittests" ] |
121 } | 121 } |
122 | 122 |
123 if (use_ozone) { | 123 if (use_ozone) { |
124 deps += [ "//ui/ozone" ] | 124 deps += [ "//ui/ozone" ] |
125 } | 125 } |
126 | 126 |
| 127 if (enable_media_router) { |
| 128 deps += [ |
| 129 "//chrome/browser/media/router/", |
| 130 "//chrome/browser/media/router:unit_tests", |
| 131 ] |
| 132 } |
| 133 |
127 if (is_win || is_mac || is_chromeos) { | 134 if (is_win || is_mac || is_chromeos) { |
128 # RLZ works on these platforms. | 135 # RLZ works on these platforms. |
129 # TODO(GYP): Is this target needed, or pulled in automatically? | 136 # TODO(GYP): Is this target needed, or pulled in automatically? |
130 deps += [ "//rlz:rlz_lib" ] | 137 deps += [ "//rlz:rlz_lib" ] |
131 } | 138 } |
132 | 139 |
133 if (is_android) { | 140 if (is_android) { |
134 deps += [ | 141 deps += [ |
135 "//base/android/linker:chromium_android_linker", | 142 "//base/android/linker:chromium_android_linker", |
136 "//build/android/gyp/test:hello_world", | 143 "//build/android/gyp/test:hello_world", |
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
629 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015 | 636 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015 |
630 "//ui/views:views_unittests", # PASSES (*) 2/25/2015 | 637 "//ui/views:views_unittests", # PASSES (*) 2/25/2015 |
631 "//ui/wm:wm_unittests", # PASSES 2/25/2015 | 638 "//ui/wm:wm_unittests", # PASSES 2/25/2015 |
632 "//url:url_unittests", # PASSES 2/25/2015 | 639 "//url:url_unittests", # PASSES 2/25/2015 |
633 | 640 |
634 # Note: | 641 # Note: |
635 # (*) Fails but failures match GYP build at time of testing. | 642 # (*) Fails but failures match GYP build at time of testing. |
636 ] | 643 ] |
637 } | 644 } |
638 } | 645 } |
OLD | NEW |