| 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 704 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 715 "//chrome/browser/resources:extension_resource_demo", | 715 "//chrome/browser/resources:extension_resource_demo", |
| 716 "//chrome/installer/util:strings", | 716 "//chrome/installer/util:strings", |
| 717 "//chrome/tools/convert_dict", | 717 "//chrome/tools/convert_dict", |
| 718 "//components/constrained_window:unit_tests", | 718 "//components/constrained_window:unit_tests", |
| 719 "//components/filesystem:filesystem_service_unittests", | 719 "//components/filesystem:filesystem_service_unittests", |
| 720 "//components/leveldb:leveldb_service_unittests", | 720 "//components/leveldb:leveldb_service_unittests", |
| 721 "//components/metrics:serialization", | 721 "//components/metrics:serialization", |
| 722 "//components/password_manager/content/renderer:browser_tests", | 722 "//components/password_manager/content/renderer:browser_tests", |
| 723 "//components/rappor:unit_tests", | 723 "//components/rappor:unit_tests", |
| 724 "//components/sessions:unit_tests", | 724 "//components/sessions:unit_tests", |
| 725 "//flto_repro", |
| 725 "//media/blink:media_blink_unittests", | 726 "//media/blink:media_blink_unittests", |
| 726 "//media/cast:udp_proxy", | 727 "//media/cast:udp_proxy", |
| 727 "//native_client/src/trusted/debug_stub:gdb_rsp_unittest", | 728 "//native_client/src/trusted/debug_stub:gdb_rsp_unittest", |
| 728 "//storage/browser:dump_file_system", | 729 "//storage/browser:dump_file_system", |
| 729 "//third_party/angle:libANGLE", | 730 "//third_party/angle:libANGLE", |
| 730 "//third_party/angle:libEGL", | 731 "//third_party/angle:libEGL", |
| 731 "//third_party/angle:libGLESv2", | 732 "//third_party/angle:libGLESv2", |
| 732 "//third_party/leveldatabase:leveldb_arena_test", | 733 "//third_party/leveldatabase:leveldb_arena_test", |
| 733 "//third_party/leveldatabase:leveldb_bloom_test", | 734 "//third_party/leveldatabase:leveldb_bloom_test", |
| 734 "//third_party/leveldatabase:leveldb_cache_test", | 735 "//third_party/leveldatabase:leveldb_cache_test", |
| (...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1033 assert(target_name != "") # Mark as used. | 1034 assert(target_name != "") # Mark as used. |
| 1034 sources = invoker.actual_sources | 1035 sources = invoker.actual_sources |
| 1035 assert( | 1036 assert( |
| 1036 sources == invoker.actual_sources, | 1037 sources == invoker.actual_sources, |
| 1037 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 1038 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
| 1038 } | 1039 } |
| 1039 | 1040 |
| 1040 assert_valid_out_dir("_unused") { | 1041 assert_valid_out_dir("_unused") { |
| 1041 actual_sources = [ "$root_build_dir/foo" ] | 1042 actual_sources = [ "$root_build_dir/foo" ] |
| 1042 } | 1043 } |
| OLD | NEW |