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 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
596 | 596 |
597 if (!is_ios && !is_chromecast) { | 597 if (!is_ios && !is_chromecast) { |
598 deps += [ "//mandoline:all" ] | 598 deps += [ "//mandoline:all" ] |
599 } | 599 } |
600 | 600 |
601 if (!is_android && !is_ios && !is_chromeos) { | 601 if (!is_android && !is_ios && !is_chromeos) { |
602 deps += [ "//components/proximity_auth:proximity_auth_unittests" ] | 602 deps += [ "//components/proximity_auth:proximity_auth_unittests" ] |
603 } | 603 } |
604 | 604 |
605 if (!is_component_build && (is_win || is_linux)) { | 605 if (!is_component_build && (is_win || is_linux)) { |
606 deps += [ "//components/mus/example:all" ] | 606 deps += [ "//mash:all" ] |
607 } | 607 } |
608 | 608 |
609 if (is_linux && !is_chromeos && !is_chromecast) { | 609 if (is_linux && !is_chromeos && !is_chromecast) { |
610 # TODO(GYP): Figure out if any of these should be in gn_all | 610 # TODO(GYP): Figure out if any of these should be in gn_all |
611 # and figure out how cross-platform they are | 611 # and figure out how cross-platform they are |
612 deps += [ | 612 deps += [ |
613 ":gn_mojo_targets", | 613 ":gn_mojo_targets", |
614 "//blimp:blimp_tests", | 614 "//blimp:blimp_tests", |
615 "//chrome/browser/resources:extension_resource_demo", | 615 "//chrome/browser/resources:extension_resource_demo", |
616 "//chrome/installer/util:strings", | 616 "//chrome/installer/util:strings", |
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
850 if (target_cpu == "x86") { | 850 if (target_cpu == "x86") { |
851 deps += [ | 851 deps += [ |
852 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 | 852 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 |
853 ] | 853 ] |
854 } | 854 } |
855 } else { | 855 } else { |
856 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 856 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
857 } | 857 } |
858 } | 858 } |
859 } | 859 } |
OLD | NEW |