| 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 848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 859 | 859 |
| 860 # This target contains only a small subset of the layout tests, | 860 # This target contains only a small subset of the layout tests, |
| 861 # and is useful for testing with the regular isolate mechanism. | 861 # and is useful for testing with the regular isolate mechanism. |
| 862 # To run the full layout test suite you need to use | 862 # To run the full layout test suite you need to use |
| 863 # :webkit_layout_tests_exparchive, above, instead. | 863 # :webkit_layout_tests_exparchive, above, instead. |
| 864 group("webkit_layout_tests") { | 864 group("webkit_layout_tests") { |
| 865 testonly = true | 865 testonly = true |
| 866 data_deps = [ | 866 data_deps = [ |
| 867 ":layout_test_data_mojo_bindings", | 867 ":layout_test_data_mojo_bindings", |
| 868 "//content/shell:content_shell", | 868 "//content/shell:content_shell", |
| 869 "//mojo/public/interfaces/bindings/tests", | 869 "//content/test:mojo_layouttest_bindings_js_data_deps", |
| 870 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces", | 870 "//device/bluetooth/public/interfaces:fake_bluetooth_interfaces_js_data_de
ps", |
| 871 "//device/generic_sensor/public/interfaces:interfaces_js_data_deps", |
| 872 "//device/geolocation/public/interfaces:interfaces_js_data_deps", |
| 873 "//device/usb/public/interfaces:interfaces_js_data_deps", |
| 874 "//device/vr:mojo_bindings_js_data_deps", |
| 875 "//media/capture/mojo:image_capture_js_data_deps", |
| 876 "//mojo/public/interfaces/bindings/tests:test_data_deps", |
| 877 "//services/device/public/interfaces:interfaces_js_data_deps", |
| 878 "//services/service_manager/public/interfaces:interfaces_js_data_deps", |
| 879 "//services/shape_detection/public/interfaces:interfaces_js_data_deps", |
| 871 "//third_party/WebKit/public:blink_devtools_frontend_resources_files", | 880 "//third_party/WebKit/public:blink_devtools_frontend_resources_files", |
| 881 "//third_party/WebKit/public:mojo_bindings_js_data_deps", |
| 872 "//third_party/mesa:osmesa", | 882 "//third_party/mesa:osmesa", |
| 873 "//tools/imagediff", | 883 "//tools/imagediff", |
| 874 ] | 884 ] |
| 875 | 885 |
| 876 if (is_android) { | 886 if (is_android) { |
| 877 data_deps += [ | 887 data_deps += [ |
| 878 "//breakpad:breakpad_unittests", | 888 "//breakpad:breakpad_unittests", |
| 879 "//breakpad:dump_syms", | 889 "//breakpad:dump_syms", |
| 880 "//breakpad:microdump_stackwalk", | 890 "//breakpad:microdump_stackwalk", |
| 881 "//breakpad:minidump_dump", | 891 "//breakpad:minidump_dump", |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1060 assert(target_name != "") # Mark as used. | 1070 assert(target_name != "") # Mark as used. |
| 1061 sources = invoker.actual_sources | 1071 sources = invoker.actual_sources |
| 1062 assert( | 1072 assert( |
| 1063 sources == invoker.actual_sources, | 1073 sources == invoker.actual_sources, |
| 1064 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 1074 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
| 1065 } | 1075 } |
| 1066 | 1076 |
| 1067 assert_valid_out_dir("_unused") { | 1077 assert_valid_out_dir("_unused") { |
| 1068 actual_sources = [ "$root_build_dir/foo" ] | 1078 actual_sources = [ "$root_build_dir/foo" ] |
| 1069 } | 1079 } |
| OLD | NEW |