| 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 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 "//third_party/smhasher:murmurhash3", | 309 "//third_party/smhasher:murmurhash3", |
| 310 "//ui/message_center:test_support", | 310 "//ui/message_center:test_support", |
| 311 ] | 311 ] |
| 312 deps -= [ | 312 deps -= [ |
| 313 "//net:net_perftests", | 313 "//net:net_perftests", |
| 314 "//url:url_unittests", | 314 "//url:url_unittests", |
| 315 ] | 315 ] |
| 316 | 316 |
| 317 if (!is_component_build) { | 317 if (!is_component_build) { |
| 318 deps += [ | 318 deps += [ |
| 319 "//components/cronet/android:cronet_package", |
| 319 "//components/cronet/android:cronet_sample_apk", | 320 "//components/cronet/android:cronet_sample_apk", |
| 320 "//components/cronet/android:cronet_sample_test_apk", | 321 "//components/cronet/android:cronet_sample_test_apk", |
| 321 "//components/cronet/android:cronet_test_apk", | 322 "//components/cronet/android:cronet_test_apk", |
| 322 "//components/cronet/android:cronet_test_instrumentation_apk", | 323 "//components/cronet/android:cronet_test_instrumentation_apk", |
| 323 "//components/cronet/android:cronet_unittests", | 324 "//components/cronet/android:cronet_unittests", |
| 324 ] | 325 ] |
| 325 } | 326 } |
| 326 | 327 |
| 327 if (!is_chromecast) { | 328 if (!is_chromecast) { |
| 328 deps += [ | 329 deps += [ |
| (...skipping 539 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 |