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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
218 "//ios/chrome/browser", | 218 "//ios/chrome/browser", |
219 "//ios/chrome/common", | 219 "//ios/chrome/common", |
220 "//ios/net:ios_net_unittests", | 220 "//ios/net:ios_net_unittests", |
221 "//ios/public/provider/chrome/browser", | 221 "//ios/public/provider/chrome/browser", |
222 "//ios/public/provider/web", | 222 "//ios/public/provider/web", |
223 "//ios/testing:ocmock_support_unittest", | 223 "//ios/testing:ocmock_support_unittest", |
224 "//ios/third_party/earl_grey", | 224 "//ios/third_party/earl_grey", |
225 "//ios/web:ios_web_inttests", | 225 "//ios/web:ios_web_inttests", |
226 "//ios/web:ios_web_unittests", | 226 "//ios/web:ios_web_unittests", |
227 "//ios/web/shell:ios_web_shell", | 227 "//ios/web/shell:ios_web_shell", |
228 "//tools/gn(${host_toolchain})", | |
sdefresne
2016/04/27 17:41:53
This is for convenience when working with iOS and
brettw
2016/04/27 23:09:30
I think this makes it a bit confusing about what t
sdefresne
2016/04/28 09:29:12
Ack, removed.
| |
228 ] | 229 ] |
229 } | 230 } |
230 | 231 |
231 deps += root_extra_deps | 232 deps += root_extra_deps |
232 | 233 |
233 if (enable_extensions) { | 234 if (enable_extensions) { |
234 deps += [ "//extensions/shell:app_shell_unittests" ] | 235 deps += [ "//extensions/shell:app_shell_unittests" ] |
235 } | 236 } |
236 | 237 |
237 if (enable_media_router) { | 238 if (enable_media_router) { |
(...skipping 690 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
928 assert(target_name != "") # Mark as used. | 929 assert(target_name != "") # Mark as used. |
929 sources = invoker.actual_sources | 930 sources = invoker.actual_sources |
930 assert( | 931 assert( |
931 sources == invoker.actual_sources, | 932 sources == invoker.actual_sources, |
932 "Do not use a platform name in your output directory (found \"$root_build_ dir\"). http://crbug.com/548283") | 933 "Do not use a platform name in your output directory (found \"$root_build_ dir\"). http://crbug.com/548283") |
933 } | 934 } |
934 | 935 |
935 assert_valid_out_dir("_unused") { | 936 assert_valid_out_dir("_unused") { |
936 actual_sources = [ "$root_build_dir/foo" ] | 937 actual_sources = [ "$root_build_dir/foo" ] |
937 } | 938 } |
OLD | NEW |