| 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 726 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 737 "//media/remoting:media_remoting_unittests", | 737 "//media/remoting:media_remoting_unittests", |
| 738 ] | 738 ] |
| 739 } | 739 } |
| 740 | 740 |
| 741 if (is_win || is_linux) { | 741 if (is_win || is_linux) { |
| 742 deps += [ | 742 deps += [ |
| 743 "//mash:all", | 743 "//mash:all", |
| 744 "//media/mojo/services:media_mojo_shell_unittests", | 744 "//media/mojo/services:media_mojo_shell_unittests", |
| 745 "//mojo", | 745 "//mojo", |
| 746 "//services/navigation", | 746 "//services/navigation", |
| 747 "//services/preferences:tests", |
| 747 "//services/ui/demo", | 748 "//services/ui/demo", |
| 748 "//services/ui/demo:mus_demo_unittests", | 749 "//services/ui/demo:mus_demo_unittests", |
| 749 "//services/ui/public/interfaces:ui_struct_traits_unittests", | 750 "//services/ui/public/interfaces:ui_struct_traits_unittests", |
| 750 "//services/ui/ws:tests", | 751 "//services/ui/ws:tests", |
| 751 "//ui/views/mus:views_mus_interactive_ui_tests", | 752 "//ui/views/mus:views_mus_interactive_ui_tests", |
| 752 "//ui/views/mus:views_mus_unittests", | 753 "//ui/views/mus:views_mus_unittests", |
| 753 ] | 754 ] |
| 754 | 755 |
| 755 if (use_ozone) { | 756 if (use_ozone) { |
| 756 deps += [ "//services/ui/display:display_service_unittests" ] | 757 deps += [ "//services/ui/display:display_service_unittests" ] |
| (...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1148 "//ui/display:display_unittests", | 1149 "//ui/display:display_unittests", |
| 1149 "//ui/events:events_unittests", | 1150 "//ui/events:events_unittests", |
| 1150 "//ui/gfx:gfx_unittests", | 1151 "//ui/gfx:gfx_unittests", |
| 1151 "//ui/gl:gl_unittests", | 1152 "//ui/gl:gl_unittests", |
| 1152 "//ui/keyboard:keyboard_unittests", | 1153 "//ui/keyboard:keyboard_unittests", |
| 1153 "//ui/touch_selection:ui_touch_selection_unittests", | 1154 "//ui/touch_selection:ui_touch_selection_unittests", |
| 1154 "//url:url_unittests", | 1155 "//url:url_unittests", |
| 1155 ] | 1156 ] |
| 1156 } | 1157 } |
| 1157 } | 1158 } |
| OLD | NEW |