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

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

Issue 2612793002: Implement ContentSecurityPolicy on the browser-side. (Closed)
Patch Set: Rebase from master. Created 3 years, 10 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 1296 matching lines...) Expand 10 before | Expand all | Expand 10 after
1307 "../child/url_loader_client_impl_unittest.cc", 1307 "../child/url_loader_client_impl_unittest.cc",
1308 "../child/url_response_body_consumer_unittest.cc", 1308 "../child/url_response_body_consumer_unittest.cc",
1309 "../child/v8_value_converter_impl_unittest.cc", 1309 "../child/v8_value_converter_impl_unittest.cc",
1310 "../child/web_data_consumer_handle_impl_unittest.cc", 1310 "../child/web_data_consumer_handle_impl_unittest.cc",
1311 "../child/web_url_loader_impl_unittest.cc", 1311 "../child/web_url_loader_impl_unittest.cc",
1312 "../child/worker_thread_registry_unittest.cc", 1312 "../child/worker_thread_registry_unittest.cc",
1313 "../common/android/address_parser_unittest.cc", 1313 "../common/android/address_parser_unittest.cc",
1314 "../common/android/gin_java_bridge_value_unittest.cc", 1314 "../common/android/gin_java_bridge_value_unittest.cc",
1315 "../common/bluetooth/web_bluetooth_device_id_unittest.cc", 1315 "../common/bluetooth/web_bluetooth_device_id_unittest.cc",
1316 "../common/common_param_traits_unittest.cc", 1316 "../common/common_param_traits_unittest.cc",
1317 "../common/content_security_policy/content_security_policy_unittest.cc",
1318 "../common/content_security_policy/csp_context_unittest.cc",
1319 "../common/content_security_policy/csp_source_list_unittest.cc",
1320 "../common/content_security_policy/csp_source_unittest.cc",
1317 "../common/cross_site_document_classifier_unittest.cc", 1321 "../common/cross_site_document_classifier_unittest.cc",
1318 "../common/cursors/webcursor_unittest.cc", 1322 "../common/cursors/webcursor_unittest.cc",
1319 "../common/database_connections_unittest.cc", 1323 "../common/database_connections_unittest.cc",
1320 "../common/database_identifier_unittest.cc", 1324 "../common/database_identifier_unittest.cc",
1321 "../common/dom_storage/dom_storage_map_unittest.cc", 1325 "../common/dom_storage/dom_storage_map_unittest.cc",
1322 "../common/feature_policy/feature_policy_unittest.cc", 1326 "../common/feature_policy/feature_policy_unittest.cc",
1323 "../common/fileapi/file_system_util_unittest.cc", 1327 "../common/fileapi/file_system_util_unittest.cc",
1324 "../common/host_shared_bitmap_manager_unittest.cc", 1328 "../common/host_shared_bitmap_manager_unittest.cc",
1325 "../common/indexed_db/indexed_db_key_unittest.cc", 1329 "../common/indexed_db/indexed_db_key_unittest.cc",
1326 "../common/input/event_with_latency_info_unittest.cc", 1330 "../common/input/event_with_latency_info_unittest.cc",
(...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after
1809 if (is_android) { 1813 if (is_android) {
1810 deps += [ "//testing/android/native_test:native_test_native_code" ] 1814 deps += [ "//testing/android/native_test:native_test_native_code" ]
1811 } 1815 }
1812 } 1816 }
1813 1817
1814 group("fuzzers") { 1818 group("fuzzers") {
1815 deps = [ 1819 deps = [
1816 "//content/test/fuzzer", 1820 "//content/test/fuzzer",
1817 ] 1821 ]
1818 } 1822 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698