| 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 714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 725 "//mojo/common:mojo_common_perftests", | 725 "//mojo/common:mojo_common_perftests", |
| 726 "//services/video_capture:video_capture_unittests", | 726 "//services/video_capture:video_capture_unittests", |
| 727 ] | 727 ] |
| 728 } | 728 } |
| 729 | 729 |
| 730 if (!is_android && !is_ios) { | 730 if (!is_android && !is_ios) { |
| 731 deps += [ "//content/browser/bluetooth/tools:bluetooth_metrics_hash" ] | 731 deps += [ "//content/browser/bluetooth/tools:bluetooth_metrics_hash" ] |
| 732 } | 732 } |
| 733 | 733 |
| 734 if (!is_android && !is_ios && !is_chromeos) { | 734 if (!is_android && !is_ios && !is_chromeos) { |
| 735 deps += [ | 735 deps += [ "//components/proximity_auth:proximity_auth_unittests" ] |
| 736 "//components/proximity_auth:proximity_auth_unittests", | |
| 737 "//media/remoting:media_remoting_unittests", | |
| 738 ] | |
| 739 } | 736 } |
| 740 | 737 |
| 741 if (is_win || is_linux) { | 738 if (is_win || is_linux) { |
| 742 deps += [ | 739 deps += [ |
| 743 "//mash:all", | 740 "//mash:all", |
| 744 "//media/mojo/services:media_mojo_shell_unittests", | 741 "//media/mojo/services:media_mojo_shell_unittests", |
| 745 "//mojo", | 742 "//mojo", |
| 746 "//services/navigation", | 743 "//services/navigation", |
| 747 "//services/ui/demo", | 744 "//services/ui/demo", |
| 748 "//services/ui/demo:mus_demo_unittests", | 745 "//services/ui/demo:mus_demo_unittests", |
| (...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1148 "//ui/display:display_unittests", | 1145 "//ui/display:display_unittests", |
| 1149 "//ui/events:events_unittests", | 1146 "//ui/events:events_unittests", |
| 1150 "//ui/gfx:gfx_unittests", | 1147 "//ui/gfx:gfx_unittests", |
| 1151 "//ui/gl:gl_unittests", | 1148 "//ui/gl:gl_unittests", |
| 1152 "//ui/keyboard:keyboard_unittests", | 1149 "//ui/keyboard:keyboard_unittests", |
| 1153 "//ui/touch_selection:ui_touch_selection_unittests", | 1150 "//ui/touch_selection:ui_touch_selection_unittests", |
| 1154 "//url:url_unittests", | 1151 "//url:url_unittests", |
| 1155 ] | 1152 ] |
| 1156 } | 1153 } |
| 1157 } | 1154 } |
| OLD | NEW |