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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 "//gin:gin_unittests", | 273 "//gin:gin_unittests", |
274 "//google_apis:google_apis_unittests", | 274 "//google_apis:google_apis_unittests", |
275 "//google_apis/gcm:mcs_probe", | 275 "//google_apis/gcm:mcs_probe", |
276 "//gpu:angle_unittests", | 276 "//gpu:angle_unittests", |
277 "//gpu:gl_tests", | 277 "//gpu:gl_tests", |
278 | 278 |
279 # TODO(GYP): Remove this when the gles2 tests work | 279 # TODO(GYP): Remove this when the gles2 tests work |
280 "//gpu/command_buffer/client:gles2_implementation_no_check", | 280 "//gpu/command_buffer/client:gles2_implementation_no_check", |
281 | 281 |
282 "//gpu:gpu_perftests", | 282 "//gpu:gpu_perftests", |
| 283 "//gpu/khronos_glcts_support:khronos_glcts_test", # TODO(GYP) crbug.com/4
71903 to make this complete. |
283 "//ipc:ipc_perftests", | 284 "//ipc:ipc_perftests", |
284 "//media:ffmpeg_regression_tests", # TODO(GYP) this should be conditional
on media_use_ffmpeg | 285 "//media:ffmpeg_regression_tests", # TODO(GYP) this should be conditional
on media_use_ffmpeg |
285 "//media:media_perftests", | 286 "//media:media_perftests", |
286 "//media/cast:cast_benchmarks", | 287 "//media/cast:cast_benchmarks", |
287 "//media/cast:generate_barcode_video", | 288 "//media/cast:generate_barcode_video", |
288 "//media/cast:generate_timecode_audio", | 289 "//media/cast:generate_timecode_audio", |
289 "//media/cast:tap_proxy", | 290 "//media/cast:tap_proxy", |
290 "//mojo/application", | 291 "//mojo/application", |
291 "//net:crash_cache", | 292 "//net:crash_cache", |
292 "//net:crl_set_dump", | 293 "//net:crl_set_dump", |
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
656 | 657 |
657 # Note: | 658 # Note: |
658 # (*) Fails but failures match GYP build at time of testing. | 659 # (*) Fails but failures match GYP build at time of testing. |
659 ] | 660 ] |
660 | 661 |
661 if (enable_nacl) { | 662 if (enable_nacl) { |
662 deps += [ "//components/nacl:nacl_loader_unittests" ] # PASSES 3/28/2015 | 663 deps += [ "//components/nacl:nacl_loader_unittests" ] # PASSES 3/28/2015 |
663 } | 664 } |
664 } | 665 } |
665 } | 666 } |
OLD | NEW |