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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 "//tools/battor_agent", | 177 "//tools/battor_agent", |
178 "//tools/imagediff($host_toolchain)", | 178 "//tools/imagediff($host_toolchain)", |
179 "//tools/telemetry:bitmaptools($host_toolchain)", | 179 "//tools/telemetry:bitmaptools($host_toolchain)", |
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/chrome/app", |
| 188 "//ios/chrome/browser", |
| 189 "//ios/chrome/common", |
| 190 "//ios/chrome:ios_chrome_unittests", |
187 "//ios/net:ios_net_unittests", | 191 "//ios/net:ios_net_unittests", |
188 "//ios/public/provider/chrome/browser", | 192 "//ios/public/provider/chrome/browser", |
189 "//ios/public/provider/web", | 193 "//ios/public/provider/web", |
190 "//ios/testing:ocmock_support_unittest", | 194 "//ios/testing:ocmock_support_unittest", |
191 "//ios/web/shell:ios_web_shell", | 195 "//ios/web/shell:ios_web_shell", |
192 "//ios/web:ios_web_unittests", | 196 "//ios/web:ios_web_unittests", |
193 ] | 197 ] |
194 } | 198 } |
195 | 199 |
196 deps += root_extra_deps | 200 deps += root_extra_deps |
(...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
806 if (target_cpu == "x86") { | 810 if (target_cpu == "x86") { |
807 deps += [ | 811 deps += [ |
808 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 | 812 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 |
809 ] | 813 ] |
810 } | 814 } |
811 } else { | 815 } else { |
812 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 816 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
813 } | 817 } |
814 } | 818 } |
815 } | 819 } |
OLD | NEW |