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 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
351 "//ash:ash_unittests", | 351 "//ash:ash_unittests", |
352 "//ui/app_list:app_list_unittests", | 352 "//ui/app_list:app_list_unittests", |
353 "//ui/app_list/presenter:app_list_presenter_unittests", | 353 "//ui/app_list/presenter:app_list_presenter_unittests", |
354 "//ui/aura:aura_unittests", | 354 "//ui/aura:aura_unittests", |
355 "//ui/aura:demo", | 355 "//ui/aura:demo", |
356 "//ui/wm:wm_unittests", | 356 "//ui/wm:wm_unittests", |
357 ] | 357 ] |
358 } | 358 } |
359 | 359 |
360 if (use_ozone) { | 360 if (use_ozone) { |
361 deps += [ "//ui/ozone" ] | 361 deps += [ |
| 362 "//ui/ozone", |
| 363 "//ui/ozone:ozone_unittests", |
| 364 "//ui/ozone/gl:ozone_gl_unittests", |
| 365 ] |
362 } | 366 } |
363 | 367 |
364 if (use_x11) { | 368 if (use_x11) { |
365 deps += [ "//tools/xdisplaycheck" ] | 369 deps += [ "//tools/xdisplaycheck" ] |
366 } | 370 } |
367 | 371 |
368 if (enable_configuration_policy) { | 372 if (enable_configuration_policy) { |
369 deps += [ "//components/policy:policy_templates" ] | 373 deps += [ "//components/policy:policy_templates" ] |
370 } | 374 } |
371 | 375 |
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
734 ] | 738 ] |
735 } | 739 } |
736 | 740 |
737 if (is_win || is_linux) { | 741 if (is_win || is_linux) { |
738 deps += [ | 742 deps += [ |
739 "//mash:all", | 743 "//mash:all", |
740 "//media/mojo/services:media_mojo_shell_unittests", | 744 "//media/mojo/services:media_mojo_shell_unittests", |
741 "//mojo", | 745 "//mojo", |
742 "//services/navigation", | 746 "//services/navigation", |
743 "//services/ui/demo", | 747 "//services/ui/demo", |
| 748 "//services/ui/demo:mus_demo_unittests", |
| 749 "//services/ui/public/interfaces:ui_struct_traits_unittests", |
744 "//services/ui/ws:tests", | 750 "//services/ui/ws:tests", |
745 "//ui/views/mus:views_mus_interactive_ui_tests", | 751 "//ui/views/mus:views_mus_interactive_ui_tests", |
746 "//ui/views/mus:views_mus_unittests", | 752 "//ui/views/mus:views_mus_unittests", |
747 ] | 753 ] |
| 754 |
| 755 if (use_ozone) { |
| 756 deps += [ "//services/ui/display:display_service_unittests" ] |
| 757 } |
748 } | 758 } |
749 | 759 |
750 if (is_linux && !is_chromeos && !is_chromecast) { | 760 if (is_linux && !is_chromeos && !is_chromecast) { |
751 # TODO(GYP): Figure out if any of these should be in gn_all | 761 # TODO(GYP): Figure out if any of these should be in gn_all |
752 # and figure out how cross-platform they are | 762 # and figure out how cross-platform they are |
753 deps += [ | 763 deps += [ |
754 ":gn_mojo_targets", | 764 ":gn_mojo_targets", |
755 "//chrome/browser/resources:extension_resource_demo", | 765 "//chrome/browser/resources:extension_resource_demo", |
756 "//chrome/installer/util:strings", | 766 "//chrome/installer/util:strings", |
757 "//chrome/tools/convert_dict", | 767 "//chrome/tools/convert_dict", |
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1151 "//ui/display:display_unittests", | 1161 "//ui/display:display_unittests", |
1152 "//ui/events:events_unittests", | 1162 "//ui/events:events_unittests", |
1153 "//ui/gfx:gfx_unittests", | 1163 "//ui/gfx:gfx_unittests", |
1154 "//ui/gl:gl_unittests", | 1164 "//ui/gl:gl_unittests", |
1155 "//ui/keyboard:keyboard_unittests", | 1165 "//ui/keyboard:keyboard_unittests", |
1156 "//ui/touch_selection:ui_touch_selection_unittests", | 1166 "//ui/touch_selection:ui_touch_selection_unittests", |
1157 "//url:url_unittests", | 1167 "//url:url_unittests", |
1158 ] | 1168 ] |
1159 } | 1169 } |
1160 } | 1170 } |
OLD | NEW |