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 612 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
623 deps += [ "//components/proximity_auth:proximity_auth_unittests" ] | 623 deps += [ "//components/proximity_auth:proximity_auth_unittests" ] |
624 } | 624 } |
625 | 625 |
626 if (is_win || is_linux) { | 626 if (is_win || is_linux) { |
627 deps += [ | 627 deps += [ |
628 "//mash:all", | 628 "//mash:all", |
629 "//ui/views/mus:tests", | 629 "//ui/views/mus:tests", |
630 ] | 630 ] |
631 } | 631 } |
632 | 632 |
633 if (is_win && use_drfuzz) { | |
634 # build libfuzzer fuzzers on Windows to run with Dr. Fuzz | |
Dirk Pranke
2016/01/25 20:37:36
nit: I don't think this comment really adds much.
| |
635 deps += [ | |
636 "//testing/libfuzzer/fuzzers", | |
637 "//testing/libfuzzer/tests:libfuzzer_tests", | |
638 ] | |
639 } | |
640 | |
633 if (is_linux && !is_chromeos && !is_chromecast) { | 641 if (is_linux && !is_chromeos && !is_chromecast) { |
634 # TODO(GYP): Figure out if any of these should be in gn_all | 642 # TODO(GYP): Figure out if any of these should be in gn_all |
635 # and figure out how cross-platform they are | 643 # and figure out how cross-platform they are |
636 deps += [ | 644 deps += [ |
637 ":gn_mojo_targets", | 645 ":gn_mojo_targets", |
638 "//chrome/browser/resources:extension_resource_demo", | 646 "//chrome/browser/resources:extension_resource_demo", |
639 "//chrome/installer/util:strings", | 647 "//chrome/installer/util:strings", |
640 "//chrome/tools/convert_dict", | 648 "//chrome/tools/convert_dict", |
641 "//components/constrained_window:unit_tests", | 649 "//components/constrained_window:unit_tests", |
642 "//components/enhanced_bookmarks:test_support", | 650 "//components/enhanced_bookmarks:test_support", |
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
868 ] | 876 ] |
869 | 877 |
870 if (target_cpu == "x86") { | 878 if (target_cpu == "x86") { |
871 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] | 879 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] |
872 } | 880 } |
873 } else { | 881 } else { |
874 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 882 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
875 } | 883 } |
876 } | 884 } |
877 } | 885 } |
OLD | NEW |