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 633 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
644 "//components/filesystem:unittests", | 644 "//components/filesystem:unittests", |
645 "//components/leveldb:leveldb_service_unittests", | 645 "//components/leveldb:leveldb_service_unittests", |
646 "//components/metrics:serialization", | 646 "//components/metrics:serialization", |
647 "//components/password_manager/content/renderer:browser_tests", | 647 "//components/password_manager/content/renderer:browser_tests", |
648 "//components/rappor:unit_tests", | 648 "//components/rappor:unit_tests", |
649 "//components/sessions:unit_tests", | 649 "//components/sessions:unit_tests", |
650 "//media/blink:media_blink_unittests", | 650 "//media/blink:media_blink_unittests", |
651 "//media/cast:udp_proxy", | 651 "//media/cast:udp_proxy", |
652 "//native_client/src/trusted/debug_stub:gdb_rsp_unittest", | 652 "//native_client/src/trusted/debug_stub:gdb_rsp_unittest", |
653 "//storage/browser:dump_file_system", | 653 "//storage/browser:dump_file_system", |
| 654 "//testing/libfuzzer/fuzzers", |
| 655 "//testing/libfuzzer/tests:libfuzzer_tests", |
654 "//third_party/angle:libANGLE", | 656 "//third_party/angle:libANGLE", |
655 "//third_party/angle:libEGL", | 657 "//third_party/angle:libEGL", |
656 "//third_party/angle:libGLESv2", | 658 "//third_party/angle:libGLESv2", |
657 "//third_party/cld_2:cld_2_dynamic_data_tool", | 659 "//third_party/cld_2:cld_2_dynamic_data_tool", |
658 "//third_party/leveldatabase:leveldb_arena_test", | 660 "//third_party/leveldatabase:leveldb_arena_test", |
659 "//third_party/leveldatabase:leveldb_bloom_test", | 661 "//third_party/leveldatabase:leveldb_bloom_test", |
660 "//third_party/leveldatabase:leveldb_cache_test", | 662 "//third_party/leveldatabase:leveldb_cache_test", |
661 "//third_party/leveldatabase:leveldb_corruption_test", | 663 "//third_party/leveldatabase:leveldb_corruption_test", |
662 "//third_party/leveldatabase:leveldb_crc32c_test", | 664 "//third_party/leveldatabase:leveldb_crc32c_test", |
663 "//third_party/leveldatabase:leveldb_db_bench", | 665 "//third_party/leveldatabase:leveldb_db_bench", |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
711 } | 713 } |
712 if (use_ozone) { | 714 if (use_ozone) { |
713 deps += [ "//ui/ozone/demo" ] | 715 deps += [ "//ui/ozone/demo" ] |
714 } | 716 } |
715 | 717 |
716 if (is_linux && current_toolchain == host_toolchain) { | 718 if (is_linux && current_toolchain == host_toolchain) { |
717 deps += [ "//v8:d8" ] | 719 deps += [ "//v8:d8" ] |
718 } | 720 } |
719 } | 721 } |
720 | 722 |
721 if ((is_linux && !is_chromeos && !is_chromecast) || is_mac) { | |
722 deps += [ | |
723 "//testing/libfuzzer/fuzzers", | |
724 "//testing/libfuzzer/tests:libfuzzer_tests", | |
725 ] | |
726 } | |
727 | |
728 if (enable_nacl) { | 723 if (enable_nacl) { |
729 deps += [ "//native_client_sdk/src:nacl_core_sdk" ] | 724 deps += [ "//native_client_sdk/src:nacl_core_sdk" ] |
730 } | 725 } |
731 | 726 |
732 if (is_android) { | 727 if (is_android) { |
733 deps += [ | 728 deps += [ |
734 "//build/android/gyp/test:hello_world", | 729 "//build/android/gyp/test:hello_world", |
735 "//build/android/incremental_install:bootstrap_java", | 730 "//build/android/incremental_install:bootstrap_java", |
736 ] | 731 ] |
737 } | 732 } |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
907 assert(target_name != "") # Mark as used. | 902 assert(target_name != "") # Mark as used. |
908 sources = invoker.actual_sources | 903 sources = invoker.actual_sources |
909 assert( | 904 assert( |
910 sources == invoker.actual_sources, | 905 sources == invoker.actual_sources, |
911 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 906 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
912 } | 907 } |
913 | 908 |
914 assert_valid_out_dir("_unused") { | 909 assert_valid_out_dir("_unused") { |
915 actual_sources = [ "$root_build_dir/foo" ] | 910 actual_sources = [ "$root_build_dir/foo" ] |
916 } | 911 } |
OLD | NEW |