| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/libfuzzer/fuzzer_test.gni") | 7 import("//testing/libfuzzer/fuzzer_test.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 import("//third_party/WebKit/public/public_features.gni") | 9 import("//third_party/WebKit/public/public_features.gni") |
| 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") | 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 rebase_path(http_names_in, root_build_dir), | 92 rebase_path(http_names_in, root_build_dir), |
| 93 "--output_dir", | 93 "--output_dir", |
| 94 rebase_path(blink_platform_output_dir, root_build_dir), | 94 rebase_path(blink_platform_output_dir, root_build_dir), |
| 95 ] | 95 ] |
| 96 } | 96 } |
| 97 | 97 |
| 98 action("runtime_enabled_features") { | 98 action("runtime_enabled_features") { |
| 99 script = "../build/scripts/make_runtime_features.py" | 99 script = "../build/scripts/make_runtime_features.py" |
| 100 | 100 |
| 101 runtime_enabled_features_json5 = "RuntimeEnabledFeatures.json5" | 101 runtime_enabled_features_json5 = "RuntimeEnabledFeatures.json5" |
| 102 inputs = scripts_for_in_files + [ | 102 inputs = scripts_for_json5_files + [ |
| 103 runtime_enabled_features_json5, | 103 runtime_enabled_features_json5, |
| 104 "../build/scripts/templates/RuntimeEnabledFeatures.cpp.tmpl", | 104 "../build/scripts/templates/RuntimeEnabledFeatures.cpp.tmpl", |
| 105 "../build/scripts/templates/RuntimeEnabledFeatures.h.tmpl", | 105 "../build/scripts/templates/RuntimeEnabledFeatures.h.tmpl", |
| 106 ] | 106 ] |
| 107 | 107 |
| 108 outputs = [ | 108 outputs = [ |
| 109 "$blink_platform_output_dir/RuntimeEnabledFeatures.cpp", | 109 "$blink_platform_output_dir/RuntimeEnabledFeatures.cpp", |
| 110 "$blink_platform_output_dir/RuntimeEnabledFeatures.h", | 110 "$blink_platform_output_dir/RuntimeEnabledFeatures.h", |
| 111 ] | 111 ] |
| 112 | 112 |
| (...skipping 2002 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2115 "//third_party/WebKit/Source:config", | 2115 "//third_party/WebKit/Source:config", |
| 2116 "//third_party/WebKit/Source:inside_blink", | 2116 "//third_party/WebKit/Source:inside_blink", |
| 2117 ] | 2117 ] |
| 2118 | 2118 |
| 2119 deps = [ | 2119 deps = [ |
| 2120 ":test_support", | 2120 ":test_support", |
| 2121 "//testing/gmock", | 2121 "//testing/gmock", |
| 2122 "//testing/gtest", | 2122 "//testing/gtest", |
| 2123 ] | 2123 ] |
| 2124 } | 2124 } |
| OLD | NEW |