Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(300)

Side by Side Diff: BUILD.gn

Issue 2379683002: Add a chrome_official_syzyasan_builder target. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 "//printing:printing_unittests", 143 "//printing:printing_unittests",
144 "//sql:sql_unittests", 144 "//sql:sql_unittests",
145 "//ui/base:ui_base_unittests", 145 "//ui/base:ui_base_unittests",
146 "//ui/gfx:gfx_unittests", 146 "//ui/gfx:gfx_unittests",
147 "//ui/touch_selection:ui_touch_selection_unittests", 147 "//ui/touch_selection:ui_touch_selection_unittests",
148 "//ui/views:views_unittests", 148 "//ui/views:views_unittests",
149 "//url:url_unittests", 149 "//url:url_unittests",
150 ] 150 ]
151 } 151 }
152 152
153 # TODO(sebmarchand): Remove this once we stop supporting Syzygy (M54+).
153 group("All_syzygy") { 154 group("All_syzygy") {
154 if (is_syzyasan || syzygy_optimize) { 155 if (is_syzyasan || syzygy_optimize) {
155 deps = [ 156 deps = [
156 "//chrome/installer/mini_installer:mini_installer", 157 "//chrome/installer/mini_installer:mini_installer",
157 "//chrome/installer/mini_installer:mini_installer_syzygy", 158 "//chrome/installer/mini_installer:mini_installer_syzygy",
158 ] 159 ]
159 } 160 }
160 } 161 }
162
163 if (is_syzyasan) {
164 group("chrome_official_syzyasan_builder") {
165 deps = [
166 ":All_syzygy",
167 ":chrome_official_builder_no_unittests",
168 ]
169 }
170 }
161 } 171 }
162 172
163 if (is_chromeos) { 173 if (is_chromeos) {
164 group("chromiumos_preflight") { 174 group("chromiumos_preflight") {
165 testonly = true 175 testonly = true
166 deps = [ 176 deps = [
167 "//breakpad:minidump_stackwalk($host_toolchain)", 177 "//breakpad:minidump_stackwalk($host_toolchain)",
168 "//chrome", 178 "//chrome",
169 "//chrome/test/chromedriver", 179 "//chrome/test/chromedriver",
170 "//media:media_unittests", 180 "//media:media_unittests",
(...skipping 959 matching lines...) Expand 10 before | Expand all | Expand 10 after
1130 "//ui/display:display_unittests", 1140 "//ui/display:display_unittests",
1131 "//ui/events:events_unittests", 1141 "//ui/events:events_unittests",
1132 "//ui/gfx:gfx_unittests", 1142 "//ui/gfx:gfx_unittests",
1133 "//ui/gl:gl_unittests", 1143 "//ui/gl:gl_unittests",
1134 "//ui/keyboard:keyboard_unittests", 1144 "//ui/keyboard:keyboard_unittests",
1135 "//ui/touch_selection:ui_touch_selection_unittests", 1145 "//ui/touch_selection:ui_touch_selection_unittests",
1136 "//url:url_unittests", 1146 "//url:url_unittests",
1137 ] 1147 ]
1138 } 1148 }
1139 } 1149 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698