| 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 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 "//third_party/pdfium/samples:pdfium_test", | 317 "//third_party/pdfium/samples:pdfium_test", |
| 318 "//tools/gn", | 318 "//tools/gn", |
| 319 "//tools/gn:generate_test_gn_data", | 319 "//tools/gn:generate_test_gn_data", |
| 320 "//tools/gn:gn_unittests", | 320 "//tools/gn:gn_unittests", |
| 321 "//ui/app_list:app_list_unittests", | 321 "//ui/app_list:app_list_unittests", |
| 322 "//url:url_unittests", | 322 "//url:url_unittests", |
| 323 ] | 323 ] |
| 324 | 324 |
| 325 if (!is_chromecast) { | 325 if (!is_chromecast) { |
| 326 deps += [ | 326 deps += [ |
| 327 "//android_webview:system_webview_apk", |
| 327 "//chrome/android:chrome_public_apk", | 328 "//chrome/android:chrome_public_apk", |
| 328 "//chrome/android:chrome_public_test_apk", | 329 "//chrome/android:chrome_public_test_apk", |
| 329 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shel
l_apk", | 330 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shel
l_apk", |
| 330 "//third_party/custom_tabs_client:custom_tabs_client_example_apk", | 331 "//third_party/custom_tabs_client:custom_tabs_client_example_apk", |
| 331 ] | 332 ] |
| 332 } | 333 } |
| 333 | 334 |
| 334 if (has_chrome_android_internal) { | 335 if (has_chrome_android_internal) { |
| 335 deps += [ "//clank" ] # TODO(GYP) ?? | 336 deps += [ "//clank" ] # TODO(GYP) ?? |
| 336 } | 337 } |
| (...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 869 if (target_cpu == "x86") { | 870 if (target_cpu == "x86") { |
| 870 deps += [ | 871 deps += [ |
| 871 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 | 872 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 |
| 872 ] | 873 ] |
| 873 } | 874 } |
| 874 } else { | 875 } else { |
| 875 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 876 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
| 876 } | 877 } |
| 877 } | 878 } |
| 878 } | 879 } |
| OLD | NEW |