| 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 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 "//extensions:extensions_browsertests", # PASSES 2/25/2015 | 294 "//extensions:extensions_browsertests", # PASSES 2/25/2015 |
| 295 "//extensions:extensions_unittests", # PASSES 2/25/2015 | 295 "//extensions:extensions_unittests", # PASSES 2/25/2015 |
| 296 "//extensions/shell:app_shell_unittests", # PASSES 2/25/2015 | 296 "//extensions/shell:app_shell_unittests", # PASSES 2/25/2015 |
| 297 "//google_apis/gcm:gcm_unit_tests", # PASSES 2/25/2015 | 297 "//google_apis/gcm:gcm_unit_tests", # PASSES 2/25/2015 |
| 298 "//google_apis:google_apis_unittests", # PASSES 2/25/2015 | 298 "//google_apis:google_apis_unittests", # PASSES 2/25/2015 |
| 299 "//gpu:gpu_unittests", # PASSES 2/25/2015 | 299 "//gpu:gpu_unittests", # PASSES 2/25/2015 |
| 300 "//ipc:ipc_tests", # PASSES 2/25/2015 | 300 "//ipc:ipc_tests", # PASSES 2/25/2015 |
| 301 "//ipc/mojo:ipc_mojo_unittests", # PASSES 2/25/2015 | 301 "//ipc/mojo:ipc_mojo_unittests", # PASSES 2/25/2015 |
| 302 "//jingle:jingle_unittests", # PASSES 2/25/2015 | 302 "//jingle:jingle_unittests", # PASSES 2/25/2015 |
| 303 "//media/cast:cast_unittests", # PASSES 2/25/2015 | 303 "//media/cast:cast_unittests", # PASSES 2/25/2015 |
| 304 "//media:media_unittests", # TODO(GYP) MidiManagerTest fails. | 304 "//media:media_unittests", # PASSES 3/3/2015 |
| 305 "//mojo/common:mojo_common_unittests", # PASSES 2/25/2015 | 305 "//mojo/common:mojo_common_unittests", # PASSES 2/25/2015 |
| 306 "//net:net_unittests", # PASSES 2/25/2015 | 306 "//net:net_unittests", # PASSES 2/25/2015 |
| 307 "//printing:printing_unittests", # PASSES 2/25/2015 | 307 "//printing:printing_unittests", # PASSES 2/25/2015 |
| 308 "//sandbox/linux:sandbox_linux_unittests", # PASSES 2/25/2015 | 308 "//sandbox/linux:sandbox_linux_unittests", # PASSES 2/25/2015 |
| 309 "//skia:skia_unittests", # PASSES 2/25/2015 | 309 "//skia:skia_unittests", # PASSES 2/25/2015 |
| 310 "//sql:sql_unittests", # PASSES 2/25/2015 | 310 "//sql:sql_unittests", # PASSES 2/25/2015 |
| 311 "//sync:sync_unit_tests", # PASSES 2/25/2015 | 311 "//sync:sync_unit_tests", # PASSES 2/25/2015 |
| 312 "//third_party/cacheinvalidation:cacheinvalidation_unittests", # PASSES 2
/25/2015 | 312 "//third_party/cacheinvalidation:cacheinvalidation_unittests", # PASSES 2
/25/2015 |
| 313 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", # PASSES
2/25/2015 | 313 "//third_party/mojo/src/mojo/edk/system:mojo_system_unittests", # PASSES
2/25/2015 |
| 314 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests", #
PASSES 2/25/2015 | 314 "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittests", #
PASSES 2/25/2015 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 325 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015 | 325 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015 |
| 326 "//ui/views:views_unittests", # PASSES (*) 2/25/2015 | 326 "//ui/views:views_unittests", # PASSES (*) 2/25/2015 |
| 327 "//ui/wm:wm_unittests", # PASSES 2/25/2015 | 327 "//ui/wm:wm_unittests", # PASSES 2/25/2015 |
| 328 "//url:url_unittests", # PASSES 2/25/2015 | 328 "//url:url_unittests", # PASSES 2/25/2015 |
| 329 | 329 |
| 330 # Note: | 330 # Note: |
| 331 # (*) Fails but failures match GYP build at time of testing. | 331 # (*) Fails but failures match GYP build at time of testing. |
| 332 ] | 332 ] |
| 333 } | 333 } |
| 334 } | 334 } |
| OLD | NEW |