| 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 # TODO(GYP): Are these needed? | 307 # TODO(GYP): Are these needed? |
| 308 "//chrome/test:test_support_unit", | 308 "//chrome/test:test_support_unit", |
| 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) { |
| 318 deps += [ |
| 319 "//components/cronet/android:cronet_sample_apk", |
| 320 "//components/cronet/android:cronet_sample_test_apk", |
| 321 "//components/cronet/android:cronet_test_apk", |
| 322 "//components/cronet/android:cronet_test_instrumentation_apk", |
| 323 "//components/cronet/android:cronet_unittests", |
| 324 ] |
| 325 } |
| 326 |
| 317 if (!is_chromecast) { | 327 if (!is_chromecast) { |
| 318 deps += [ | 328 deps += [ |
| 319 "//android_webview", | 329 "//android_webview", |
| 320 "//chrome/android:chrome_junit_tests", | 330 "//chrome/android:chrome_junit_tests", |
| 321 "//chrome/android:chrome_public_apk", | 331 "//chrome/android:chrome_public_apk", |
| 322 "//chrome/android:chrome_public_test_apk", | 332 "//chrome/android:chrome_public_test_apk", |
| 323 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shel
l_apk", | 333 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shel
l_apk", |
| 324 "//third_party/custom_tabs_client:custom_tabs_client_example_apk", | 334 "//third_party/custom_tabs_client:custom_tabs_client_example_apk", |
| 325 ] | 335 ] |
| 326 } | 336 } |
| (...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 858 ] | 868 ] |
| 859 | 869 |
| 860 if (target_cpu == "x86") { | 870 if (target_cpu == "x86") { |
| 861 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] | 871 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] |
| 862 } | 872 } |
| 863 } else { | 873 } else { |
| 864 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 874 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
| 865 } | 875 } |
| 866 } | 876 } |
| 867 } | 877 } |
| OLD | NEW |