| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 args = [ | 91 args = [ |
| 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_in = "RuntimeEnabledFeatures.in" | 101 runtime_enabled_features_json5 = "RuntimeEnabledFeatures.json5" |
| 102 inputs = scripts_for_in_files + [ | 102 inputs = scripts_for_in_files + [ |
| 103 runtime_enabled_features_in, | 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 |
| 113 args = [ | 113 args = [ |
| 114 rebase_path(runtime_enabled_features_in, root_build_dir), | 114 rebase_path(runtime_enabled_features_json5, root_build_dir), |
| 115 "--output_dir", | 115 "--output_dir", |
| 116 rebase_path(blink_platform_output_dir, root_build_dir), | 116 rebase_path(blink_platform_output_dir, root_build_dir), |
| 117 ] | 117 ] |
| 118 } | 118 } |
| 119 | 119 |
| 120 action("color_data") { | 120 action("color_data") { |
| 121 script = "../build/scripts/gperf.py" | 121 script = "../build/scripts/gperf.py" |
| 122 | 122 |
| 123 color_data_gperf = "ColorData.gperf" | 123 color_data_gperf = "ColorData.gperf" |
| 124 inputs = [ | 124 inputs = [ |
| (...skipping 1986 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2111 "//third_party/WebKit/Source:config", | 2111 "//third_party/WebKit/Source:config", |
| 2112 "//third_party/WebKit/Source:inside_blink", | 2112 "//third_party/WebKit/Source:inside_blink", |
| 2113 ] | 2113 ] |
| 2114 | 2114 |
| 2115 deps = [ | 2115 deps = [ |
| 2116 ":test_support", | 2116 ":test_support", |
| 2117 "//testing/gmock", | 2117 "//testing/gmock", |
| 2118 "//testing/gtest", | 2118 "//testing/gtest", |
| 2119 ] | 2119 ] |
| 2120 } | 2120 } |
| OLD | NEW |