| 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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 if (!is_chromecast) { | 284 if (!is_chromecast) { |
| 285 deps += [ | 285 deps += [ |
| 286 "//android_webview:system_webview_apk", | 286 "//android_webview:system_webview_apk", |
| 287 "//chrome/android:chrome_public_apk", | 287 "//chrome/android:chrome_public_apk", |
| 288 "//chrome/android:chrome_public_test_apk", | 288 "//chrome/android:chrome_public_test_apk", |
| 289 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shel
l_apk", | 289 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shel
l_apk", |
| 290 "//third_party/custom_tabs_client:custom_tabs_client_example_apk", | 290 "//third_party/custom_tabs_client:custom_tabs_client_example_apk", |
| 291 ] | 291 ] |
| 292 } | 292 } |
| 293 | 293 |
| 294 if (target_cpu != "x64") { |
| 295 deps += [ "//third_party/android_platform:android_relocation_packer_unitte
sts($host_toolchain)" ] |
| 296 } |
| 297 |
| 294 if (has_chrome_android_internal) { | 298 if (has_chrome_android_internal) { |
| 295 deps += [ "//clank" ] # TODO(GYP) ?? | 299 deps += [ "//clank" ] # TODO(GYP) ?? |
| 296 } | 300 } |
| 297 } | 301 } |
| 298 | 302 |
| 299 if (is_linux) { # TODO(GYP): || is_android || is_bsd? | 303 if (is_linux) { # TODO(GYP): || is_android || is_bsd? |
| 300 deps += [ | 304 deps += [ |
| 301 "//breakpad:core-2-minidump", | 305 "//breakpad:core-2-minidump", |
| 302 "//breakpad:minidump-2-core", | 306 "//breakpad:minidump-2-core", |
| 303 ] | 307 ] |
| (...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 779 if (target_cpu == "x86") { | 783 if (target_cpu == "x86") { |
| 780 deps += [ | 784 deps += [ |
| 781 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 | 785 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 |
| 782 ] | 786 ] |
| 783 } | 787 } |
| 784 } else { | 788 } else { |
| 785 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 789 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
| 786 } | 790 } |
| 787 } | 791 } |
| 788 } | 792 } |
| OLD | NEW |