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 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
648 | 648 |
649 if (is_linux && !is_chromeos && !is_chromecast) { | 649 if (is_linux && !is_chromeos && !is_chromecast) { |
650 # TODO(GYP): Figure out if any of these should be in gn_all | 650 # TODO(GYP): Figure out if any of these should be in gn_all |
651 # and figure out how cross-platform they are | 651 # and figure out how cross-platform they are |
652 deps += [ | 652 deps += [ |
653 ":gn_mojo_targets", | 653 ":gn_mojo_targets", |
654 "//chrome/browser/resources:extension_resource_demo", | 654 "//chrome/browser/resources:extension_resource_demo", |
655 "//chrome/installer/util:strings", | 655 "//chrome/installer/util:strings", |
656 "//chrome/tools/convert_dict", | 656 "//chrome/tools/convert_dict", |
657 "//components/constrained_window:unit_tests", | 657 "//components/constrained_window:unit_tests", |
658 "//components/filesystem:unittests", | 658 "//components/filesystem:filesystem_service_unittests", |
659 "//components/leveldb:leveldb_service_unittests", | 659 "//components/leveldb:leveldb_service_unittests", |
660 "//components/metrics:serialization", | 660 "//components/metrics:serialization", |
661 "//components/password_manager/content/renderer:browser_tests", | 661 "//components/password_manager/content/renderer:browser_tests", |
662 "//components/rappor:unit_tests", | 662 "//components/rappor:unit_tests", |
663 "//components/sessions:unit_tests", | 663 "//components/sessions:unit_tests", |
664 "//media/blink:media_blink_unittests", | 664 "//media/blink:media_blink_unittests", |
665 "//media/cast:udp_proxy", | 665 "//media/cast:udp_proxy", |
666 "//native_client/src/trusted/debug_stub:gdb_rsp_unittest", | 666 "//native_client/src/trusted/debug_stub:gdb_rsp_unittest", |
667 "//storage/browser:dump_file_system", | 667 "//storage/browser:dump_file_system", |
668 "//third_party/angle:libANGLE", | 668 "//third_party/angle:libANGLE", |
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
940 assert(target_name != "") # Mark as used. | 940 assert(target_name != "") # Mark as used. |
941 sources = invoker.actual_sources | 941 sources = invoker.actual_sources |
942 assert( | 942 assert( |
943 sources == invoker.actual_sources, | 943 sources == invoker.actual_sources, |
944 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 944 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
945 } | 945 } |
946 | 946 |
947 assert_valid_out_dir("_unused") { | 947 assert_valid_out_dir("_unused") { |
948 actual_sources = [ "$root_build_dir/foo" ] | 948 actual_sources = [ "$root_build_dir/foo" ] |
949 } | 949 } |
OLD | NEW |