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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 if (is_win) { | 212 if (is_win) { |
213 deps += [ "//chrome/tools/build/win/syzygy:chrome_dll_syzygy" ] | 213 deps += [ "//chrome/tools/build/win/syzygy:chrome_dll_syzygy" ] |
214 } | 214 } |
215 | 215 |
216 if (is_android) { | 216 if (is_android) { |
217 if (!is_chromecast) { | 217 if (!is_chromecast) { |
218 deps += [ | 218 deps += [ |
219 "//chrome/android:chrome_public_apk", | 219 "//chrome/android:chrome_public_apk", |
220 "//chrome/android:chrome_public_test_apk", | 220 "//chrome/android:chrome_public_test_apk", |
221 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shel
l_apk", | 221 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shel
l_apk", |
| 222 "//third_party/custom_tabs_client:custom_tabs_client_example_apk", |
222 ] | 223 ] |
223 } | 224 } |
224 | 225 |
225 deps += [ | 226 deps += [ |
226 "//base/android/linker:chromium_android_linker", | 227 "//base/android/linker:chromium_android_linker", |
227 "//build/android/gyp/test:hello_world", | 228 "//build/android/gyp/test:hello_world", |
228 "//build/android/rezip", | 229 "//build/android/rezip", |
229 "//third_party/errorprone:chromium_errorprone", | 230 "//third_party/errorprone:chromium_errorprone", |
230 "//tools/android:android_tools", | 231 "//tools/android:android_tools", |
231 "//tools/imagediff($host_toolchain)", | 232 "//tools/imagediff($host_toolchain)", |
(...skipping 751 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
983 if (target_cpu == "x86") { | 984 if (target_cpu == "x86") { |
984 deps += [ | 985 deps += [ |
985 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 | 986 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 |
986 ] | 987 ] |
987 } | 988 } |
988 } else { | 989 } else { |
989 deps += [ "//breakpad:minidump_stackwalk" ] | 990 deps += [ "//breakpad:minidump_stackwalk" ] |
990 } | 991 } |
991 } | 992 } |
992 } | 993 } |
OLD | NEW |