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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 "//ppapi/examples/threading", | 141 "//ppapi/examples/threading", |
142 "//ppapi/examples/url_loader", | 142 "//ppapi/examples/url_loader", |
143 "//ppapi/examples/video_capture", | 143 "//ppapi/examples/video_capture", |
144 "//ppapi/examples/video_decode", | 144 "//ppapi/examples/video_decode", |
145 "//ppapi/examples/video_effects", | 145 "//ppapi/examples/video_effects", |
146 "//ppapi/examples/video_encode", | 146 "//ppapi/examples/video_encode", |
147 "//printing:printing_unittests", | 147 "//printing:printing_unittests", |
148 "//third_party/cacheinvalidation:cacheinvalidation_unittests", | 148 "//third_party/cacheinvalidation:cacheinvalidation_unittests", |
149 "//third_party/codesighs", | 149 "//third_party/codesighs", |
150 "//third_party/pdfium/samples:pdfium_test", | 150 "//third_party/pdfium/samples:pdfium_test", |
| 151 "//tools/battor_agent", |
151 "//tools/gn", | 152 "//tools/gn", |
152 "//tools/gn:gn_unittests", | 153 "//tools/gn:gn_unittests", |
153 "//tools/perf/clear_system_cache", | 154 "//tools/perf/clear_system_cache", |
154 "//ui/accessibility:accessibility_unittests", | 155 "//ui/accessibility:accessibility_unittests", |
155 "//ui/app_list:app_list_unittests", | 156 "//ui/app_list:app_list_unittests", |
156 ] | 157 ] |
157 } | 158 } |
158 | 159 |
159 if (!is_ios) { | 160 if (!is_ios) { |
160 # TODO(GYP): Figure out which of these should actually build on iOS, | 161 # TODO(GYP): Figure out which of these should actually build on iOS, |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 deps += [ | 216 deps += [ |
216 "//ios/chrome:ios_chrome_unittests", | 217 "//ios/chrome:ios_chrome_unittests", |
217 "//ios/chrome/app", | 218 "//ios/chrome/app", |
218 "//ios/chrome/browser", | 219 "//ios/chrome/browser", |
219 "//ios/chrome/common", | 220 "//ios/chrome/common", |
220 "//ios/public/provider/chrome/browser", | 221 "//ios/public/provider/chrome/browser", |
221 ] | 222 ] |
222 } | 223 } |
223 } | 224 } |
224 | 225 |
225 if (is_mac || is_win || is_linux) { | |
226 deps += [ "//tools/battor_agent" ] | |
227 } | |
228 | |
229 deps += root_extra_deps | 226 deps += root_extra_deps |
230 | 227 |
231 if (enable_extensions) { | 228 if (enable_extensions) { |
232 deps += [ "//extensions/shell:app_shell_unittests" ] | 229 deps += [ "//extensions/shell:app_shell_unittests" ] |
233 } | 230 } |
234 | 231 |
235 if (enable_media_router) { | 232 if (enable_media_router) { |
236 deps += [ "//chrome/browser/media/router" ] | 233 deps += [ "//chrome/browser/media/router" ] |
237 } | 234 } |
238 | 235 |
(...skipping 629 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
868 ] | 865 ] |
869 | 866 |
870 if (target_cpu == "x86") { | 867 if (target_cpu == "x86") { |
871 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] | 868 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] |
872 } | 869 } |
873 } else { | 870 } else { |
874 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 871 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
875 } | 872 } |
876 } | 873 } |
877 } | 874 } |
OLD | NEW |