| 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 657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 668 "//components/password_manager/content/renderer:browser_tests", | 668 "//components/password_manager/content/renderer:browser_tests", |
| 669 "//components/rappor:unit_tests", | 669 "//components/rappor:unit_tests", |
| 670 "//components/sessions:unit_tests", | 670 "//components/sessions:unit_tests", |
| 671 "//media/blink:media_blink_unittests", | 671 "//media/blink:media_blink_unittests", |
| 672 "//media/cast:udp_proxy", | 672 "//media/cast:udp_proxy", |
| 673 "//native_client/src/trusted/debug_stub:gdb_rsp_unittest", | 673 "//native_client/src/trusted/debug_stub:gdb_rsp_unittest", |
| 674 "//storage/browser:dump_file_system", | 674 "//storage/browser:dump_file_system", |
| 675 "//third_party/angle:libANGLE", | 675 "//third_party/angle:libANGLE", |
| 676 "//third_party/angle:libEGL", | 676 "//third_party/angle:libEGL", |
| 677 "//third_party/angle:libGLESv2", | 677 "//third_party/angle:libGLESv2", |
| 678 "//third_party/cld_2:cld_2_dynamic_data_tool", | |
| 679 "//third_party/leveldatabase:leveldb_arena_test", | 678 "//third_party/leveldatabase:leveldb_arena_test", |
| 680 "//third_party/leveldatabase:leveldb_bloom_test", | 679 "//third_party/leveldatabase:leveldb_bloom_test", |
| 681 "//third_party/leveldatabase:leveldb_cache_test", | 680 "//third_party/leveldatabase:leveldb_cache_test", |
| 682 "//third_party/leveldatabase:leveldb_corruption_test", | 681 "//third_party/leveldatabase:leveldb_corruption_test", |
| 683 "//third_party/leveldatabase:leveldb_crc32c_test", | 682 "//third_party/leveldatabase:leveldb_crc32c_test", |
| 684 "//third_party/leveldatabase:leveldb_db_bench", | 683 "//third_party/leveldatabase:leveldb_db_bench", |
| 685 "//third_party/leveldatabase:leveldb_db_test", | 684 "//third_party/leveldatabase:leveldb_db_test", |
| 686 "//third_party/leveldatabase:leveldb_dbformat_test", | 685 "//third_party/leveldatabase:leveldb_dbformat_test", |
| 687 "//third_party/leveldatabase:leveldb_env_test", | 686 "//third_party/leveldatabase:leveldb_env_test", |
| 688 "//third_party/leveldatabase:leveldb_filename_test", | 687 "//third_party/leveldatabase:leveldb_filename_test", |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 945 assert(target_name != "") # Mark as used. | 944 assert(target_name != "") # Mark as used. |
| 946 sources = invoker.actual_sources | 945 sources = invoker.actual_sources |
| 947 assert( | 946 assert( |
| 948 sources == invoker.actual_sources, | 947 sources == invoker.actual_sources, |
| 949 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 948 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
| 950 } | 949 } |
| 951 | 950 |
| 952 assert_valid_out_dir("_unused") { | 951 assert_valid_out_dir("_unused") { |
| 953 actual_sources = [ "$root_build_dir/foo" ] | 952 actual_sources = [ "$root_build_dir/foo" ] |
| 954 } | 953 } |
| OLD | NEW |