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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 "//ui/display:display_unittests", | 180 "//ui/display:display_unittests", |
181 "//ui/events:events_unittests", | 181 "//ui/events:events_unittests", |
182 "//ui/gl:gl_unittests", | 182 "//ui/gl:gl_unittests", |
183 "//ui/touch_selection:ui_touch_selection_unittests", | 183 "//ui/touch_selection:ui_touch_selection_unittests", |
184 ] | 184 ] |
185 } else { | 185 } else { |
186 deps += [ | 186 deps += [ |
187 "//ios/net:ios_net_unittests", | 187 "//ios/net:ios_net_unittests", |
188 "//ios/public/provider/web", | 188 "//ios/public/provider/web", |
189 "//ios/testing:ocmock_support_unittest", | 189 "//ios/testing:ocmock_support_unittest", |
| 190 "//ios/web/shell:ios_web_shell", |
190 "//ios/web:ios_web_unittests", | 191 "//ios/web:ios_web_unittests", |
191 ] | 192 ] |
192 } | 193 } |
193 | 194 |
194 deps += root_extra_deps | 195 deps += root_extra_deps |
195 | 196 |
196 if (enable_extensions) { | 197 if (enable_extensions) { |
197 deps += [ "//extensions/shell:app_shell_unittests" ] | 198 deps += [ "//extensions/shell:app_shell_unittests" ] |
198 } | 199 } |
199 | 200 |
(...skipping 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
804 if (target_cpu == "x86") { | 805 if (target_cpu == "x86") { |
805 deps += [ | 806 deps += [ |
806 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 | 807 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 |
807 ] | 808 ] |
808 } | 809 } |
809 } else { | 810 } else { |
810 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 811 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
811 } | 812 } |
812 } | 813 } |
813 } | 814 } |
OLD | NEW |