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 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
455 deps += [ "//extensions/shell:app_shell" ] | 455 deps += [ "//extensions/shell:app_shell" ] |
456 } | 456 } |
457 | 457 |
458 if (enable_nacl) { | 458 if (enable_nacl) { |
459 deps += [ "//components/nacl/loader:nacl_loader_unittests" ] | 459 deps += [ "//components/nacl/loader:nacl_loader_unittests" ] |
460 | 460 |
461 if (is_linux) { | 461 if (is_linux) { |
462 # TODO(dpranke): Figure out what platforms should actually have this. | 462 # TODO(dpranke): Figure out what platforms should actually have this. |
463 deps += [ | 463 deps += [ |
464 "//components/nacl/loader:helper_nonsfi", | 464 "//components/nacl/loader:helper_nonsfi", |
465 "//components/nacl/loader:helper_nonsfi_unittests", | |
466 "//components/nacl/loader:nacl_helper", | 465 "//components/nacl/loader:nacl_helper", |
| 466 "//components/nacl/loader:nacl_helper_nonsfi_unittests", |
467 ] | 467 ] |
468 } | 468 } |
469 } | 469 } |
470 | 470 |
471 if (media_use_ffmpeg && !is_android) { | 471 if (media_use_ffmpeg && !is_android) { |
472 deps += [ "//media:ffmpeg_regression_tests" ] | 472 deps += [ "//media:ffmpeg_regression_tests" ] |
473 } | 473 } |
474 | 474 |
475 if (use_ash) { | 475 if (use_ash) { |
476 deps += [ | 476 deps += [ |
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
890 ] | 890 ] |
891 | 891 |
892 if (target_cpu == "x86") { | 892 if (target_cpu == "x86") { |
893 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] | 893 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] |
894 } | 894 } |
895 } else { | 895 } else { |
896 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 896 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
897 } | 897 } |
898 } | 898 } |
899 } | 899 } |
OLD | NEW |