OLD | NEW |
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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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", | 202 "$bindings_core_v8_output_dir/V8TestInterfaceCallback.cpp", |
203 "$bindings_core_v8_output_dir/V8TestInterfaceCallback.h", | 203 "$bindings_core_v8_output_dir/V8TestInterfaceCallback.h", |
204 "$bindings_core_v8_output_dir/V8TestReceiverObjectCallback.cpp", | 204 "$bindings_core_v8_output_dir/V8TestReceiverObjectCallback.cpp", |
205 "$bindings_core_v8_output_dir/V8TestReceiverObjectCallback.h", | 205 "$bindings_core_v8_output_dir/V8TestReceiverObjectCallback.h", |
| 206 "$bindings_core_v8_output_dir/V8TestSequenceCallback.cpp", |
| 207 "$bindings_core_v8_output_dir/V8TestSequenceCallback.h", |
206 ] | 208 ] |
207 | 209 |
208 generated_core_callback_function_files = [ | 210 generated_core_callback_function_files = [ |
209 "$bindings_core_v8_output_dir/V8PerformanceObserverInnerCallback.cpp", | 211 "$bindings_core_v8_output_dir/V8PerformanceObserverInnerCallback.cpp", |
210 "$bindings_core_v8_output_dir/V8PerformanceObserverInnerCallback.h", | 212 "$bindings_core_v8_output_dir/V8PerformanceObserverInnerCallback.h", |
211 ] | 213 ] |
212 | 214 |
213 if (is_win) { | 215 if (is_win) { |
214 # On Windows Official release builds, we try to preserve symbol space. | 216 # On Windows Official release builds, we try to preserve symbol space. |
215 bindings_core_generated_interface_files = | 217 bindings_core_generated_interface_files = |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 "//third_party/WebKit/Source:config", | 294 "//third_party/WebKit/Source:config", |
293 ] | 295 ] |
294 | 296 |
295 deps = [ | 297 deps = [ |
296 ":bindings_core_impl_generated", | 298 ":bindings_core_impl_generated", |
297 "//skia", | 299 "//skia", |
298 "//third_party/WebKit/Source/wtf", | 300 "//third_party/WebKit/Source/wtf", |
299 "//v8", | 301 "//v8", |
300 ] | 302 ] |
301 } | 303 } |
OLD | NEW |