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

Side by Side Diff: Source/core/BUILD.gn

Issue 516273002: Move plugin placeholder style to CSS, and allow it to bypass main world CSP. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: gn Created 6 years, 3 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 | Annotate | Revision Log
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/ui.gni") 5 import("//build/config/ui.gni")
6 import("//third_party/WebKit/Source/bindings/bindings.gni") 6 import("//third_party/WebKit/Source/bindings/bindings.gni")
7 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni") 7 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni")
8 import("//third_party/WebKit/Source/bindings/modules/modules.gni") 8 import("//third_party/WebKit/Source/bindings/modules/modules.gni")
9 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") 9 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni")
10 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") 10 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni")
(...skipping 1013 matching lines...) Expand 10 before | Expand all | Expand 10 after
1024 "css/themeWin.css", 1024 "css/themeWin.css",
1025 "css/themeWinQuirks.css", 1025 "css/themeWinQuirks.css",
1026 "css/svg.css", 1026 "css/svg.css",
1027 "css/navigationTransitions.css", 1027 "css/navigationTransitions.css",
1028 "css/mathml.css", 1028 "css/mathml.css",
1029 "css/mediaControls.css", 1029 "css/mediaControls.css",
1030 "css/mediaControlsAndroid.css", 1030 "css/mediaControlsAndroid.css",
1031 "css/fullscreen.css", 1031 "css/fullscreen.css",
1032 "css/xhtmlmp.css", 1032 "css/xhtmlmp.css",
1033 "css/viewportAndroid.css", 1033 "css/viewportAndroid.css",
1034 "html/shadow/PluginPlaceholderElement.css",
1034 ] 1035 ]
1035 1036
1036 outputs = [ 1037 outputs = [
1037 "$blink_core_output_dir/UserAgentStyleSheets.h", 1038 "$blink_core_output_dir/UserAgentStyleSheets.h",
1038 "$blink_core_output_dir/UserAgentStyleSheetsData.cpp", 1039 "$blink_core_output_dir/UserAgentStyleSheetsData.cpp",
1039 ] 1040 ]
1040 1041
1041 args = 1042 args =
1042 [ "--namespace", "blink" ] + 1043 [ "--namespace", "blink" ] +
1043 [ "--out-h=" + rebase_path(outputs[0], root_build_dir) ] + 1044 [ "--out-h=" + rebase_path(outputs[0], root_build_dir) ] +
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
1083 "$blink_core_output_dir/{{source_name_part}}.h", 1084 "$blink_core_output_dir/{{source_name_part}}.h",
1084 ] 1085 ]
1085 args = [ 1086 args = [
1086 "{{source}}", 1087 "{{source}}",
1087 rel_blink_core_gen_dir, 1088 rel_blink_core_gen_dir,
1088 bison_exe, 1089 bison_exe,
1089 ] 1090 ]
1090 1091
1091 deps = make_core_generated_deps 1092 deps = make_core_generated_deps
1092 } 1093 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698