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

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

Issue 2932003002: Implement nextHopProtocol in PerformanceResourceTiming and PerformanceNavigationTiming. (Closed)
Patch Set: Rebasline Created 3 years, 5 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/compiler/compiler.gni") 6 import("//build/config/compiler/compiler.gni")
7 import("//build/toolchain/toolchain.gni") 7 import("//build/toolchain/toolchain.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/split_static_library.gni") 9 import("//build/split_static_library.gni")
10 import("//testing/libfuzzer/fuzzer_test.gni") 10 import("//testing/libfuzzer/fuzzer_test.gni")
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 } 102 }
103 103
104 source_set("prerequisites") { 104 source_set("prerequisites") {
105 public_deps = [ 105 public_deps = [
106 "//gpu/command_buffer/client:gles2_c_lib", 106 "//gpu/command_buffer/client:gles2_c_lib",
107 "//services/service_manager/public/cpp", 107 "//services/service_manager/public/cpp",
108 "//skia", 108 "//skia",
109 "//third_party/WebKit/Source/core/inspector:generated", 109 "//third_party/WebKit/Source/core/inspector:generated",
110 "//third_party/WebKit/Source/core/probe:generated", 110 "//third_party/WebKit/Source/core/probe:generated",
111 "//third_party/WebKit/Source/platform/wtf", 111 "//third_party/WebKit/Source/platform/wtf",
112 "//third_party/WebKit/public:blink_headers",
112 "//third_party/angle:translator", 113 "//third_party/angle:translator",
113 "//third_party/iccjpeg", 114 "//third_party/iccjpeg",
114 "//third_party/icu", 115 "//third_party/icu",
115 "//third_party/libpng", 116 "//third_party/libpng",
116 "//third_party/libwebp", 117 "//third_party/libwebp",
117 "//third_party/libxml", 118 "//third_party/libxml",
118 "//third_party/libxslt", 119 "//third_party/libxslt",
119 "//third_party/ots", 120 "//third_party/ots",
120 "//third_party/snappy", 121 "//third_party/snappy",
121 "//third_party/sqlite", 122 "//third_party/sqlite",
(...skipping 1356 matching lines...) Expand 10 before | Expand all | Expand 10 after
1478 "testing/sim/SimTest.cpp", 1479 "testing/sim/SimTest.cpp",
1479 "testing/sim/SimTest.h", 1480 "testing/sim/SimTest.h",
1480 "testing/sim/SimWebFrameClient.cpp", 1481 "testing/sim/SimWebFrameClient.cpp",
1481 "testing/sim/SimWebFrameClient.h", 1482 "testing/sim/SimWebFrameClient.h",
1482 "testing/sim/SimWebViewClient.cpp", 1483 "testing/sim/SimWebViewClient.cpp",
1483 "testing/sim/SimWebViewClient.h", 1484 "testing/sim/SimWebViewClient.h",
1484 "timing/MemoryInfoTest.cpp", 1485 "timing/MemoryInfoTest.cpp",
1485 "timing/PerformanceBaseTest.cpp", 1486 "timing/PerformanceBaseTest.cpp",
1486 "timing/PerformanceNavigationTimingTest.cpp", 1487 "timing/PerformanceNavigationTimingTest.cpp",
1487 "timing/PerformanceObserverTest.cpp", 1488 "timing/PerformanceObserverTest.cpp",
1489 "timing/PerformanceResourceTimingTest.cpp",
1488 "timing/PerformanceTest.cpp", 1490 "timing/PerformanceTest.cpp",
1489 "workers/DedicatedWorkerTest.cpp", 1491 "workers/DedicatedWorkerTest.cpp",
1490 "workers/MainThreadWorkletTest.cpp", 1492 "workers/MainThreadWorkletTest.cpp",
1491 "workers/ThreadedWorkletTest.cpp", 1493 "workers/ThreadedWorkletTest.cpp",
1492 "workers/WorkerThreadTest.cpp", 1494 "workers/WorkerThreadTest.cpp",
1493 "workers/WorkerThreadTestHelper.h", 1495 "workers/WorkerThreadTestHelper.h",
1494 "xml/XPathFunctionsTest.cpp", 1496 "xml/XPathFunctionsTest.cpp",
1495 "xml/parser/SharedBufferReaderTest.cpp", 1497 "xml/parser/SharedBufferReaderTest.cpp",
1496 ] 1498 ]
1497 1499
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
1540 sources = [ 1542 sources = [
1541 "frame/csp/ContentSecurityPolicyFuzzer.cpp", 1543 "frame/csp/ContentSecurityPolicyFuzzer.cpp",
1542 ] 1544 ]
1543 deps = [ 1545 deps = [
1544 ":core", 1546 ":core",
1545 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", 1547 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support",
1546 ] 1548 ]
1547 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" 1549 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict"
1548 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" 1550 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus"
1549 } 1551 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698