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

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

Issue 2340323002: Add Origin Trials Test interface, rather than attaching trials directly to internals. (Closed)
Patch Set: Updates Created 4 years, 3 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/chromecast_build.gni") 5 import("//build/config/chromecast_build.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//build/split_static_library.gni") 7 import("//build/split_static_library.gni")
8 import("//testing/libfuzzer/fuzzer_test.gni") 8 import("//testing/libfuzzer/fuzzer_test.gni")
9 import("//third_party/WebKit/Source/bindings/bindings.gni") 9 import("//third_party/WebKit/Source/bindings/bindings.gni")
10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") 10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni")
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 204
205 deps = [ 205 deps = [
206 ":core", 206 ":core",
207 ":generated_testing_idls", 207 ":generated_testing_idls",
208 "//third_party/WebKit/Source/bindings/core/v8:testing", 208 "//third_party/WebKit/Source/bindings/core/v8:testing",
209 ] 209 ]
210 210
211 sources = [ 211 sources = [
212 "$blink_core_output_dir/testing/InternalSettingsGenerated.cpp", 212 "$blink_core_output_dir/testing/InternalSettingsGenerated.cpp",
213 "$blink_core_output_dir/testing/InternalSettingsGenerated.h", 213 "$blink_core_output_dir/testing/InternalSettingsGenerated.h",
214 "origin_trials/testing/InternalsFrobulate.cpp",
215 "origin_trials/testing/InternalsFrobulate.h",
216 "origin_trials/testing/InternalsFrobulateInterfaceBindings.h",
217 "origin_trials/testing/WorkerInternalsFrobulate.h",
218 "testing/DictionaryTest.cpp", 214 "testing/DictionaryTest.cpp",
219 "testing/DictionaryTest.h", 215 "testing/DictionaryTest.h",
220 "testing/DummyPageHolder.cpp", 216 "testing/DummyPageHolder.cpp",
221 "testing/DummyPageHolder.h", 217 "testing/DummyPageHolder.h",
222 "testing/GCObservation.cpp", 218 "testing/GCObservation.cpp",
223 "testing/GCObservation.h", 219 "testing/GCObservation.h",
224 "testing/GarbageCollectedScriptWrappable.cpp", 220 "testing/GarbageCollectedScriptWrappable.cpp",
225 "testing/GarbageCollectedScriptWrappable.h", 221 "testing/GarbageCollectedScriptWrappable.h",
226 "testing/InternalSettings.cpp", 222 "testing/InternalSettings.cpp",
227 "testing/InternalSettings.h", 223 "testing/InternalSettings.h",
228 "testing/Internals.cpp", 224 "testing/Internals.cpp",
229 "testing/Internals.h", 225 "testing/Internals.h",
230 "testing/LayerRect.h", 226 "testing/LayerRect.h",
231 "testing/LayerRectList.cpp", 227 "testing/LayerRectList.cpp",
232 "testing/LayerRectList.h", 228 "testing/LayerRectList.h",
233 "testing/MockHyphenation.cpp", 229 "testing/MockHyphenation.cpp",
234 "testing/MockHyphenation.h", 230 "testing/MockHyphenation.h",
235 "testing/NullExecutionContext.cpp", 231 "testing/NullExecutionContext.cpp",
236 "testing/NullExecutionContext.h", 232 "testing/NullExecutionContext.h",
233 "testing/OriginTrialsTest.cpp",
234 "testing/OriginTrialsTest.h",
235 "testing/OriginTrialsTestPartial.h",
237 "testing/PrivateScriptTest.cpp", 236 "testing/PrivateScriptTest.cpp",
238 "testing/PrivateScriptTest.h", 237 "testing/PrivateScriptTest.h",
239 "testing/TypeConversions.h", 238 "testing/TypeConversions.h",
240 "testing/UnionTypesTest.cpp", 239 "testing/UnionTypesTest.cpp",
241 "testing/UnionTypesTest.h", 240 "testing/UnionTypesTest.h",
242 "testing/WorkerInternals.cpp", 241 "testing/WorkerInternals.cpp",
243 "testing/WorkerInternals.h", 242 "testing/WorkerInternals.h",
244 "testing/v8/WebCoreTestSupport.cpp", 243 "testing/v8/WebCoreTestSupport.cpp",
245 "testing/v8/WebCoreTestSupport.h", 244 "testing/v8/WebCoreTestSupport.h",
246 ] 245 ]
(...skipping 990 matching lines...) Expand 10 before | Expand all | Expand 10 after
1237 sources = [ 1236 sources = [
1238 "html/parser/HTMLPreloadScannerFuzzer.cpp", 1237 "html/parser/HTMLPreloadScannerFuzzer.cpp",
1239 "html/parser/TextResourceDecoderForFuzzing.h", 1238 "html/parser/TextResourceDecoderForFuzzing.h",
1240 ] 1239 ]
1241 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" 1240 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser"
1242 deps = [ 1241 deps = [
1243 ":core", 1242 ":core",
1244 "../platform:blink_fuzzer_test_support", 1243 "../platform:blink_fuzzer_test_support",
1245 ] 1244 ]
1246 } 1245 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698