Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(244)

Side by Side Diff: BUILD.gn

Issue 2853293003: Moving mojo/validation test into LayoutTests (Closed)
Patch Set: moves index file outside data dir Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | mojo/edk/js/tests/run_js_unittests.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 854 matching lines...) Expand 10 before | Expand all | Expand 10 after
865 865
866 # This target contains only a small subset of the layout tests, 866 # This target contains only a small subset of the layout tests,
867 # and is useful for testing with the regular isolate mechanism. 867 # and is useful for testing with the regular isolate mechanism.
868 # To run the full layout test suite you need to use 868 # To run the full layout test suite you need to use
869 # :webkit_layout_tests_exparchive, above, instead. 869 # :webkit_layout_tests_exparchive, above, instead.
870 group("webkit_layout_tests") { 870 group("webkit_layout_tests") {
871 testonly = true 871 testonly = true
872 data_deps = [ 872 data_deps = [
873 ":layout_test_data_mojo_bindings", 873 ":layout_test_data_mojo_bindings",
874 "//content/shell:content_shell", 874 "//content/shell:content_shell",
875 "//mojo/public/interfaces/bindings/tests",
875 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces", 876 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces",
876 "//mojo/public/interfaces/bindings/tests:test_interfaces",
877 "//third_party/WebKit/public:blink_devtools_frontend_resources_files", 877 "//third_party/WebKit/public:blink_devtools_frontend_resources_files",
878 "//third_party/mesa:osmesa", 878 "//third_party/mesa:osmesa",
879 "//tools/imagediff", 879 "//tools/imagediff",
880 ] 880 ]
881 881
882 if (is_android) { 882 if (is_android) {
883 data_deps += [ 883 data_deps += [
884 "//breakpad:breakpad_unittests", 884 "//breakpad:breakpad_unittests",
885 "//breakpad:dump_syms", 885 "//breakpad:dump_syms",
886 "//breakpad:microdump_stackwalk", 886 "//breakpad:microdump_stackwalk",
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
1067 assert(target_name != "") # Mark as used. 1067 assert(target_name != "") # Mark as used.
1068 sources = invoker.actual_sources 1068 sources = invoker.actual_sources
1069 assert( 1069 assert(
1070 sources == invoker.actual_sources, 1070 sources == invoker.actual_sources,
1071 "Do not use a platform name in your output directory (found \"$root_build_ dir\"). http://crbug.com/548283") 1071 "Do not use a platform name in your output directory (found \"$root_build_ dir\"). http://crbug.com/548283")
1072 } 1072 }
1073 1073
1074 assert_valid_out_dir("_unused") { 1074 assert_valid_out_dir("_unused") {
1075 actual_sources = [ "$root_build_dir/foo" ] 1075 actual_sources = [ "$root_build_dir/foo" ]
1076 } 1076 }
OLDNEW
« no previous file with comments | « no previous file | mojo/edk/js/tests/run_js_unittests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698