| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 get_label_info(":character_data_generator($host_toolchain)", | 126 get_label_info(":character_data_generator($host_toolchain)", |
| 127 "root_out_dir") + "/character_data_generator", | 127 "root_out_dir") + "/character_data_generator", |
| 128 root_build_dir) | 128 root_build_dir) |
| 129 args = [ | 129 args = [ |
| 130 generator, | 130 generator, |
| 131 rebase_path(output_file, root_build_dir), | 131 rebase_path(output_file, root_build_dir), |
| 132 ] | 132 ] |
| 133 } | 133 } |
| 134 | 134 |
| 135 action("instrumentation_probes") { | 135 action("instrumentation_probes") { |
| 136 script = "probe/InstrumentingProbesCodeGenerator.py" | 136 script = "../build/scripts/make_instrumenting_probes.py" |
| 137 | 137 |
| 138 input_file = "probe/PlatformProbes.pidl" | 138 input_file = "probe/PlatformProbes.pidl" |
| 139 inputs = [ | 139 inputs = [ |
| 140 input_file, | 140 input_file, |
| 141 "probe/templates/InstrumentingProbesImpl.cpp.tmpl", | 141 "probe/PlatformProbes.json5", |
| 142 "probe/templates/InstrumentingProbesInl.h.tmpl", | 142 "../build/scripts/templates/InstrumentingProbesImpl.cpp.tmpl", |
| 143 "probe/templates/ProbeSink.h.tmpl", | 143 "../build/scripts/templates/InstrumentingProbesInl.h.tmpl", |
| 144 "../build/scripts/templates/ProbeSink.h.tmpl", |
| 144 ] | 145 ] |
| 145 | 146 |
| 146 outputs = [ | 147 outputs = [ |
| 147 "$blink_platform_output_dir/PlatformProbeSink.h", | 148 "$blink_platform_output_dir/PlatformProbeSink.h", |
| 148 "$blink_platform_output_dir/PlatformProbesInl.h", | 149 "$blink_platform_output_dir/PlatformProbesInl.h", |
| 149 "$blink_platform_output_dir/PlatformProbesImpl.cpp", | 150 "$blink_platform_output_dir/PlatformProbesImpl.cpp", |
| 150 ] | 151 ] |
| 151 | 152 |
| 152 args = [ | 153 args = [ |
| 153 rebase_path(inputs[0], root_build_dir), | 154 rebase_path(inputs[0], root_build_dir), |
| 155 "--config", |
| 156 rebase_path("probe/PlatformProbes.json5", root_build_dir), |
| 154 "--output_dir", | 157 "--output_dir", |
| 155 rebase_path(blink_platform_output_dir, root_build_dir), | 158 rebase_path(blink_platform_output_dir, root_build_dir), |
| 156 ] | 159 ] |
| 157 } | 160 } |
| 158 | 161 |
| 159 executable("character_data_generator") { | 162 executable("character_data_generator") { |
| 160 sources = [ | 163 sources = [ |
| 161 "text/CharacterPropertyDataGenerator.cpp", | 164 "text/CharacterPropertyDataGenerator.cpp", |
| 162 "text/CharacterPropertyDataGenerator.h", | 165 "text/CharacterPropertyDataGenerator.h", |
| 163 ] | 166 ] |
| (...skipping 1992 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2156 "//third_party/WebKit/Source:config", | 2159 "//third_party/WebKit/Source:config", |
| 2157 "//third_party/WebKit/Source:inside_blink", | 2160 "//third_party/WebKit/Source:inside_blink", |
| 2158 ] | 2161 ] |
| 2159 | 2162 |
| 2160 deps = [ | 2163 deps = [ |
| 2161 ":test_support", | 2164 ":test_support", |
| 2162 "//testing/gmock", | 2165 "//testing/gmock", |
| 2163 "//testing/gtest", | 2166 "//testing/gtest", |
| 2164 ] | 2167 ] |
| 2165 } | 2168 } |
| OLD | NEW |