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 704 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
715 | 715 |
716 if (target_cpu == "x86" || target_cpu == "x64") { | 716 if (target_cpu == "x86" || target_cpu == "x64") { |
717 if (!is_android) { | 717 if (!is_android) { |
718 deps += [ "//chrome/test:load_library_perf_tests" ] | 718 deps += [ "//chrome/test:load_library_perf_tests" ] |
719 } | 719 } |
720 deps += [ | 720 deps += [ |
721 "//native_client/src/trusted/platform_qualify:vcpuid", | 721 "//native_client/src/trusted/platform_qualify:vcpuid", |
722 "//third_party/libjpeg_turbo:simd_asm", | 722 "//third_party/libjpeg_turbo:simd_asm", |
723 ] | 723 ] |
724 } | 724 } |
| 725 if (enable_nacl) { |
| 726 deps += [ "//native_client/src/trusted/service_runtime:sel_ldr" ] |
| 727 } |
725 if (use_ozone) { | 728 if (use_ozone) { |
726 deps += [ "//ui/ozone/demo" ] | 729 deps += [ "//ui/ozone/demo" ] |
727 } | 730 } |
728 | 731 |
729 if (is_linux && current_toolchain == host_toolchain) { | 732 if (is_linux && current_toolchain == host_toolchain) { |
730 deps += [ "//v8:d8" ] | 733 deps += [ "//v8:d8" ] |
731 } | 734 } |
732 } | 735 } |
733 | 736 |
734 if (enable_nacl) { | |
735 deps += [ "//native_client_sdk/src:nacl_core_sdk" ] | |
736 } | |
737 | |
738 if (is_android) { | 737 if (is_android) { |
739 deps += [ | 738 deps += [ |
740 "//build/android/gyp/test:hello_world", | 739 "//build/android/gyp/test:hello_world", |
741 "//build/android/incremental_install:bootstrap_java", | 740 "//build/android/incremental_install:bootstrap_java", |
742 ] | 741 ] |
743 } | 742 } |
744 | 743 |
745 if (!is_chromecast && (is_android || is_linux || is_chromeos)) { | 744 if (!is_chromecast && (is_android || is_linux || is_chromeos)) { |
746 deps += [ | 745 deps += [ |
747 "//blimp", | 746 "//blimp", |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
880 ] | 879 ] |
881 | 880 |
882 if (target_cpu == "x86") { | 881 if (target_cpu == "x86") { |
883 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] | 882 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] |
884 } | 883 } |
885 } else { | 884 } else { |
886 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 885 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
887 } | 886 } |
888 } | 887 } |
889 } | 888 } |
OLD | NEW |