| 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 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 "//third_party/WebKit/Source/bindings/modules/v8:bindings_modules_generated"
, | 421 "//third_party/WebKit/Source/bindings/modules/v8:bindings_modules_generated"
, |
| 422 "//third_party/WebKit/Source/platform:make_platform_generated", | 422 "//third_party/WebKit/Source/platform:make_platform_generated", |
| 423 "//third_party/WebKit/Source/wtf", | 423 "//third_party/WebKit/Source/wtf", |
| 424 "//url", | 424 "//url", |
| 425 "//v8", | 425 "//v8", |
| 426 ] | 426 ] |
| 427 | 427 |
| 428 configs += [ ":core_include_dirs" ] | 428 configs += [ ":core_include_dirs" ] |
| 429 include_dirs = [ | 429 include_dirs = [ |
| 430 "$root_gen_dir/blink", | 430 "$root_gen_dir/blink", |
| 431 # FIXME: Remove these once the bindings script generates qualified | |
| 432 # includes for these correctly. (Sequences don"t work yet.) | |
| 433 bindings_v8_custom_dir, | |
| 434 "html", | |
| 435 "html/shadow", | |
| 436 "inspector", | |
| 437 "svg", | |
| 438 ] | 431 ] |
| 439 | 432 |
| 440 cflags = [] | 433 cflags = [] |
| 441 defines = [] | 434 defines = [] |
| 442 | 435 |
| 443 if (is_win && component_mode == "shared_library") { | 436 if (is_win && component_mode == "shared_library") { |
| 444 defines += [ "USING_V8_SHARED" ] | 437 defines += [ "USING_V8_SHARED" ] |
| 445 } | 438 } |
| 446 | 439 |
| 447 if (is_win) { | 440 if (is_win) { |
| (...skipping 622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1070 "$blink_core_output_dir/{{source_name_part}}.h", | 1063 "$blink_core_output_dir/{{source_name_part}}.h", |
| 1071 ] | 1064 ] |
| 1072 args = [ | 1065 args = [ |
| 1073 "{{source}}", | 1066 "{{source}}", |
| 1074 rel_blink_core_gen_dir, | 1067 rel_blink_core_gen_dir, |
| 1075 bison_exe, | 1068 bison_exe, |
| 1076 ] | 1069 ] |
| 1077 | 1070 |
| 1078 deps = make_core_generated_deps | 1071 deps = make_core_generated_deps |
| 1079 } | 1072 } |
| OLD | NEW |