| 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("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//third_party/WebKit/Source/bindings/bindings.gni") | 7 import("//third_party/WebKit/Source/bindings/bindings.gni") |
| 8 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni") | 8 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni") |
| 9 import("//third_party/WebKit/Source/bindings/modules/modules.gni") | 9 import("//third_party/WebKit/Source/bindings/modules/modules.gni") |
| 10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") | 10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") |
| (...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 # GYP version: WebKit/Source/core/core.gyp:webcore_testing | 294 # GYP version: WebKit/Source/core/core.gyp:webcore_testing |
| 295 source_set("testing") { | 295 source_set("testing") { |
| 296 configs += [ | 296 configs += [ |
| 297 "//third_party/WebKit/Source:inside_blink", | 297 "//third_party/WebKit/Source:inside_blink", |
| 298 "//third_party/WebKit/Source:config", | 298 "//third_party/WebKit/Source:config", |
| 299 ] | 299 ] |
| 300 | 300 |
| 301 deps = [ | 301 deps = [ |
| 302 ":core", | 302 ":core", |
| 303 ":generated_testing_idls", | 303 ":generated_testing_idls", |
| 304 "//third_party/WebKit/Source/wtf:test_support", | |
| 305 ] | 304 ] |
| 306 | 305 |
| 307 sources = generated_core_testing_dictionary_files + webcore_testing_files | 306 sources = generated_core_testing_dictionary_files + webcore_testing_files |
| 308 sources += [ | 307 sources += [ |
| 309 "$bindings_core_v8_output_dir/V8DictionaryTest.cpp", | 308 "$bindings_core_v8_output_dir/V8DictionaryTest.cpp", |
| 310 "$bindings_core_v8_output_dir/V8DictionaryTest.h", | 309 "$bindings_core_v8_output_dir/V8DictionaryTest.h", |
| 311 "$bindings_core_v8_output_dir/V8GCObservation.cpp", | 310 "$bindings_core_v8_output_dir/V8GCObservation.cpp", |
| 312 "$bindings_core_v8_output_dir/V8GCObservation.h", | 311 "$bindings_core_v8_output_dir/V8GCObservation.h", |
| 313 "$bindings_core_v8_output_dir/V8GarbageCollectedScriptWrappable.cpp", | 312 "$bindings_core_v8_output_dir/V8GarbageCollectedScriptWrappable.cpp", |
| 314 "$bindings_core_v8_output_dir/V8GarbageCollectedScriptWrappable.h", | 313 "$bindings_core_v8_output_dir/V8GarbageCollectedScriptWrappable.h", |
| (...skipping 700 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1015 "$blink_core_output_dir/{{source_name_part}}.h", | 1014 "$blink_core_output_dir/{{source_name_part}}.h", |
| 1016 ] | 1015 ] |
| 1017 args = [ | 1016 args = [ |
| 1018 "{{source}}", | 1017 "{{source}}", |
| 1019 rel_blink_core_gen_dir, | 1018 rel_blink_core_gen_dir, |
| 1020 bison_exe, | 1019 bison_exe, |
| 1021 ] | 1020 ] |
| 1022 | 1021 |
| 1023 deps = make_core_generated_deps | 1022 deps = make_core_generated_deps |
| 1024 } | 1023 } |
| OLD | NEW |