| 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 882 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 893 | 893 |
| 894 # This target contains only a small subset of the layout tests, | 894 # This target contains only a small subset of the layout tests, |
| 895 # and is useful for testing with the regular isolate mechanism. | 895 # and is useful for testing with the regular isolate mechanism. |
| 896 # To run the full layout test suite you need to use | 896 # To run the full layout test suite you need to use |
| 897 # :webkit_layout_tests_exparchive, above, instead. | 897 # :webkit_layout_tests_exparchive, above, instead. |
| 898 group("webkit_layout_tests") { | 898 group("webkit_layout_tests") { |
| 899 testonly = true | 899 testonly = true |
| 900 data_deps = [ | 900 data_deps = [ |
| 901 ":layout_test_data_mojo_bindings", | 901 ":layout_test_data_mojo_bindings", |
| 902 "//content/shell:content_shell", | 902 "//content/shell:content_shell", |
| 903 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces", |
| 903 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 904 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
| 904 "//third_party/WebKit/public:blink_devtools_frontend_resources_files", | 905 "//third_party/WebKit/public:blink_devtools_frontend_resources_files", |
| 905 "//third_party/mesa:osmesa", | 906 "//third_party/mesa:osmesa", |
| 906 "//tools/imagediff", | 907 "//tools/imagediff", |
| 907 ] | 908 ] |
| 908 | 909 |
| 909 if (is_android) { | 910 if (is_android) { |
| 910 data_deps += [ | 911 data_deps += [ |
| 911 "//breakpad:breakpad_unittests", | 912 "//breakpad:breakpad_unittests", |
| 912 "//breakpad:dump_syms", | 913 "//breakpad:dump_syms", |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1094 assert(target_name != "") # Mark as used. | 1095 assert(target_name != "") # Mark as used. |
| 1095 sources = invoker.actual_sources | 1096 sources = invoker.actual_sources |
| 1096 assert( | 1097 assert( |
| 1097 sources == invoker.actual_sources, | 1098 sources == invoker.actual_sources, |
| 1098 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 1099 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
| 1099 } | 1100 } |
| 1100 | 1101 |
| 1101 assert_valid_out_dir("_unused") { | 1102 assert_valid_out_dir("_unused") { |
| 1102 actual_sources = [ "$root_build_dir/foo" ] | 1103 actual_sources = [ "$root_build_dir/foo" ] |
| 1103 } | 1104 } |
| OLD | NEW |