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