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

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

Issue 2383613003: Remove 'V8' prefix from generated callback function classes (Closed)
Patch Set: rebase Created 4 years, 2 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/custom/V8PerformanceObserverCustom.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//third_party/WebKit/Source/bindings/bindings.gni") 5 import("//third_party/WebKit/Source/bindings/bindings.gni")
6 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") 6 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni")
7 import("//third_party/WebKit/Source/core/core.gni") 7 import("//third_party/WebKit/Source/core/core.gni")
8 import("//third_party/WebKit/Source/core/core_idl_files.gni") 8 import("//third_party/WebKit/Source/core/core_idl_files.gni")
9 9
10 visibility = [ "//third_party/WebKit/Source/*" ] 10 visibility = [ "//third_party/WebKit/Source/*" ]
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 generated_core_testing_dictionary_files = [ 190 generated_core_testing_dictionary_files = [
191 "$blink_core_output_dir/testing/InternalDictionary.cpp", 191 "$blink_core_output_dir/testing/InternalDictionary.cpp",
192 "$blink_core_output_dir/testing/InternalDictionary.h", 192 "$blink_core_output_dir/testing/InternalDictionary.h",
193 "$blink_core_output_dir/testing/InternalDictionaryDerived.cpp", 193 "$blink_core_output_dir/testing/InternalDictionaryDerived.cpp",
194 "$blink_core_output_dir/testing/InternalDictionaryDerived.h", 194 "$blink_core_output_dir/testing/InternalDictionaryDerived.h",
195 "$blink_core_output_dir/testing/InternalDictionaryDerivedDerived.cpp", 195 "$blink_core_output_dir/testing/InternalDictionaryDerivedDerived.cpp",
196 "$blink_core_output_dir/testing/InternalDictionaryDerivedDerived.h", 196 "$blink_core_output_dir/testing/InternalDictionaryDerivedDerived.h",
197 ] 197 ]
198 198
199 generated_core_testing_callback_function_files = [ 199 generated_core_testing_callback_function_files = [
200 "$bindings_core_v8_output_dir/V8TestCallback.cpp", 200 "$bindings_core_v8_output_dir/TestCallback.cpp",
201 "$bindings_core_v8_output_dir/V8TestCallback.h", 201 "$bindings_core_v8_output_dir/TestCallback.h",
202 "$bindings_core_v8_output_dir/V8TestInterfaceCallback.cpp", 202 "$bindings_core_v8_output_dir/TestInterfaceCallback.cpp",
203 "$bindings_core_v8_output_dir/V8TestInterfaceCallback.h", 203 "$bindings_core_v8_output_dir/TestInterfaceCallback.h",
204 "$bindings_core_v8_output_dir/V8TestReceiverObjectCallback.cpp", 204 "$bindings_core_v8_output_dir/TestReceiverObjectCallback.cpp",
205 "$bindings_core_v8_output_dir/V8TestReceiverObjectCallback.h", 205 "$bindings_core_v8_output_dir/TestReceiverObjectCallback.h",
206 "$bindings_core_v8_output_dir/V8TestSequenceCallback.cpp", 206 "$bindings_core_v8_output_dir/TestSequenceCallback.cpp",
207 "$bindings_core_v8_output_dir/V8TestSequenceCallback.h", 207 "$bindings_core_v8_output_dir/TestSequenceCallback.h",
208 ] 208 ]
209 209
210 generated_core_callback_function_files = [ 210 generated_core_callback_function_files = [
211 "$bindings_core_v8_output_dir/V8PerformanceObserverCallback.cpp", 211 "$bindings_core_v8_output_dir/PerformanceObserverCallback.cpp",
212 "$bindings_core_v8_output_dir/V8PerformanceObserverCallback.h", 212 "$bindings_core_v8_output_dir/PerformanceObserverCallback.h",
213 ] 213 ]
214 214
215 if (is_win) { 215 if (is_win) {
216 # On Windows Official release builds, we try to preserve symbol space. 216 # On Windows Official release builds, we try to preserve symbol space.
217 bindings_core_generated_interface_files = 217 bindings_core_generated_interface_files =
218 [ "$bindings_core_v8_output_dir/V8GeneratedCoreBindings.cpp" ] 218 [ "$bindings_core_v8_output_dir/V8GeneratedCoreBindings.cpp" ]
219 } else { 219 } else {
220 bindings_core_generated_interface_files = 220 bindings_core_generated_interface_files =
221 process_file_template( 221 process_file_template(
222 core_definition_idl_files, 222 core_definition_idl_files,
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 "//third_party/WebKit/Source:config", 294 "//third_party/WebKit/Source:config",
295 ] 295 ]
296 296
297 deps = [ 297 deps = [
298 ":bindings_core_impl_generated", 298 ":bindings_core_impl_generated",
299 "//skia", 299 "//skia",
300 "//third_party/WebKit/Source/wtf", 300 "//third_party/WebKit/Source/wtf",
301 "//v8", 301 "//v8",
302 ] 302 ]
303 } 303 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/custom/V8PerformanceObserverCustom.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698