| OLD | NEW | 
|     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 1394 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  1405     "../renderer/presentation/test_presentation_connection.cc", |  1405     "../renderer/presentation/test_presentation_connection.cc", | 
|  1406     "../renderer/presentation/test_presentation_connection.h", |  1406     "../renderer/presentation/test_presentation_connection.h", | 
|  1407     "../renderer/render_thread_impl_unittest.cc", |  1407     "../renderer/render_thread_impl_unittest.cc", | 
|  1408     "../renderer/render_widget_unittest.cc", |  1408     "../renderer/render_widget_unittest.cc", | 
|  1409     "../renderer/scheduler/resource_dispatch_throttler_unittest.cc", |  1409     "../renderer/scheduler/resource_dispatch_throttler_unittest.cc", | 
|  1410     "../renderer/skia_benchmarking_extension_unittest.cc", |  1410     "../renderer/skia_benchmarking_extension_unittest.cc", | 
|  1411     "fileapi_test_file_set.cc", |  1411     "fileapi_test_file_set.cc", | 
|  1412     "fileapi_test_file_set.h", |  1412     "fileapi_test_file_set.h", | 
|  1413     "image_decoder_test.cc", |  1413     "image_decoder_test.cc", | 
|  1414     "image_decoder_test.h", |  1414     "image_decoder_test.h", | 
 |  1415     "navigation_simulator_unittest.cc", | 
|  1415     "run_all_unittests.cc", |  1416     "run_all_unittests.cc", | 
|  1416   ] |  1417   ] | 
|  1417  |  1418  | 
|  1418   # Chromecasts do not have extended attributes enabled; even if it were |  1419   # Chromecasts do not have extended attributes enabled; even if it were | 
|  1419   # enabled, the devices use tmpfs which restricts the extended attributes that |  1420   # enabled, the devices use tmpfs which restricts the extended attributes that | 
|  1420   # can be set such that quarantining still would not work. (The platform |  1421   # can be set such that quarantining still would not work. (The platform | 
|  1421   # specific tests include a runtime guard to skip tests that need xattr.) |  1422   # specific tests include a runtime guard to skip tests that need xattr.) | 
|  1422   if (!is_chromecast) { |  1423   if (!is_chromecast) { | 
|  1423     sources += [ "../common/quarantine/quarantine_unittest.cc" ] |  1424     sources += [ "../common/quarantine/quarantine_unittest.cc" ] | 
|  1424   } |  1425   } | 
| (...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  1830   if (is_android) { |  1831   if (is_android) { | 
|  1831     deps += [ "//testing/android/native_test:native_test_native_code" ] |  1832     deps += [ "//testing/android/native_test:native_test_native_code" ] | 
|  1832   } |  1833   } | 
|  1833 } |  1834 } | 
|  1834  |  1835  | 
|  1835 group("fuzzers") { |  1836 group("fuzzers") { | 
|  1836   deps = [ |  1837   deps = [ | 
|  1837     "//content/test/fuzzer", |  1838     "//content/test/fuzzer", | 
|  1838   ] |  1839   ] | 
|  1839 } |  1840 } | 
| OLD | NEW |