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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 | 202 |
203 if (is_android) { | 203 if (is_android) { |
204 deps += [ | 204 deps += [ |
205 "//base/android/linker:chromium_android_linker", | 205 "//base/android/linker:chromium_android_linker", |
206 "//build/android/gyp/test:hello_world", | 206 "//build/android/gyp/test:hello_world", |
207 "//build/android/rezip", | 207 "//build/android/rezip", |
208 "//chrome/android:chrome_public_apk", | 208 "//chrome/android:chrome_public_apk", |
209 "//chrome/android:chrome_public_test_apk", | 209 "//chrome/android:chrome_public_test_apk", |
210 "//chrome/android:chrome_shell_apk", | 210 "//chrome/android:chrome_shell_apk", |
211 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shell_
apk", | 211 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shell_
apk", |
| 212 "//third_party/errorprone:chromium_errorprone", |
212 "//tools/imagediff($host_toolchain)", | 213 "//tools/imagediff($host_toolchain)", |
213 | 214 |
214 # TODO(GYP): Remove these when the components_unittests work. | 215 # TODO(GYP): Remove these when the components_unittests work. |
215 "//components/history/core/test:test", | 216 "//components/history/core/test:test", |
216 "//components/policy:policy_component_test_support", | 217 "//components/policy:policy_component_test_support", |
217 "//components/policy:test_support", | 218 "//components/policy:test_support", |
218 "//components/rappor:test_support", | 219 "//components/rappor:test_support", |
219 "//components/signin/core/browser:test_support", | 220 "//components/signin/core/browser:test_support", |
220 "//components/sync_driver:test_support", | 221 "//components/sync_driver:test_support", |
221 "//components/user_manager", | 222 "//components/user_manager", |
(...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
908 "//ui/views:views_unittests", # TooltipControllerTest failures | 909 "//ui/views:views_unittests", # TooltipControllerTest failures |
909 "//ui/wm:wm_unittests", # PASSES 4/21/2015 | 910 "//ui/wm:wm_unittests", # PASSES 4/21/2015 |
910 "//url:url_unittests", # PASSES 4/17/2015 | 911 "//url:url_unittests", # PASSES 4/17/2015 |
911 | 912 |
912 # TODO(GYP) nacl_integration | 913 # TODO(GYP) nacl_integration |
913 # TODO(GYP) telemetry_perf_unittests | 914 # TODO(GYP) telemetry_perf_unittests |
914 # TODO(GYP) telemetry_unittests | 915 # TODO(GYP) telemetry_unittests |
915 ] | 916 ] |
916 } | 917 } |
917 } | 918 } |
OLD | NEW |