| 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 899 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 910 if (is_mac) { | 910 if (is_mac) { |
| 911 deps += [ | 911 deps += [ |
| 912 "//breakpad:dump_syms($host_toolchain)", | 912 "//breakpad:dump_syms($host_toolchain)", |
| 913 "//components/test_runner:layout_test_helper", | 913 "//components/test_runner:layout_test_helper", |
| 914 ] | 914 ] |
| 915 } | 915 } |
| 916 | 916 |
| 917 if (is_linux) { | 917 if (is_linux) { |
| 918 deps += [ "//breakpad:dump_syms($host_toolchain)" ] | 918 deps += [ "//breakpad:dump_syms($host_toolchain)" ] |
| 919 } | 919 } |
| 920 |
| 921 data = [ |
| 922 "//third_party/WebKit/LayoutTests/", |
| 923 "//third_party/WebKit/Tools/Scripts/", |
| 924 ] |
| 920 } | 925 } |
| 921 } | 926 } |
| 922 | 927 |
| 923 # Add a dummy target for compatibility w/ GYP | 928 # Add a dummy target for compatibility w/ GYP |
| 924 group("chromium_swarm_tests") { | 929 group("chromium_swarm_tests") { |
| 925 } | 930 } |
| 926 | 931 |
| 927 group("chromium_builder_perf") { | 932 group("chromium_builder_perf") { |
| 928 testonly = true | 933 testonly = true |
| 929 | 934 |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1045 assert(target_name != "") # Mark as used. | 1050 assert(target_name != "") # Mark as used. |
| 1046 sources = invoker.actual_sources | 1051 sources = invoker.actual_sources |
| 1047 assert( | 1052 assert( |
| 1048 sources == invoker.actual_sources, | 1053 sources == invoker.actual_sources, |
| 1049 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 1054 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
| 1050 } | 1055 } |
| 1051 | 1056 |
| 1052 assert_valid_out_dir("_unused") { | 1057 assert_valid_out_dir("_unused") { |
| 1053 actual_sources = [ "$root_build_dir/foo" ] | 1058 actual_sources = [ "$root_build_dir/foo" ] |
| 1054 } | 1059 } |
| OLD | NEW |