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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 # The "both_gn_and_gyp" target should reflect every target that is built | 60 # The "both_gn_and_gyp" target should reflect every target that is built |
61 # in both the GN and GYP builds, and ideally it should match the | 61 # in both the GN and GYP builds, and ideally it should match the |
62 # "both_gn_and_gyp" target in build/gn_migration.gypi line-for-line. | 62 # "both_gn_and_gyp" target in build/gn_migration.gypi line-for-line. |
63 # | 63 # |
64 # TODO(GYP): Add build steps that check and enforce this on the bots. | 64 # TODO(GYP): Add build steps that check and enforce this on the bots. |
65 group("both_gn_and_gyp") { | 65 group("both_gn_and_gyp") { |
66 testonly = true | 66 testonly = true |
67 deps = [ | 67 deps = [ |
68 "//base:base_unittests", | 68 "//base:base_unittests", |
69 "//chrome/installer", | 69 "//chrome/installer", |
| 70 "//components:components_unittests", |
70 "//net:net_unittests", | 71 "//net:net_unittests", |
71 "//skia:skia_unittests", | 72 "//skia:skia_unittests", |
72 "//sql:sql_unittests", | 73 "//sql:sql_unittests", |
73 "//sync:sync_unit_tests", | 74 "//sync:sync_unit_tests", |
74 "//ui/base:ui_base_unittests", | 75 "//ui/base:ui_base_unittests", |
75 "//ui/gfx:gfx_unittests", | 76 "//ui/gfx:gfx_unittests", |
76 "//url:url_unittests", | 77 "//url:url_unittests", |
77 ] | 78 ] |
78 | 79 |
79 if (!is_ios) { | 80 if (!is_ios) { |
80 # TODO(GYP): Figure out which of these should actually build on iOS, | 81 # TODO(GYP): Figure out which of these should actually build on iOS, |
81 # and whether there should be other targets that are iOS-only and missing. | 82 # and whether there should be other targets that are iOS-only and missing. |
82 deps += [ | 83 deps += [ |
83 "//cc:cc_unittests", | 84 "//cc:cc_unittests", |
84 "//chrome", | 85 "//chrome", |
85 "//chrome/test:browser_tests", | 86 "//chrome/test:browser_tests", |
86 "//chrome/test:interactive_ui_tests", | 87 "//chrome/test:interactive_ui_tests", |
87 "//chrome/test:sync_integration_tests", | 88 "//chrome/test:sync_integration_tests", |
88 "//chrome/test:unit_tests", | 89 "//chrome/test:unit_tests", |
89 "//chrome/test/chromedriver:chromedriver_unittests", | 90 "//chrome/test/chromedriver:chromedriver_unittests", |
90 "//components:components_browsertests", | 91 "//components:components_browsertests", |
91 "//components:components_unittests", | |
92 "//content/shell:content_shell", | 92 "//content/shell:content_shell", |
93 "//content/test:content_browsertests", | 93 "//content/test:content_browsertests", |
94 "//content/test:content_perftests", | 94 "//content/test:content_perftests", |
95 "//content/test:content_unittests", | 95 "//content/test:content_unittests", |
96 "//crypto:crypto_unittests", | 96 "//crypto:crypto_unittests", |
97 "//device:device_unittests", | 97 "//device:device_unittests", |
98 "//extensions:extensions_browsertests", | 98 "//extensions:extensions_browsertests", |
99 "//extensions:extensions_unittests", | 99 "//extensions:extensions_unittests", |
100 "//google_apis/gcm:gcm_unit_tests", | 100 "//google_apis/gcm:gcm_unit_tests", |
101 "//gpu:gpu_unittests", | 101 "//gpu:gpu_unittests", |
(...skipping 831 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
933 "//ui/views:views_unittests", # TooltipControllerTest failures | 933 "//ui/views:views_unittests", # TooltipControllerTest failures |
934 "//ui/wm:wm_unittests", # PASSES 4/21/2015 | 934 "//ui/wm:wm_unittests", # PASSES 4/21/2015 |
935 "//url:url_unittests", # PASSES 4/17/2015 | 935 "//url:url_unittests", # PASSES 4/17/2015 |
936 | 936 |
937 # TODO(GYP) nacl_integration | 937 # TODO(GYP) nacl_integration |
938 # TODO(GYP) telemetry_perf_unittests | 938 # TODO(GYP) telemetry_perf_unittests |
939 # TODO(GYP) telemetry_unittests | 939 # TODO(GYP) telemetry_unittests |
940 ] | 940 ] |
941 } | 941 } |
942 } | 942 } |
OLD | NEW |