Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(306)

Side by Side Diff: third_party/WebKit/Source/platform/BUILD.gn

Issue 2772613002: [instrumentation] Rename InspectorInstrumentation into CoreProbes (Closed)
Patch Set: sinkFor -> toCoreProbesSink Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 = "instrumentation/InstrumentingProbesCodeGenerator.py" 136 script = "instrumentation/InstrumentingProbesCodeGenerator.py"
137 137
138 input_file = "instrumentation/PlatformInstrumentation.idl" 138 input_file = "instrumentation/PlatformInstrumentation.pidl"
139 inputs = [ 139 inputs = [
140 input_file, 140 input_file,
141 "instrumentation/InstrumentingProbesImpl_cpp.template", 141 "instrumentation/templates/InstrumentingProbesImpl.cpp.tmpl",
142 "instrumentation/InstrumentingProbesImpl_h.template", 142 "instrumentation/templates/InstrumentingProbesInl.h.tmpl",
143 "instrumentation/InstrumentingAgents_h.template", 143 "instrumentation/templates/ProbesSink.h.tmpl",
144 ] 144 ]
145 145
146 outputs = [ 146 outputs = [
147 "$blink_platform_output_dir/PlatformInstrumentationAgents.h", 147 "$blink_platform_output_dir/PlatformInstrumentationSink.h",
148 "$blink_platform_output_dir/PlatformInstrumentationInl.h", 148 "$blink_platform_output_dir/PlatformInstrumentationInl.h",
149 "$blink_platform_output_dir/PlatformInstrumentationImpl.cpp", 149 "$blink_platform_output_dir/PlatformInstrumentationImpl.cpp",
150 ] 150 ]
151 151
152 args = [ 152 args = [
153 rebase_path(inputs[0], root_build_dir), 153 rebase_path(inputs[0], root_build_dir),
154 "--output_dir", 154 "--output_dir",
155 rebase_path(blink_platform_output_dir, root_build_dir), 155 rebase_path(blink_platform_output_dir, root_build_dir),
156 ] 156 ]
157 } 157 }
(...skipping 1970 matching lines...) Expand 10 before | Expand all | Expand 10 after
2128 "//third_party/WebKit/Source:config", 2128 "//third_party/WebKit/Source:config",
2129 "//third_party/WebKit/Source:inside_blink", 2129 "//third_party/WebKit/Source:inside_blink",
2130 ] 2130 ]
2131 2131
2132 deps = [ 2132 deps = [
2133 ":test_support", 2133 ":test_support",
2134 "//testing/gmock", 2134 "//testing/gmock",
2135 "//testing/gtest", 2135 "//testing/gtest",
2136 ] 2136 ]
2137 } 2137 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698