| 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 756 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 767 "//components/metrics:serialization", | 767 "//components/metrics:serialization", |
| 768 "//components/password_manager/content/renderer:browser_tests", | 768 "//components/password_manager/content/renderer:browser_tests", |
| 769 "//components/rappor:unit_tests", | 769 "//components/rappor:unit_tests", |
| 770 "//components/sessions:unit_tests", | 770 "//components/sessions:unit_tests", |
| 771 "//media/blink:media_blink_unittests", | 771 "//media/blink:media_blink_unittests", |
| 772 "//media/cast:udp_proxy", | 772 "//media/cast:udp_proxy", |
| 773 "//storage/browser:dump_file_system", | 773 "//storage/browser:dump_file_system", |
| 774 "//third_party/angle:libANGLE", | 774 "//third_party/angle:libANGLE", |
| 775 "//third_party/angle:libEGL", | 775 "//third_party/angle:libEGL", |
| 776 "//third_party/angle:libGLESv2", | 776 "//third_party/angle:libGLESv2", |
| 777 "//third_party/leveldatabase:leveldb_arena_test", | 777 "//third_party/leveldatabase:leveldb_test_targets", |
| 778 "//third_party/leveldatabase:leveldb_bloom_test", | |
| 779 "//third_party/leveldatabase:leveldb_cache_test", | |
| 780 "//third_party/leveldatabase:leveldb_corruption_test", | |
| 781 "//third_party/leveldatabase:leveldb_crc32c_test", | |
| 782 "//third_party/leveldatabase:leveldb_db_bench", | |
| 783 "//third_party/leveldatabase:leveldb_db_test", | |
| 784 "//third_party/leveldatabase:leveldb_dbformat_test", | |
| 785 "//third_party/leveldatabase:leveldb_env_test", | |
| 786 "//third_party/leveldatabase:leveldb_filename_test", | |
| 787 "//third_party/leveldatabase:leveldb_filter_block_test", | |
| 788 "//third_party/leveldatabase:leveldb_log_test", | |
| 789 "//third_party/leveldatabase:leveldb_skiplist_test", | |
| 790 "//third_party/leveldatabase:leveldb_table_test", | |
| 791 "//third_party/leveldatabase:leveldb_version_edit_test", | |
| 792 "//third_party/leveldatabase:leveldb_write_batch_test", | |
| 793 "//third_party/libjpeg_turbo:simd", | 778 "//third_party/libjpeg_turbo:simd", |
| 794 "//third_party/opus:opus_compare", | 779 "//third_party/opus:opus_compare", |
| 795 "//third_party/opus:opus_demo", | 780 "//third_party/opus:opus_demo", |
| 796 "//third_party/opus:test_opus_api", | 781 "//third_party/opus:test_opus_api", |
| 797 "//third_party/opus:test_opus_decode", | 782 "//third_party/opus:test_opus_decode", |
| 798 "//third_party/opus:test_opus_encode", | 783 "//third_party/opus:test_opus_encode", |
| 799 "//third_party/opus:test_opus_padding", | 784 "//third_party/opus:test_opus_padding", |
| 800 "//third_party/pdfium/third_party:fx_freetype", | 785 "//third_party/pdfium/third_party:fx_freetype", |
| 801 "//third_party/webrtc/system_wrappers:field_trial_default", | 786 "//third_party/webrtc/system_wrappers:field_trial_default", |
| 802 "//third_party/webrtc/system_wrappers:metrics_default", | 787 "//third_party/webrtc/system_wrappers:metrics_default", |
| (...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1108 assert(target_name != "") # Mark as used. | 1093 assert(target_name != "") # Mark as used. |
| 1109 sources = invoker.actual_sources | 1094 sources = invoker.actual_sources |
| 1110 assert( | 1095 assert( |
| 1111 sources == invoker.actual_sources, | 1096 sources == invoker.actual_sources, |
| 1112 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 1097 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
| 1113 } | 1098 } |
| 1114 | 1099 |
| 1115 assert_valid_out_dir("_unused") { | 1100 assert_valid_out_dir("_unused") { |
| 1116 actual_sources = [ "$root_build_dir/foo" ] | 1101 actual_sources = [ "$root_build_dir/foo" ] |
| 1117 } | 1102 } |
| OLD | NEW |