| 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 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 538 } | 538 } |
| 539 | 539 |
| 540 # "InternalRuntimeFlags" action in generated_testing_idls from GYP. | 540 # "InternalRuntimeFlags" action in generated_testing_idls from GYP. |
| 541 action("generated_testing_idls_internal_runtime_flags") { | 541 action("generated_testing_idls_internal_runtime_flags") { |
| 542 script = "../build/scripts/make_internal_runtime_flags.py" | 542 script = "../build/scripts/make_internal_runtime_flags.py" |
| 543 | 543 |
| 544 inputs = scripts_for_in_files + [ | 544 inputs = scripts_for_in_files + [ |
| 545 "../build/scripts/make_internal_runtime_flags.py", | 545 "../build/scripts/make_internal_runtime_flags.py", |
| 546 "../platform/RuntimeEnabledFeatures.in", | 546 "../platform/RuntimeEnabledFeatures.in", |
| 547 "../build/scripts/templates/InternalRuntimeFlags.h.tmpl", | 547 "../build/scripts/templates/InternalRuntimeFlags.h.tmpl", |
| 548 "../build/scripts/templates/InternalRuntimeFlags.cpp.tmpl", |
| 548 "../build/scripts/templates/InternalRuntimeFlags.idl.tmpl", | 549 "../build/scripts/templates/InternalRuntimeFlags.idl.tmpl", |
| 549 ] | 550 ] |
| 550 outputs = [ | 551 outputs = [ |
| 551 "$blink_core_output_dir/testing/InternalRuntimeFlags.idl", | 552 "$blink_core_output_dir/testing/InternalRuntimeFlags.idl", |
| 552 "$blink_core_output_dir/testing/InternalRuntimeFlags.h", | 553 "$blink_core_output_dir/testing/InternalRuntimeFlags.h", |
| 554 "$blink_core_output_dir/testing/InternalRuntimeFlags.cpp", |
| 553 ] | 555 ] |
| 554 | 556 |
| 555 args = [ | 557 args = [ |
| 556 rebase_path("../platform/RuntimeEnabledFeatures.in", root_build_dir), | 558 rebase_path("../platform/RuntimeEnabledFeatures.in", root_build_dir), |
| 557 "--output_dir", | 559 "--output_dir", |
| 558 "$rel_blink_core_gen_dir/testing", | 560 "$rel_blink_core_gen_dir/testing", |
| 559 ] | 561 ] |
| 560 } | 562 } |
| 561 | 563 |
| 562 # make_core_generated ---------------------------------------------------------- | 564 # make_core_generated ---------------------------------------------------------- |
| (...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1029 "$blink_core_output_dir/{{source_name_part}}.h", | 1031 "$blink_core_output_dir/{{source_name_part}}.h", |
| 1030 ] | 1032 ] |
| 1031 args = [ | 1033 args = [ |
| 1032 "{{source}}", | 1034 "{{source}}", |
| 1033 rel_blink_core_gen_dir, | 1035 rel_blink_core_gen_dir, |
| 1034 bison_exe, | 1036 bison_exe, |
| 1035 ] | 1037 ] |
| 1036 | 1038 |
| 1037 deps = make_core_generated_deps | 1039 deps = make_core_generated_deps |
| 1038 } | 1040 } |
| OLD | NEW |