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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 } else { | 199 } else { |
200 deps += [ | 200 deps += [ |
201 #"//ios/chrome:ios_chrome_unittests", TODO(GYP) | 201 #"//ios/chrome:ios_chrome_unittests", TODO(GYP) |
202 #"//ios/chrome/app", TODO(GYP) | 202 #"//ios/chrome/app", TODO(GYP) |
203 #"//ios/chrome/browser", TODO(GYP) | 203 #"//ios/chrome/browser", TODO(GYP) |
204 "//ios/chrome/common", | 204 "//ios/chrome/common", |
205 "//ios/net:ios_net_unittests", | 205 "//ios/net:ios_net_unittests", |
206 "//ios/public/provider/chrome/browser", | 206 "//ios/public/provider/chrome/browser", |
207 "//ios/public/provider/web", | 207 "//ios/public/provider/web", |
208 "//ios/testing:ocmock_support_unittest", | 208 "//ios/testing:ocmock_support_unittest", |
| 209 "//ios/third_party/fishhook", |
209 "//ios/third_party/ochamcrest", | 210 "//ios/third_party/ochamcrest", |
210 "//ios/web:ios_web_unittests", | 211 "//ios/web:ios_web_unittests", |
211 "//ios/web/shell:ios_web_shell", | 212 "//ios/web/shell:ios_web_shell", |
212 ] | 213 ] |
213 } | 214 } |
214 | 215 |
215 deps += root_extra_deps | 216 deps += root_extra_deps |
216 | 217 |
217 if (enable_extensions) { | 218 if (enable_extensions) { |
218 deps += [ "//extensions/shell:app_shell_unittests" ] | 219 deps += [ "//extensions/shell:app_shell_unittests" ] |
(...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
865 ] | 866 ] |
866 | 867 |
867 if (target_cpu == "x86") { | 868 if (target_cpu == "x86") { |
868 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] | 869 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] |
869 } | 870 } |
870 } else { | 871 } else { |
871 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 872 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
872 } | 873 } |
873 } | 874 } |
874 } | 875 } |
OLD | NEW |