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 578 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
589 "//third_party/WebKit/Source/web:webkit_unit_tests", | 589 "//third_party/WebKit/Source/web:webkit_unit_tests", |
590 ] | 590 ] |
591 } | 591 } |
592 | 592 |
593 if (is_win) { | 593 if (is_win) { |
594 deps += [ | 594 deps += [ |
595 "//base:pe_image_test", | 595 "//base:pe_image_test", |
596 "//chrome/installer/setup:setup_unittests", | 596 "//chrome/installer/setup:setup_unittests", |
597 "//chrome_elf:chrome_elf_unittests", | 597 "//chrome_elf:chrome_elf_unittests", |
598 "//chrome_elf:dll_hash_main", | 598 "//chrome_elf:dll_hash_main", |
599 "//cloud_print/service/win:cloud_print_service", | |
600 "//cloud_print:cloud_print_unittests", | |
601 "//components/crash/content/tools:crash_service", | 599 "//components/crash/content/tools:crash_service", |
602 "//components/wifi:wifi_test", | 600 "//components/wifi:wifi_test", |
603 "//net:quic_client", | 601 "//net:quic_client", |
604 "//net:quic_server", | 602 "//net:quic_server", |
605 "//sandbox/win:pocdll", | 603 "//sandbox/win:pocdll", |
606 "//sandbox/win:sandbox_poc", | 604 "//sandbox/win:sandbox_poc", |
607 "//sandbox/win:sbox_integration_tests", | 605 "//sandbox/win:sbox_integration_tests", |
608 "//sandbox/win:sbox_unittests", | 606 "//sandbox/win:sbox_unittests", |
609 "//sandbox/win:sbox_validation_tests", | 607 "//sandbox/win:sbox_validation_tests", |
610 "//testing/gtest:gtest_main", | 608 "//testing/gtest:gtest_main", |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
869 if (target_cpu == "x86") { | 867 if (target_cpu == "x86") { |
870 deps += [ | 868 deps += [ |
871 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 | 869 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 |
872 ] | 870 ] |
873 } | 871 } |
874 } else { | 872 } else { |
875 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 873 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
876 } | 874 } |
877 } | 875 } |
878 } | 876 } |
OLD | NEW |