| 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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 "//tools/gn:gn_unittests", | 310 "//tools/gn:gn_unittests", |
| 311 "//ui/app_list:app_list_unittests", | 311 "//ui/app_list:app_list_unittests", |
| 312 "//url:url_unittests", | 312 "//url:url_unittests", |
| 313 ] | 313 ] |
| 314 | 314 |
| 315 if (!is_chromecast) { | 315 if (!is_chromecast) { |
| 316 deps += [ | 316 deps += [ |
| 317 "//chrome/android:chrome_public_apk", | 317 "//chrome/android:chrome_public_apk", |
| 318 "//chrome/android:chrome_public_test_apk", | 318 "//chrome/android:chrome_public_test_apk", |
| 319 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shel
l_apk", | 319 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shel
l_apk", |
| 320 "//third_party/custom_tabs_client:custom_tabs_client_example_apk", |
| 320 ] | 321 ] |
| 321 } | 322 } |
| 322 | 323 |
| 323 if (has_chrome_android_internal) { | 324 if (has_chrome_android_internal) { |
| 324 deps += [ "//clank" ] # TODO(GYP) ?? | 325 deps += [ "//clank" ] # TODO(GYP) ?? |
| 325 } | 326 } |
| 326 } | 327 } |
| 327 | 328 |
| 328 if (is_linux) { # TODO(GYP): || is_android || is_bsd? | 329 if (is_linux) { # TODO(GYP): || is_android || is_bsd? |
| 329 deps += [ | 330 deps += [ |
| (...skipping 679 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1009 if (target_cpu == "x86") { | 1010 if (target_cpu == "x86") { |
| 1010 deps += [ | 1011 deps += [ |
| 1011 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 | 1012 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 |
| 1012 ] | 1013 ] |
| 1013 } | 1014 } |
| 1014 } else { | 1015 } else { |
| 1015 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 1016 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
| 1016 } | 1017 } |
| 1017 } | 1018 } |
| 1018 } | 1019 } |
| OLD | NEW |