| 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 722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 733 "//media/remoting:media_remoting_unittests", | 733 "//media/remoting:media_remoting_unittests", |
| 734 ] | 734 ] |
| 735 } | 735 } |
| 736 | 736 |
| 737 if (is_win || is_linux) { | 737 if (is_win || is_linux) { |
| 738 deps += [ | 738 deps += [ |
| 739 "//mash:all", | 739 "//mash:all", |
| 740 "//media/mojo/services:media_mojo_shell_unittests", | 740 "//media/mojo/services:media_mojo_shell_unittests", |
| 741 "//mojo", | 741 "//mojo", |
| 742 "//services/navigation", | 742 "//services/navigation", |
| 743 "//services/preferences:tests", |
| 743 "//services/ui/demo", | 744 "//services/ui/demo", |
| 744 "//services/ui/ws:tests", | 745 "//services/ui/ws:tests", |
| 745 "//ui/views/mus:views_mus_interactive_ui_tests", | 746 "//ui/views/mus:views_mus_interactive_ui_tests", |
| 746 "//ui/views/mus:views_mus_unittests", | 747 "//ui/views/mus:views_mus_unittests", |
| 747 ] | 748 ] |
| 748 } | 749 } |
| 749 | 750 |
| 750 if (is_linux && !is_chromeos && !is_chromecast) { | 751 if (is_linux && !is_chromeos && !is_chromecast) { |
| 751 # TODO(GYP): Figure out if any of these should be in gn_all | 752 # TODO(GYP): Figure out if any of these should be in gn_all |
| 752 # and figure out how cross-platform they are | 753 # and figure out how cross-platform they are |
| (...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1151 "//ui/display:display_unittests", | 1152 "//ui/display:display_unittests", |
| 1152 "//ui/events:events_unittests", | 1153 "//ui/events:events_unittests", |
| 1153 "//ui/gfx:gfx_unittests", | 1154 "//ui/gfx:gfx_unittests", |
| 1154 "//ui/gl:gl_unittests", | 1155 "//ui/gl:gl_unittests", |
| 1155 "//ui/keyboard:keyboard_unittests", | 1156 "//ui/keyboard:keyboard_unittests", |
| 1156 "//ui/touch_selection:ui_touch_selection_unittests", | 1157 "//ui/touch_selection:ui_touch_selection_unittests", |
| 1157 "//url:url_unittests", | 1158 "//url:url_unittests", |
| 1158 ] | 1159 ] |
| 1159 } | 1160 } |
| 1160 } | 1161 } |
| OLD | NEW |