Chromium Code Reviews| 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_in = "RuntimeEnabledFeatures.json5" |
|
Rick Byers
2017/01/27 22:17:01
nit: rename this variable to match the new filenam
ktyliu
2017/01/29 21:22:14
Done
| |
| 102 inputs = scripts_for_in_files + [ | 102 inputs = scripts_for_in_files + [ |
|
Rick Byers
2017/01/27 22:17:01
this scripts_for_in_files should change too, right
ktyliu
2017/01/29 21:22:14
good catch
added json5_generator.py to scripts_for
Rick Byers
2017/02/06 20:46:24
Where is this? Did you forget to add build/script
ktyliu
2017/02/07 01:12:18
Done now.
Sorry I had that added in another CL an
| |
| 103 runtime_enabled_features_in, | 103 runtime_enabled_features_in, |
| 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 1997 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2110 "//third_party/WebKit/Source:config", | 2110 "//third_party/WebKit/Source:config", |
| 2111 "//third_party/WebKit/Source:inside_blink", | 2111 "//third_party/WebKit/Source:inside_blink", |
| 2112 ] | 2112 ] |
| 2113 | 2113 |
| 2114 deps = [ | 2114 deps = [ |
| 2115 ":test_support", | 2115 ":test_support", |
| 2116 "//testing/gmock", | 2116 "//testing/gmock", |
| 2117 "//testing/gtest", | 2117 "//testing/gtest", |
| 2118 ] | 2118 ] |
| 2119 } | 2119 } |
| OLD | NEW |