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

Side by Side Diff: BUILD.gn

Issue 1426293005: //breakpad:symuploader should only compile with the host toolchain. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Created 5 years, 1 month 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 520 matching lines...) Expand 10 before | Expand all | Expand 10 after
531 "//third_party/codesighs:msmap2tsv", 531 "//third_party/codesighs:msmap2tsv",
532 "//third_party/pdfium/samples:pdfium_diff", 532 "//third_party/pdfium/samples:pdfium_diff",
533 "//ui/metro_viewer", 533 "//ui/metro_viewer",
534 ] 534 ]
535 deps -= [ 535 deps -= [
536 "//crypto:crypto_unittests", # TODO(GYP) 536 "//crypto:crypto_unittests", # TODO(GYP)
537 "//net:net_unittests", # TODO(GYP) 537 "//net:net_unittests", # TODO(GYP)
538 ] 538 ]
539 } else if (!is_android && !is_ios) { 539 } else if (!is_android && !is_ios) {
540 deps += [ 540 deps += [
541 "//breakpad:symupload", 541 "//breakpad:symupload($host_toolchain)",
542 "//media/cast:cast_unittests", 542 "//media/cast:cast_unittests",
543 ] 543 ]
544 } 544 }
545 } 545 }
546 546
547 group("gn_only") { 547 group("gn_only") {
548 testonly = true 548 testonly = true
549 549
550 deps = [] 550 deps = []
551 551
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
796 if (target_cpu == "x86") { 796 if (target_cpu == "x86") {
797 deps += [ 797 deps += [
798 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 798 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009
799 ] 799 ]
800 } 800 }
801 } else { 801 } else {
802 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] 802 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
803 } 803 }
804 } 804 }
805 } 805 }
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