| 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 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 "//ppapi/examples/video_encode", | 265 "//ppapi/examples/video_encode", |
| 266 "//printing:printing_unittests", | 266 "//printing:printing_unittests", |
| 267 "//third_party/cacheinvalidation:cacheinvalidation_unittests", | 267 "//third_party/cacheinvalidation:cacheinvalidation_unittests", |
| 268 "//third_party/codesighs", | 268 "//third_party/codesighs", |
| 269 "//third_party/pdfium/samples:pdfium_test", | 269 "//third_party/pdfium/samples:pdfium_test", |
| 270 "//tools/battor_agent", | 270 "//tools/battor_agent", |
| 271 "//tools/battor_agent:battor_agent_unittests", | 271 "//tools/battor_agent:battor_agent_unittests", |
| 272 "//tools/gn", | 272 "//tools/gn", |
| 273 "//tools/gn:gn_unittests", | 273 "//tools/gn:gn_unittests", |
| 274 "//tools/perf/clear_system_cache", | 274 "//tools/perf/clear_system_cache", |
| 275 "//tools/traffic_annotation:traffic_annotation_auditor", |
| 275 "//ui/accessibility:accessibility_unittests", | 276 "//ui/accessibility:accessibility_unittests", |
| 276 ] | 277 ] |
| 277 } | 278 } |
| 278 | 279 |
| 279 if (!is_ios) { | 280 if (!is_ios) { |
| 280 # TODO(GYP): Figure out which of these should actually build on iOS, | 281 # TODO(GYP): Figure out which of these should actually build on iOS, |
| 281 # and whether there should be other targets that are iOS-only and missing. | 282 # and whether there should be other targets that are iOS-only and missing. |
| 282 deps += [ | 283 deps += [ |
| 283 "//cc:cc_unittests", | 284 "//cc:cc_unittests", |
| 284 "//chrome/test:telemetry_perf_unittests", | 285 "//chrome/test:telemetry_perf_unittests", |
| (...skipping 868 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1153 "//ui/display:display_unittests", | 1154 "//ui/display:display_unittests", |
| 1154 "//ui/events:events_unittests", | 1155 "//ui/events:events_unittests", |
| 1155 "//ui/gfx:gfx_unittests", | 1156 "//ui/gfx:gfx_unittests", |
| 1156 "//ui/gl:gl_unittests", | 1157 "//ui/gl:gl_unittests", |
| 1157 "//ui/keyboard:keyboard_unittests", | 1158 "//ui/keyboard:keyboard_unittests", |
| 1158 "//ui/touch_selection:ui_touch_selection_unittests", | 1159 "//ui/touch_selection:ui_touch_selection_unittests", |
| 1159 "//url:url_unittests", | 1160 "//url:url_unittests", |
| 1160 ] | 1161 ] |
| 1161 } | 1162 } |
| 1162 } | 1163 } |
| OLD | NEW |