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