| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 } | 76 } |
| 77 } | 77 } |
| 78 | 78 |
| 79 # TODO(GYP_GONE): This target exists for compatibility with GYP, specifically | 79 # TODO(GYP_GONE): This target exists for compatibility with GYP, specifically |
| 80 # for the iOS bots and the official builders. | 80 # for the iOS bots and the official builders. |
| 81 group("All") { | 81 group("All") { |
| 82 testonly = true | 82 testonly = true |
| 83 | 83 |
| 84 deps = [ | 84 deps = [ |
| 85 ":gn_all", | 85 ":gn_all", |
| 86 "//hax", |
| 86 ] | 87 ] |
| 87 } | 88 } |
| 88 | 89 |
| 89 # TODO(GYP_GONE): This target exists for compatibility with GYP for the | 90 # TODO(GYP_GONE): This target exists for compatibility with GYP for the |
| 90 # builders that specify targets in the recipes directly. | 91 # builders that specify targets in the recipes directly. |
| 91 # Ideally it should not exist, and the builders should be specifying | 92 # Ideally it should not exist, and the builders should be specifying |
| 92 # more specific targets (or 'All') via the source-side | 93 # more specific targets (or 'All') via the source-side |
| 93 # //testing/buildbot/*.json files. We should simply delete this target | 94 # //testing/buildbot/*.json files. We should simply delete this target |
| 94 # and update any recipes that are using it. | 95 # and update any recipes that are using it. |
| 95 group("chromium_builder_tests") { | 96 group("chromium_builder_tests") { |
| (...skipping 1030 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1126 "//ui/display:display_unittests", | 1127 "//ui/display:display_unittests", |
| 1127 "//ui/events:events_unittests", | 1128 "//ui/events:events_unittests", |
| 1128 "//ui/gfx:gfx_unittests", | 1129 "//ui/gfx:gfx_unittests", |
| 1129 "//ui/gl:gl_unittests", | 1130 "//ui/gl:gl_unittests", |
| 1130 "//ui/keyboard:keyboard_unittests", | 1131 "//ui/keyboard:keyboard_unittests", |
| 1131 "//ui/touch_selection:ui_touch_selection_unittests", | 1132 "//ui/touch_selection:ui_touch_selection_unittests", |
| 1132 "//url:url_unittests", | 1133 "//url:url_unittests", |
| 1133 ] | 1134 ] |
| 1134 } | 1135 } |
| 1135 } | 1136 } |
| OLD | NEW |