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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
48 "//components:components_unittests", | 48 "//components:components_unittests", |
49 "//content/shell:content_shell", | 49 "//content/shell:content_shell", |
50 "//content/test:content_browsertests", | 50 "//content/test:content_browsertests", |
51 "//content/test:content_perftests", | 51 "//content/test:content_perftests", |
52 "//content/test:content_unittests", | 52 "//content/test:content_unittests", |
53 "//crypto:crypto_unittests", | 53 "//crypto:crypto_unittests", |
54 "//extensions:extensions_browsertests", | 54 "//extensions:extensions_browsertests", |
55 "//extensions:extensions_unittests", | 55 "//extensions:extensions_unittests", |
56 "//google_apis/gcm:gcm_unit_tests", | 56 "//google_apis/gcm:gcm_unit_tests", |
57 "//gpu:gpu_unittests", | 57 "//gpu:gpu_unittests", |
58 "//gpu/gles2_conform_support:gles2_conform_test", | |
tfarina
2015/03/27 00:11:38
just added this here for testing, I will remove in
| |
58 "//ipc:ipc_tests", | 59 "//ipc:ipc_tests", |
59 "//ipc/mojo:ipc_mojo_unittests", | 60 "//ipc/mojo:ipc_mojo_unittests", |
60 "//jingle:jingle_unittests", | 61 "//jingle:jingle_unittests", |
61 "//media:media_unittests", | 62 "//media:media_unittests", |
62 "//media/cast:cast_unittests", | 63 "//media/cast:cast_unittests", |
63 "//mojo", | 64 "//mojo", |
64 "//mojo/common:mojo_common_unittests", | 65 "//mojo/common:mojo_common_unittests", |
65 "//net:hpack_example_generator", | 66 "//net:hpack_example_generator", |
66 "//net:hpack_fuzz_mutator", | 67 "//net:hpack_fuzz_mutator", |
67 "//net:hpack_fuzz_wrapper", | 68 "//net:hpack_fuzz_wrapper", |
(...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
655 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015 | 656 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015 |
656 "//ui/views:views_unittests", # PASSES (*) 2/25/2015 | 657 "//ui/views:views_unittests", # PASSES (*) 2/25/2015 |
657 "//ui/wm:wm_unittests", # PASSES 2/25/2015 | 658 "//ui/wm:wm_unittests", # PASSES 2/25/2015 |
658 "//url:url_unittests", # PASSES 2/25/2015 | 659 "//url:url_unittests", # PASSES 2/25/2015 |
659 | 660 |
660 # Note: | 661 # Note: |
661 # (*) Fails but failures match GYP build at time of testing. | 662 # (*) Fails but failures match GYP build at time of testing. |
662 ] | 663 ] |
663 } | 664 } |
664 } | 665 } |
OLD | NEW |