| 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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 "//tools/gn:generate_test_gn_data", | 169 "//tools/gn:generate_test_gn_data", |
| 170 "//tools/perf/clear_system_cache", | 170 "//tools/perf/clear_system_cache", |
| 171 "//tools/telemetry:bitmaptools($host_toolchain)", | 171 "//tools/telemetry:bitmaptools($host_toolchain)", |
| 172 "//ui/accessibility:accessibility_unittests", | 172 "//ui/accessibility:accessibility_unittests", |
| 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 { |
| 180 deps += [ "//ios/net:ios_net_unittests" ] |
| 179 } | 181 } |
| 180 | 182 |
| 181 deps += root_extra_deps | 183 deps += root_extra_deps |
| 182 | 184 |
| 183 if (enable_extensions && !is_mac) { | 185 if (enable_extensions && !is_mac) { |
| 184 # TODO(GYP): Get this working on the mac? | 186 # TODO(GYP): Get this working on the mac? |
| 185 deps += [ "//extensions/shell:app_shell_unittests" ] | 187 deps += [ "//extensions/shell:app_shell_unittests" ] |
| 186 } | 188 } |
| 187 | 189 |
| 188 if (enable_media_router) { | 190 if (enable_media_router) { |
| (...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 849 if (target_cpu == "x86") { | 851 if (target_cpu == "x86") { |
| 850 deps += [ | 852 deps += [ |
| 851 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 | 853 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 |
| 852 ] | 854 ] |
| 853 } | 855 } |
| 854 } else { | 856 } else { |
| 855 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 857 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
| 856 } | 858 } |
| 857 } | 859 } |
| 858 } | 860 } |
| OLD | NEW |