Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Side by Side Diff: BUILD.gn

Issue 1545763002: Port android_webview_shell.gyp to GN. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@webview-tests-3
Patch Set: add target comments Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | android_webview/android_webview_shell.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 "//components/cronet/android:cronet_test_apk", 304 "//components/cronet/android:cronet_test_apk",
305 "//components/cronet/android:cronet_test_instrumentation_apk", 305 "//components/cronet/android:cronet_test_instrumentation_apk",
306 "//components/cronet/android:cronet_unittests", 306 "//components/cronet/android:cronet_unittests",
307 ] 307 ]
308 } 308 }
309 309
310 if (!is_chromecast) { 310 if (!is_chromecast) {
311 deps += [ 311 deps += [
312 "//android_webview", 312 "//android_webview",
313 "//android_webview/test", 313 "//android_webview/test",
314 "//android_webview/tools",
314 "//chrome/android:chrome_junit_tests", 315 "//chrome/android:chrome_junit_tests",
315 "//chrome/android:chrome_public_apk", 316 "//chrome/android:chrome_public_apk",
316 "//chrome/android:chrome_public_test_apk", 317 "//chrome/android:chrome_public_test_apk",
317 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shel l_apk", 318 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shel l_apk",
318 "//third_party/custom_tabs_client:custom_tabs_client_example_apk", 319 "//third_party/custom_tabs_client:custom_tabs_client_example_apk",
319 ] 320 ]
320 } 321 }
321 322
322 if (target_cpu != "x64") { 323 if (target_cpu != "x64") {
323 deps += [ "//third_party/android_platform:android_relocation_packer_unitte sts($host_toolchain)" ] 324 deps += [ "//third_party/android_platform:android_relocation_packer_unitte sts($host_toolchain)" ]
(...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after
858 ] 859 ]
859 860
860 if (target_cpu == "x86") { 861 if (target_cpu == "x86") {
861 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] 862 deps += [ "//chrome/tools/crash_service:crash_service_win64" ]
862 } 863 }
863 } else { 864 } else {
864 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] 865 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
865 } 866 }
866 } 867 }
867 } 868 }
OLDNEW
« no previous file with comments | « no previous file | android_webview/android_webview_shell.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698