| 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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 "//third_party/smhasher:murmurhash3", | 307 "//third_party/smhasher:murmurhash3", |
| 308 "//ui/message_center:test_support", | 308 "//ui/message_center:test_support", |
| 309 ] | 309 ] |
| 310 deps -= [ | 310 deps -= [ |
| 311 "//net:net_perftests", | 311 "//net:net_perftests", |
| 312 "//url:url_unittests", | 312 "//url:url_unittests", |
| 313 ] | 313 ] |
| 314 | 314 |
| 315 if (!is_component_build) { | 315 if (!is_component_build) { |
| 316 deps += [ | 316 deps += [ |
| 317 "//components/cronet/android:cronet_package", |
| 317 "//components/cronet/android:cronet_sample_apk", | 318 "//components/cronet/android:cronet_sample_apk", |
| 318 "//components/cronet/android:cronet_sample_test_apk", | 319 "//components/cronet/android:cronet_sample_test_apk", |
| 319 "//components/cronet/android:cronet_test_apk", | 320 "//components/cronet/android:cronet_test_apk", |
| 320 "//components/cronet/android:cronet_test_instrumentation_apk", | 321 "//components/cronet/android:cronet_test_instrumentation_apk", |
| 321 "//components/cronet/android:cronet_unittests", | 322 "//components/cronet/android:cronet_unittests", |
| 322 ] | 323 ] |
| 323 } | 324 } |
| 324 | 325 |
| 325 if (!is_chromecast) { | 326 if (!is_chromecast) { |
| 326 deps += [ | 327 deps += [ |
| (...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 861 if (target_cpu == "x86") { | 862 if (target_cpu == "x86") { |
| 862 deps += [ | 863 deps += [ |
| 863 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 | 864 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 |
| 864 ] | 865 ] |
| 865 } | 866 } |
| 866 } else { | 867 } else { |
| 867 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 868 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
| 868 } | 869 } |
| 869 } | 870 } |
| 870 } | 871 } |
| OLD | NEW |