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

Side by Side Diff: content/test/BUILD.gn

Issue 2698393002: Allow asynchronous deferral in NavigationSimulator (Closed)
Patch Set: Remove the wait API Created 3 years, 9 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//build/config/compiler/compiler.gni") 7 import("//build/config/compiler/compiler.gni")
8 import("//build/config/crypto.gni") 8 import("//build/config/crypto.gni")
9 import("//build/config/features.gni") 9 import("//build/config/features.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 1391 matching lines...) Expand 10 before | Expand all | Expand 10 after
1402 "../renderer/presentation/test_presentation_connection.cc", 1402 "../renderer/presentation/test_presentation_connection.cc",
1403 "../renderer/presentation/test_presentation_connection.h", 1403 "../renderer/presentation/test_presentation_connection.h",
1404 "../renderer/render_thread_impl_unittest.cc", 1404 "../renderer/render_thread_impl_unittest.cc",
1405 "../renderer/render_widget_unittest.cc", 1405 "../renderer/render_widget_unittest.cc",
1406 "../renderer/scheduler/resource_dispatch_throttler_unittest.cc", 1406 "../renderer/scheduler/resource_dispatch_throttler_unittest.cc",
1407 "../renderer/skia_benchmarking_extension_unittest.cc", 1407 "../renderer/skia_benchmarking_extension_unittest.cc",
1408 "fileapi_test_file_set.cc", 1408 "fileapi_test_file_set.cc",
1409 "fileapi_test_file_set.h", 1409 "fileapi_test_file_set.h",
1410 "image_decoder_test.cc", 1410 "image_decoder_test.cc",
1411 "image_decoder_test.h", 1411 "image_decoder_test.h",
1412 "navigation_simulator_unittest.cc",
1412 "run_all_unittests.cc", 1413 "run_all_unittests.cc",
1413 ] 1414 ]
1414 1415
1415 # Chromecasts do not have extended attributes enabled; even if it were 1416 # Chromecasts do not have extended attributes enabled; even if it were
1416 # enabled, the devices use tmpfs which restricts the extended attributes that 1417 # enabled, the devices use tmpfs which restricts the extended attributes that
1417 # can be set such that quarantining still would not work. (The platform 1418 # can be set such that quarantining still would not work. (The platform
1418 # specific tests include a runtime guard to skip tests that need xattr.) 1419 # specific tests include a runtime guard to skip tests that need xattr.)
1419 if (!is_chromecast) { 1420 if (!is_chromecast) {
1420 sources += [ "../common/quarantine/quarantine_unittest.cc" ] 1421 sources += [ "../common/quarantine/quarantine_unittest.cc" ]
1421 } 1422 }
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
1827 if (is_android) { 1828 if (is_android) {
1828 deps += [ "//testing/android/native_test:native_test_native_code" ] 1829 deps += [ "//testing/android/native_test:native_test_native_code" ]
1829 } 1830 }
1830 } 1831 }
1831 1832
1832 group("fuzzers") { 1833 group("fuzzers") {
1833 deps = [ 1834 deps = [
1834 "//content/test/fuzzer", 1835 "//content/test/fuzzer",
1835 ] 1836 ]
1836 } 1837 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698