| 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 # All paths in this file should be absolute so it can be imported into | 5 # All paths in this file should be absolute so it can be imported into |
| 6 # different contexts. | 6 # different contexts. |
| 7 | 7 |
| 8 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni") | 8 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni") |
| 9 | 9 |
| 10 bindings_core_v8_files = | 10 bindings_core_v8_files = |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 ], | 180 ], |
| 181 "abspath") | 181 "abspath") |
| 182 | 182 |
| 183 bindings_dir = get_path_info(".", "abspath") | 183 bindings_dir = get_path_info(".", "abspath") |
| 184 blink_output_dir = "$root_gen_dir/blink" | 184 blink_output_dir = "$root_gen_dir/blink" |
| 185 bindings_output_dir = "$root_gen_dir/blink/bindings" | 185 bindings_output_dir = "$root_gen_dir/blink/bindings" |
| 186 bindings_core_v8_output_dir = "$bindings_output_dir/core/v8" | 186 bindings_core_v8_output_dir = "$bindings_output_dir/core/v8" |
| 187 | 187 |
| 188 bindings_unittest_files = | 188 bindings_unittest_files = |
| 189 get_path_info([ | 189 get_path_info([ |
| 190 "core/v8/BindingSecurityTest.cpp", |
| 190 "core/v8/DocumentWriteEvaluatorTest.cpp", | 191 "core/v8/DocumentWriteEvaluatorTest.cpp", |
| 191 "core/v8/DOMWrapperWorldTest.cpp", | 192 "core/v8/DOMWrapperWorldTest.cpp", |
| 192 "core/v8/IDLTypesTest.cpp", | 193 "core/v8/IDLTypesTest.cpp", |
| 193 "core/v8/NativeValueTraitsImplTest.cpp", | 194 "core/v8/NativeValueTraitsImplTest.cpp", |
| 194 "core/v8/NativeValueTraitsTest.cpp", | 195 "core/v8/NativeValueTraitsTest.cpp", |
| 195 "core/v8/ScriptModuleTest.cpp", | 196 "core/v8/ScriptModuleTest.cpp", |
| 196 "core/v8/ScriptPromisePropertyTest.cpp", | 197 "core/v8/ScriptPromisePropertyTest.cpp", |
| 197 "core/v8/ScriptPromiseResolverTest.cpp", | 198 "core/v8/ScriptPromiseResolverTest.cpp", |
| 198 "core/v8/ScriptPromiseTest.cpp", | 199 "core/v8/ScriptPromiseTest.cpp", |
| 199 "core/v8/ScriptStreamerTest.cpp", | 200 "core/v8/ScriptStreamerTest.cpp", |
| 200 "core/v8/ScriptWrappableVisitorTest.cpp", | 201 "core/v8/ScriptWrappableVisitorTest.cpp", |
| 201 "core/v8/ToV8Test.cpp", | 202 "core/v8/ToV8Test.cpp", |
| 202 "core/v8/TraceWrapperMemberTest.cpp", | 203 "core/v8/TraceWrapperMemberTest.cpp", |
| 203 "core/v8/V8BindingForTesting.cpp", | 204 "core/v8/V8BindingForTesting.cpp", |
| 204 "core/v8/V8BindingForTesting.h", | 205 "core/v8/V8BindingForTesting.h", |
| 205 "core/v8/V8BindingTest.cpp", | 206 "core/v8/V8BindingTest.cpp", |
| 206 "core/v8/V8ObjectBuilderTest.cpp", | 207 "core/v8/V8ObjectBuilderTest.cpp", |
| 207 "core/v8/V8ScriptRunnerTest.cpp", | 208 "core/v8/V8ScriptRunnerTest.cpp", |
| 208 "core/v8/serialization/SerializedScriptValueTest.cpp", | 209 "core/v8/serialization/SerializedScriptValueTest.cpp", |
| 209 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", | 210 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", |
| 210 ], | 211 ], |
| 211 "abspath") | 212 "abspath") |
| 212 bindings_unittest_files += bindings_modules_v8_unittest_files | 213 bindings_unittest_files += bindings_modules_v8_unittest_files |
| OLD | NEW |