| 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 710 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 721 deps += [ "//native_client_sdk/src:nacl_core_sdk" ] | 721 deps += [ "//native_client_sdk/src:nacl_core_sdk" ] |
| 722 } | 722 } |
| 723 | 723 |
| 724 if (is_android) { | 724 if (is_android) { |
| 725 deps += [ | 725 deps += [ |
| 726 "//build/android/gyp/test:hello_world", | 726 "//build/android/gyp/test:hello_world", |
| 727 "//build/android/incremental_install:bootstrap_java", | 727 "//build/android/incremental_install:bootstrap_java", |
| 728 ] | 728 ] |
| 729 } | 729 } |
| 730 | 730 |
| 731 if (is_linux && use_ozone) { |
| 732 deps += [ |
| 733 "//headless", |
| 734 "//headless:headless_tests", |
| 735 ] |
| 736 } |
| 737 |
| 731 if (!is_chromecast && (is_android || is_linux || is_chromeos)) { | 738 if (!is_chromecast && (is_android || is_linux || is_chromeos)) { |
| 732 deps += [ | 739 deps += [ |
| 733 "//blimp", | 740 "//blimp", |
| 734 "//blimp:blimp_tests", | 741 "//blimp:blimp_tests", |
| 735 ] | 742 ] |
| 736 } | 743 } |
| 737 } | 744 } |
| 738 | 745 |
| 739 group("gn_mojo_targets") { | 746 group("gn_mojo_targets") { |
| 740 testonly = true | 747 testonly = true |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 866 ] | 873 ] |
| 867 | 874 |
| 868 if (target_cpu == "x86") { | 875 if (target_cpu == "x86") { |
| 869 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] | 876 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] |
| 870 } | 877 } |
| 871 } else { | 878 } else { |
| 872 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 879 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
| 873 } | 880 } |
| 874 } | 881 } |
| 875 } | 882 } |
| OLD | NEW |