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

Side by Side Diff: third_party/WebKit/Source/core/frame/BUILD.gn

Issue 2863913002: Change AudioOutputDeviceClientImpl to use WebLocalFrameBase and move to modules. (Closed)
Patch Set: Use chrome client to create instances of WebLocalFrameBase. Created 3 years, 7 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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("//third_party/WebKit/Source/core/core.gni") 5 import("//third_party/WebKit/Source/core/core.gni")
6 6
7 blink_core_sources("frame") { 7 blink_core_sources("frame") {
8 sources = [ 8 sources = [
9 "BarProp.cpp", 9 "BarProp.cpp",
10 "BarProp.h", 10 "BarProp.h",
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 "SubresourceIntegrity.cpp", 110 "SubresourceIntegrity.cpp",
111 "SubresourceIntegrity.h", 111 "SubresourceIntegrity.h",
112 "SuspendableScriptExecutor.cpp", 112 "SuspendableScriptExecutor.cpp",
113 "SuspendableScriptExecutor.h", 113 "SuspendableScriptExecutor.h",
114 "SuspendableTimer.cpp", 114 "SuspendableTimer.cpp",
115 "SuspendableTimer.h", 115 "SuspendableTimer.h",
116 "UseCounter.cpp", 116 "UseCounter.cpp",
117 "UseCounter.h", 117 "UseCounter.h",
118 "VisualViewport.cpp", 118 "VisualViewport.cpp",
119 "VisualViewport.h", 119 "VisualViewport.h",
120 "WebLocalFrameBase.cpp",
120 "WebLocalFrameBase.h", 121 "WebLocalFrameBase.h",
121 "csp/CSPDirective.h", 122 "csp/CSPDirective.h",
122 "csp/CSPDirectiveList.cpp", 123 "csp/CSPDirectiveList.cpp",
123 "csp/CSPDirectiveList.h", 124 "csp/CSPDirectiveList.h",
124 "csp/CSPSource.cpp", 125 "csp/CSPSource.cpp",
125 "csp/CSPSource.h", 126 "csp/CSPSource.h",
126 "csp/ContentSecurityPolicy.cpp", 127 "csp/ContentSecurityPolicy.cpp",
127 "csp/ContentSecurityPolicy.h", 128 "csp/ContentSecurityPolicy.h",
128 "csp/MediaListDirective.cpp", 129 "csp/MediaListDirective.cpp",
129 "csp/MediaListDirective.h", 130 "csp/MediaListDirective.h",
130 "csp/SourceListDirective.cpp", 131 "csp/SourceListDirective.cpp",
131 "csp/SourceListDirective.h", 132 "csp/SourceListDirective.h",
132 ] 133 ]
133 134
134 configs += [ 135 configs += [
135 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 136 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
136 "//build/config/compiler:no_size_t_to_int_warning", 137 "//build/config/compiler:no_size_t_to_int_warning",
137 ] 138 ]
138 } 139 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698