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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
286 "//testing/android/junit:junit_unittests", | 286 "//testing/android/junit:junit_unittests", |
287 "//third_party/android_tools:uiautomator_java", | 287 "//third_party/android_tools:uiautomator_java", |
288 "//third_party/errorprone:chromium_errorprone", | 288 "//third_party/errorprone:chromium_errorprone", |
289 "//third_party/smhasher:murmurhash3", | 289 "//third_party/smhasher:murmurhash3", |
290 "//tools/android:android_tools", | 290 "//tools/android:android_tools", |
291 "//tools/android:memconsumer", | 291 "//tools/android:memconsumer", |
292 "//tools/android/heap_profiler:heap_profiler_unittests", | 292 "//tools/android/heap_profiler:heap_profiler_unittests", |
293 "//tools/android/kerberos/SpnegoAuthenticator:spnego_authenticator_apk", | 293 "//tools/android/kerberos/SpnegoAuthenticator:spnego_authenticator_apk", |
294 "//tools/cygprofile:cygprofile_unittests", | 294 "//tools/cygprofile:cygprofile_unittests", |
295 "//tools/imagediff($host_toolchain)", | 295 "//tools/imagediff($host_toolchain)", |
| 296 "//ui/android:ui_junit_tests", |
296 ] | 297 ] |
297 deps -= [ | 298 deps -= [ |
298 "//net:net_perftests", | 299 "//net:net_perftests", |
299 "//url:url_unittests", | 300 "//url:url_unittests", |
300 ] | 301 ] |
301 | 302 |
302 if (!is_component_build) { | 303 if (!is_component_build) { |
303 deps += [ | 304 deps += [ |
304 "//components/cronet/android:cronet_package", | 305 "//components/cronet/android:cronet_package", |
305 "//components/cronet/android:cronet_sample_apk", | 306 "//components/cronet/android:cronet_sample_apk", |
(...skipping 562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
868 ] | 869 ] |
869 | 870 |
870 if (target_cpu == "x86") { | 871 if (target_cpu == "x86") { |
871 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] | 872 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] |
872 } | 873 } |
873 } else { | 874 } else { |
874 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 875 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
875 } | 876 } |
876 } | 877 } |
877 } | 878 } |
OLD | NEW |