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

Side by Side Diff: content/renderer/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/chromecast_build.gni") 5 import("//build/config/chromecast_build.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/split_static_library.gni") 8 import("//build/split_static_library.gni")
9 import("//media/media_options.gni") 9 import("//media/media_options.gni")
10 import("//ppapi/features/features.gni") 10 import("//ppapi/features/features.gni")
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 "cache_storage/cache_storage_message_filter.cc", 64 "cache_storage/cache_storage_message_filter.cc",
65 "cache_storage/cache_storage_message_filter.h", 65 "cache_storage/cache_storage_message_filter.h",
66 "cache_storage/webserviceworkercachestorage_impl.cc", 66 "cache_storage/webserviceworkercachestorage_impl.cc",
67 "cache_storage/webserviceworkercachestorage_impl.h", 67 "cache_storage/webserviceworkercachestorage_impl.h",
68 "categorized_worker_pool.cc", 68 "categorized_worker_pool.cc",
69 "categorized_worker_pool.h", 69 "categorized_worker_pool.h",
70 "child_frame_compositing_helper.cc", 70 "child_frame_compositing_helper.cc",
71 "child_frame_compositing_helper.h", 71 "child_frame_compositing_helper.h",
72 "clipboard_utils.cc", 72 "clipboard_utils.cc",
73 "clipboard_utils.h", 73 "clipboard_utils.h",
74 "content_security_policy_util.cc",
75 "content_security_policy_util.h",
74 "context_menu_params_builder.cc", 76 "context_menu_params_builder.cc",
75 "context_menu_params_builder.h", 77 "context_menu_params_builder.h",
76 "cursor_utils.cc", 78 "cursor_utils.cc",
77 "cursor_utils.h", 79 "cursor_utils.h",
78 "device_sensors/device_light_event_pump.cc", 80 "device_sensors/device_light_event_pump.cc",
79 "device_sensors/device_light_event_pump.h", 81 "device_sensors/device_light_event_pump.h",
80 "device_sensors/device_motion_event_pump.cc", 82 "device_sensors/device_motion_event_pump.cc",
81 "device_sensors/device_motion_event_pump.h", 83 "device_sensors/device_motion_event_pump.h",
82 "device_sensors/device_orientation_event_pump.cc", 84 "device_sensors/device_orientation_event_pump.cc",
83 "device_sensors/device_orientation_event_pump.h", 85 "device_sensors/device_orientation_event_pump.h",
(...skipping 859 matching lines...) Expand 10 before | Expand all | Expand 10 after
943 # For the defines in mojo_media_config. 945 # For the defines in mojo_media_config.
944 public_configs = [ "//media/mojo/services:mojo_media_config" ] 946 public_configs = [ "//media/mojo/services:mojo_media_config" ]
945 } 947 }
946 948
947 if (!is_component_build) { 949 if (!is_component_build) {
948 public_deps = [ 950 public_deps = [
949 ":renderer", 951 ":renderer",
950 ] 952 ]
951 } 953 }
952 } 954 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698