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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 # The "both_gn_and_gyp" target should reflect every target that is built | 59 # The "both_gn_and_gyp" target should reflect every target that is built |
60 # in both the GN and GYP builds, and ideally it should match the | 60 # in both the GN and GYP builds, and ideally it should match the |
61 # "both_gn_and_gyp" target in build/gn_migration.gypi line-for-line. | 61 # "both_gn_and_gyp" target in build/gn_migration.gypi line-for-line. |
62 # | 62 # |
63 # TODO(GYP): Add build steps that check and enforce this on the bots. | 63 # TODO(GYP): Add build steps that check and enforce this on the bots. |
64 group("both_gn_and_gyp") { | 64 group("both_gn_and_gyp") { |
65 testonly = true | 65 testonly = true |
66 deps = [ | 66 deps = [ |
67 "//base:base_unittests", | 67 "//base:base_unittests", |
68 "//sync:sync_unit_tests", | 68 "//sync:sync_unit_tests", |
| 69 "//ui/base:ui_base_unittests", |
69 ] | 70 ] |
70 if (!is_ios) { | 71 if (!is_ios) { |
71 deps += [ | 72 deps += [ |
72 "//cc:cc_unittests", | 73 "//cc:cc_unittests", |
73 "//chrome", | 74 "//chrome", |
74 "//chrome/test:browser_tests", | 75 "//chrome/test:browser_tests", |
75 "//chrome/test:interactive_ui_tests", | 76 "//chrome/test:interactive_ui_tests", |
76 "//chrome/test:sync_integration_tests", | 77 "//chrome/test:sync_integration_tests", |
77 "//chrome/test:unit_tests", | 78 "//chrome/test:unit_tests", |
78 "//chrome/test/chromedriver:chromedriver_unittests", | 79 "//chrome/test/chromedriver:chromedriver_unittests", |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests", | 148 "//third_party/mojo/src/mojo/edk/test:mojo_public_utility_unittests", |
148 "//third_party/pdfium/samples:pdfium_test", | 149 "//third_party/pdfium/samples:pdfium_test", |
149 "//third_party/smhasher:pmurhash", | 150 "//third_party/smhasher:pmurhash", |
150 "//tools/imagediff($host_toolchain)", | 151 "//tools/imagediff($host_toolchain)", |
151 "//tools/gn", | 152 "//tools/gn", |
152 "//tools/gn:gn_unittests", | 153 "//tools/gn:gn_unittests", |
153 "//tools/gn:generate_test_gn_data", | 154 "//tools/gn:generate_test_gn_data", |
154 "//tools/telemetry:bitmaptools($host_toolchain)", | 155 "//tools/telemetry:bitmaptools($host_toolchain)", |
155 "//ui/accessibility:accessibility_unittests", | 156 "//ui/accessibility:accessibility_unittests", |
156 "//ui/app_list:app_list_unittests", | 157 "//ui/app_list:app_list_unittests", |
157 "//ui/base:ui_base_unittests", | |
158 "//ui/display:display_unittests", | 158 "//ui/display:display_unittests", |
159 "//ui/events:events_unittests", | 159 "//ui/events:events_unittests", |
160 "//ui/gfx:gfx_unittests", | 160 "//ui/gfx:gfx_unittests", |
161 "//ui/gl:gl_unittests", | 161 "//ui/gl:gl_unittests", |
162 "//ui/touch_selection:ui_touch_selection_unittests", | 162 "//ui/touch_selection:ui_touch_selection_unittests", |
163 "//url:url_unittests", | 163 "//url:url_unittests", |
164 ] | 164 ] |
165 } | 165 } |
166 | 166 |
167 deps += root_extra_deps | 167 deps += root_extra_deps |
(...skipping 758 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
926 "//ui/views:views_unittests", # TooltipControllerTest failures | 926 "//ui/views:views_unittests", # TooltipControllerTest failures |
927 "//ui/wm:wm_unittests", # PASSES 4/21/2015 | 927 "//ui/wm:wm_unittests", # PASSES 4/21/2015 |
928 "//url:url_unittests", # PASSES 4/17/2015 | 928 "//url:url_unittests", # PASSES 4/17/2015 |
929 | 929 |
930 # TODO(GYP) nacl_integration | 930 # TODO(GYP) nacl_integration |
931 # TODO(GYP) telemetry_perf_unittests | 931 # TODO(GYP) telemetry_perf_unittests |
932 # TODO(GYP) telemetry_unittests | 932 # TODO(GYP) telemetry_unittests |
933 ] | 933 ] |
934 } | 934 } |
935 } | 935 } |
OLD | NEW |