| 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 676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 687 | 687 |
| 688 group("gn_only") { | 688 group("gn_only") { |
| 689 testonly = true | 689 testonly = true |
| 690 | 690 |
| 691 deps = [] | 691 deps = [] |
| 692 | 692 |
| 693 if (!is_ios) { | 693 if (!is_ios) { |
| 694 deps += [ | 694 deps += [ |
| 695 "//media/mojo:media_mojo_unittests", | 695 "//media/mojo:media_mojo_unittests", |
| 696 "//mojo/common:mojo_common_perftests", | 696 "//mojo/common:mojo_common_perftests", |
| 697 "//services/video_capture:video_capture_unittests", |
| 697 ] | 698 ] |
| 698 } | 699 } |
| 699 | 700 |
| 700 if (!is_android && !is_ios) { | 701 if (!is_android && !is_ios) { |
| 701 deps += [ "//content/browser/bluetooth/tools:bluetooth_metrics_hash" ] | 702 deps += [ "//content/browser/bluetooth/tools:bluetooth_metrics_hash" ] |
| 702 } | 703 } |
| 703 | 704 |
| 704 if (!is_android && !is_ios && !is_chromeos) { | 705 if (!is_android && !is_ios && !is_chromeos) { |
| 705 deps += [ "//components/proximity_auth:proximity_auth_unittests" ] | 706 deps += [ "//components/proximity_auth:proximity_auth_unittests" ] |
| 706 } | 707 } |
| (...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1118 "//ui/display:display_unittests", | 1119 "//ui/display:display_unittests", |
| 1119 "//ui/events:events_unittests", | 1120 "//ui/events:events_unittests", |
| 1120 "//ui/gfx:gfx_unittests", | 1121 "//ui/gfx:gfx_unittests", |
| 1121 "//ui/gl:gl_unittests", | 1122 "//ui/gl:gl_unittests", |
| 1122 "//ui/keyboard:keyboard_unittests", | 1123 "//ui/keyboard:keyboard_unittests", |
| 1123 "//ui/touch_selection:ui_touch_selection_unittests", | 1124 "//ui/touch_selection:ui_touch_selection_unittests", |
| 1124 "//url:url_unittests", | 1125 "//url:url_unittests", |
| 1125 ] | 1126 ] |
| 1126 } | 1127 } |
| 1127 } | 1128 } |
| OLD | NEW |