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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 "//ui/app_list:app_list_unittests", | 173 "//ui/app_list:app_list_unittests", |
174 "//ui/display:display_unittests", | 174 "//ui/display:display_unittests", |
175 "//ui/events:events_unittests", | 175 "//ui/events:events_unittests", |
176 "//ui/gl:gl_unittests", | 176 "//ui/gl:gl_unittests", |
177 "//ui/touch_selection:ui_touch_selection_unittests", | 177 "//ui/touch_selection:ui_touch_selection_unittests", |
178 ] | 178 ] |
179 } else { | 179 } else { |
180 deps += [ | 180 deps += [ |
181 "//ios/net:ios_net_unittests", | 181 "//ios/net:ios_net_unittests", |
182 "//ios/testing:ocmock_support_unittest", | 182 "//ios/testing:ocmock_support_unittest", |
183 "//ios/third_party/gcdwebserver", | 183 "//ios/web:ios_web_unittests", |
184 "//ios/third_party/blink:html_tokenizer", | |
185 ] | 184 ] |
186 } | 185 } |
187 | 186 |
188 deps += root_extra_deps | 187 deps += root_extra_deps |
189 | 188 |
190 if (enable_extensions && !is_mac) { | 189 if (enable_extensions && !is_mac) { |
191 # TODO(GYP): Get this working on the mac? | 190 # TODO(GYP): Get this working on the mac? |
192 deps += [ "//extensions/shell:app_shell_unittests" ] | 191 deps += [ "//extensions/shell:app_shell_unittests" ] |
193 } | 192 } |
194 | 193 |
(...skipping 665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
860 if (target_cpu == "x86") { | 859 if (target_cpu == "x86") { |
861 deps += [ | 860 deps += [ |
862 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 | 861 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 |
863 ] | 862 ] |
864 } | 863 } |
865 } else { | 864 } else { |
866 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 865 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
867 } | 866 } |
868 } | 867 } |
869 } | 868 } |
OLD | NEW |