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

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

Issue 2367543004: Extended implementation to use interface as arguments (Closed)
Patch Set: 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
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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
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/V8TestCallback.cpp",
201 "$bindings_core_v8_output_dir/V8TestCallback.h", 201 "$bindings_core_v8_output_dir/V8TestCallback.h",
202 "$bindings_core_v8_output_dir/V8TestInterfaceCallback.cpp",
203 "$bindings_core_v8_output_dir/V8TestInterfaceCallback.h",
202 ] 204 ]
203 205
204 if (is_win) { 206 if (is_win) {
205 # On Windows Official release builds, we try to preserve symbol space. 207 # On Windows Official release builds, we try to preserve symbol space.
206 bindings_core_generated_interface_files = 208 bindings_core_generated_interface_files =
207 [ "$bindings_core_v8_output_dir/V8GeneratedCoreBindings.cpp" ] 209 [ "$bindings_core_v8_output_dir/V8GeneratedCoreBindings.cpp" ]
208 } else { 210 } else {
209 bindings_core_generated_interface_files = 211 bindings_core_generated_interface_files =
210 process_file_template( 212 process_file_template(
211 core_definition_idl_files, 213 core_definition_idl_files,
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 "//third_party/WebKit/Source:config", 283 "//third_party/WebKit/Source:config",
282 ] 284 ]
283 285
284 deps = [ 286 deps = [
285 ":bindings_core_impl_generated", 287 ":bindings_core_impl_generated",
286 "//skia", 288 "//skia",
287 "//third_party/WebKit/Source/wtf", 289 "//third_party/WebKit/Source/wtf",
288 "//v8", 290 "//v8",
289 ] 291 ]
290 } 292 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698