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/egl", | |
tfarina
2015/03/07 18:13:47
I just added this line here to test it. I will rem
| |
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:net_unittests", | 66 "//net:net_unittests", |
66 "//ppapi:ppapi_unittests", | 67 "//ppapi:ppapi_unittests", |
67 "//ppapi/examples", # TODO(GYP): What's the GYP equivalent? | 68 "//ppapi/examples", # TODO(GYP): What's the GYP equivalent? |
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
330 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015 | 331 "//ui/touch_selection:ui_touch_selection_unittests", # PASSES 2/25/2015 |
331 "//ui/views:views_unittests", # PASSES (*) 2/25/2015 | 332 "//ui/views:views_unittests", # PASSES (*) 2/25/2015 |
332 "//ui/wm:wm_unittests", # PASSES 2/25/2015 | 333 "//ui/wm:wm_unittests", # PASSES 2/25/2015 |
333 "//url:url_unittests", # PASSES 2/25/2015 | 334 "//url:url_unittests", # PASSES 2/25/2015 |
334 | 335 |
335 # Note: | 336 # Note: |
336 # (*) Fails but failures match GYP build at time of testing. | 337 # (*) Fails but failures match GYP build at time of testing. |
337 ] | 338 ] |
338 } | 339 } |
339 } | 340 } |
OLD | NEW |