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

Side by Side Diff: BUILD.gn

Issue 1611353003: tools/battor_agent: Stops BattOrAgent from being built on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 | build/gn_migration.gypi » ('j') | 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | build/gn_migration.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698