| 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 717 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 728 if (!is_android && !is_ios && !is_chromeos) { | 728 if (!is_android && !is_ios && !is_chromeos) { |
| 729 deps += [ "//components/proximity_auth:proximity_auth_unittests" ] | 729 deps += [ "//components/proximity_auth:proximity_auth_unittests" ] |
| 730 } | 730 } |
| 731 | 731 |
| 732 if (is_win || is_linux) { | 732 if (is_win || is_linux) { |
| 733 deps += [ | 733 deps += [ |
| 734 "//mash:all", | 734 "//mash:all", |
| 735 "//media/mojo/services:media_mojo_shell_unittests", | 735 "//media/mojo/services:media_mojo_shell_unittests", |
| 736 "//mojo", | 736 "//mojo", |
| 737 "//services/navigation", | 737 "//services/navigation", |
| 738 "//services/preferences:tests", |
| 738 "//services/ui/demo", | 739 "//services/ui/demo", |
| 739 "//services/ui/ws:tests", | 740 "//services/ui/ws:tests", |
| 740 "//ui/views/mus:views_mus_interactive_ui_tests", | 741 "//ui/views/mus:views_mus_interactive_ui_tests", |
| 741 "//ui/views/mus:views_mus_unittests", | 742 "//ui/views/mus:views_mus_unittests", |
| 742 ] | 743 ] |
| 743 } | 744 } |
| 744 | 745 |
| 745 if (is_linux && !is_chromeos && !is_chromecast) { | 746 if (is_linux && !is_chromeos && !is_chromecast) { |
| 746 # TODO(GYP): Figure out if any of these should be in gn_all | 747 # TODO(GYP): Figure out if any of these should be in gn_all |
| 747 # and figure out how cross-platform they are | 748 # and figure out how cross-platform they are |
| (...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1146 "//ui/display:display_unittests", | 1147 "//ui/display:display_unittests", |
| 1147 "//ui/events:events_unittests", | 1148 "//ui/events:events_unittests", |
| 1148 "//ui/gfx:gfx_unittests", | 1149 "//ui/gfx:gfx_unittests", |
| 1149 "//ui/gl:gl_unittests", | 1150 "//ui/gl:gl_unittests", |
| 1150 "//ui/keyboard:keyboard_unittests", | 1151 "//ui/keyboard:keyboard_unittests", |
| 1151 "//ui/touch_selection:ui_touch_selection_unittests", | 1152 "//ui/touch_selection:ui_touch_selection_unittests", |
| 1152 "//url:url_unittests", | 1153 "//url:url_unittests", |
| 1153 ] | 1154 ] |
| 1154 } | 1155 } |
| 1155 } | 1156 } |
| OLD | NEW |