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