| 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 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 "//tools/cygprofile:cygprofile_unittests", | 292 "//tools/cygprofile:cygprofile_unittests", |
| 293 "//tools/imagediff($host_toolchain)", | 293 "//tools/imagediff($host_toolchain)", |
| 294 ] | 294 ] |
| 295 deps -= [ | 295 deps -= [ |
| 296 "//net:net_perftests", | 296 "//net:net_perftests", |
| 297 "//url:url_unittests", | 297 "//url:url_unittests", |
| 298 ] | 298 ] |
| 299 | 299 |
| 300 if (!is_component_build) { | 300 if (!is_component_build) { |
| 301 deps += [ | 301 deps += [ |
| 302 "//components/cronet/android:cronet_package", |
| 302 "//components/cronet/android:cronet_sample_apk", | 303 "//components/cronet/android:cronet_sample_apk", |
| 303 "//components/cronet/android:cronet_sample_test_apk", | 304 "//components/cronet/android:cronet_sample_test_apk", |
| 304 "//components/cronet/android:cronet_test_apk", | 305 "//components/cronet/android:cronet_test_apk", |
| 305 "//components/cronet/android:cronet_test_instrumentation_apk", | 306 "//components/cronet/android:cronet_test_instrumentation_apk", |
| 306 "//components/cronet/android:cronet_unittests", | 307 "//components/cronet/android:cronet_unittests", |
| 307 ] | 308 ] |
| 308 } | 309 } |
| 309 | 310 |
| 310 if (!is_chromecast) { | 311 if (!is_chromecast) { |
| 311 deps += [ | 312 deps += [ |
| (...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 857 ] | 858 ] |
| 858 | 859 |
| 859 if (target_cpu == "x86") { | 860 if (target_cpu == "x86") { |
| 860 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] | 861 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] |
| 861 } | 862 } |
| 862 } else { | 863 } else { |
| 863 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 864 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
| 864 } | 865 } |
| 865 } | 866 } |
| 866 } | 867 } |
| OLD | NEW |