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

Side by Side Diff: BUILD.gn

Issue 1547683003: Port android_webview_tests.gypi to GN. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@webview-tests-2
Patch Set: Add target x-refs Created 4 years, 12 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/BUILD.gn » ('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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 "//components/cronet/android:cronet_sample_test_apk", 303 "//components/cronet/android:cronet_sample_test_apk",
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 "//chrome/android:chrome_junit_tests", 314 "//chrome/android:chrome_junit_tests",
314 "//chrome/android:chrome_public_apk", 315 "//chrome/android:chrome_public_apk",
315 "//chrome/android:chrome_public_test_apk", 316 "//chrome/android:chrome_public_test_apk",
316 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shel l_apk", 317 "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shel l_apk",
317 "//third_party/custom_tabs_client:custom_tabs_client_example_apk", 318 "//third_party/custom_tabs_client:custom_tabs_client_example_apk",
318 ] 319 ]
319 } 320 }
320 321
321 if (target_cpu != "x64") { 322 if (target_cpu != "x64") {
322 deps += [ "//third_party/android_platform:android_relocation_packer_unitte sts($host_toolchain)" ] 323 deps += [ "//third_party/android_platform:android_relocation_packer_unitte sts($host_toolchain)" ]
(...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after
857 ] 858 ]
858 859
859 if (target_cpu == "x86") { 860 if (target_cpu == "x86") {
860 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] 861 deps += [ "//chrome/tools/crash_service:crash_service_win64" ]
861 } 862 }
862 } else { 863 } else {
863 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] 864 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
864 } 865 }
865 } 866 }
866 } 867 }
OLDNEW
« no previous file with comments | « no previous file | android_webview/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698