| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//third_party/WebKit/Source/bindings/bindings.gni") | 6 import("//third_party/WebKit/Source/bindings/bindings.gni") |
| 7 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni") | 7 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni") |
| 8 import("//third_party/WebKit/Source/bindings/modules/modules.gni") | 8 import("//third_party/WebKit/Source/bindings/modules/modules.gni") |
| 9 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") | 9 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") |
| 10 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") | 10 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 source_set("testing") { | 299 source_set("testing") { |
| 300 configs += [ | 300 configs += [ |
| 301 "//third_party/WebKit/Source:inside_blink", | 301 "//third_party/WebKit/Source:inside_blink", |
| 302 "//third_party/WebKit/Source:config", | 302 "//third_party/WebKit/Source:config", |
| 303 ] | 303 ] |
| 304 | 304 |
| 305 deps = [ | 305 deps = [ |
| 306 ":core", | 306 ":core", |
| 307 ":core_generated", | 307 ":core_generated", |
| 308 ":generated_testing_idls", | 308 ":generated_testing_idls", |
| 309 "//third_party/WebKit/Source/wtf:test_support", |
| 309 ] | 310 ] |
| 310 | 311 |
| 311 sources = generated_core_testing_dictionary_files + webcore_testing_files | 312 sources = generated_core_testing_dictionary_files + webcore_testing_files |
| 312 sources += [ | 313 sources += [ |
| 313 "$bindings_core_v8_output_dir/V8DictionaryTest.cpp", | 314 "$bindings_core_v8_output_dir/V8DictionaryTest.cpp", |
| 314 "$bindings_core_v8_output_dir/V8DictionaryTest.h", | 315 "$bindings_core_v8_output_dir/V8DictionaryTest.h", |
| 315 "$bindings_core_v8_output_dir/V8GarbageCollectedScriptWrappable.cpp", | 316 "$bindings_core_v8_output_dir/V8GarbageCollectedScriptWrappable.cpp", |
| 316 "$bindings_core_v8_output_dir/V8GarbageCollectedScriptWrappable.h", | 317 "$bindings_core_v8_output_dir/V8GarbageCollectedScriptWrappable.h", |
| 317 "$bindings_core_v8_output_dir/V8GCObservation.cpp", | 318 "$bindings_core_v8_output_dir/V8GCObservation.cpp", |
| 318 "$bindings_core_v8_output_dir/V8GCObservation.h", | 319 "$bindings_core_v8_output_dir/V8GCObservation.h", |
| (...skipping 717 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1036 "$blink_core_output_dir/{{source_name_part}}.h", | 1037 "$blink_core_output_dir/{{source_name_part}}.h", |
| 1037 ] | 1038 ] |
| 1038 args = [ | 1039 args = [ |
| 1039 "{{source}}", | 1040 "{{source}}", |
| 1040 rel_blink_core_gen_dir, | 1041 rel_blink_core_gen_dir, |
| 1041 bison_exe, | 1042 bison_exe, |
| 1042 ] | 1043 ] |
| 1043 | 1044 |
| 1044 deps = make_core_generated_deps | 1045 deps = make_core_generated_deps |
| 1045 } | 1046 } |
| OLD | NEW |