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

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

Issue 2932003002: Implement nextHopProtocol in PerformanceResourceTiming and PerformanceNavigationTiming. (Closed)
Patch Set: Make ConnectionInfoString() return AtomicString Created 3 years, 6 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 ] 101 ]
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",
112 "//third_party/angle:translator", 112 "//third_party/angle:translator",
113 "//third_party/iccjpeg", 113 "//third_party/iccjpeg",
114 "//third_party/icu", 114 "//third_party/icu",
115 "//third_party/libpng", 115 "//third_party/libpng",
116 "//third_party/libwebp", 116 "//third_party/libwebp",
117 "//third_party/libxml", 117 "//third_party/libxml",
118 "//third_party/libxslt", 118 "//third_party/libxslt",
119 "//third_party/ots", 119 "//third_party/ots",
120 "//third_party/snappy", 120 "//third_party/snappy",
121 "//third_party/sqlite", 121 "//third_party/sqlite",
122 "//third_party/zlib", 122 "//third_party/zlib",
123 "//ui/gfx/geometry", 123 "//ui/gfx/geometry",
124 "//url", 124 "//url",
125 "//v8", 125 "//v8",
126 ] 126 ]
127 deps = [ 127 deps = [
128 "//third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_generated", 128 "//third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_generated",
129 129
130 # FIXME: don't depend on bindings_modules http://crbug.com/358074 130 # FIXME: don't depend on bindings_modules http://crbug.com/358074
131 "//third_party/WebKit/Source/bindings/modules/v8:bindings_modules_v8_generat ed", 131 "//third_party/WebKit/Source/bindings/modules/v8:bindings_modules_v8_generat ed",
132 "//third_party/WebKit/Source/platform",
133 ] 132 ]
134 133
135 public_configs = [ 134 public_configs = [
136 ":core_include_dirs", 135 ":core_include_dirs",
137 "//third_party/WebKit/Source:config", 136 "//third_party/WebKit/Source:config",
138 "//third_party/WebKit/Source:inside_blink", 137 "//third_party/WebKit/Source:inside_blink",
139 ] 138 ]
140 139
141 if (use_openmax_dl_fft) { 140 if (use_openmax_dl_fft) {
142 deps += [ "//third_party/openmax_dl/dl" ] 141 deps += [ "//third_party/openmax_dl/dl" ]
(...skipping 1335 matching lines...) Expand 10 before | Expand all | Expand 10 after
1478 "testing/sim/SimTest.cpp", 1477 "testing/sim/SimTest.cpp",
1479 "testing/sim/SimTest.h", 1478 "testing/sim/SimTest.h",
1480 "testing/sim/SimWebFrameClient.cpp", 1479 "testing/sim/SimWebFrameClient.cpp",
1481 "testing/sim/SimWebFrameClient.h", 1480 "testing/sim/SimWebFrameClient.h",
1482 "testing/sim/SimWebViewClient.cpp", 1481 "testing/sim/SimWebViewClient.cpp",
1483 "testing/sim/SimWebViewClient.h", 1482 "testing/sim/SimWebViewClient.h",
1484 "timing/MemoryInfoTest.cpp", 1483 "timing/MemoryInfoTest.cpp",
1485 "timing/PerformanceBaseTest.cpp", 1484 "timing/PerformanceBaseTest.cpp",
1486 "timing/PerformanceNavigationTimingTest.cpp", 1485 "timing/PerformanceNavigationTimingTest.cpp",
1487 "timing/PerformanceObserverTest.cpp", 1486 "timing/PerformanceObserverTest.cpp",
1487 "timing/PerformanceResourceTimingTest.cpp",
1488 "timing/PerformanceTest.cpp", 1488 "timing/PerformanceTest.cpp",
1489 "workers/DedicatedWorkerTest.cpp", 1489 "workers/DedicatedWorkerTest.cpp",
1490 "workers/MainThreadWorkletTest.cpp", 1490 "workers/MainThreadWorkletTest.cpp",
1491 "workers/ThreadedWorkletTest.cpp", 1491 "workers/ThreadedWorkletTest.cpp",
1492 "workers/WorkerThreadTest.cpp", 1492 "workers/WorkerThreadTest.cpp",
1493 "workers/WorkerThreadTestHelper.h", 1493 "workers/WorkerThreadTestHelper.h",
1494 "xml/XPathFunctionsTest.cpp", 1494 "xml/XPathFunctionsTest.cpp",
1495 "xml/parser/SharedBufferReaderTest.cpp", 1495 "xml/parser/SharedBufferReaderTest.cpp",
1496 ] 1496 ]
1497 1497
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
1540 sources = [ 1540 sources = [
1541 "frame/csp/ContentSecurityPolicyFuzzer.cpp", 1541 "frame/csp/ContentSecurityPolicyFuzzer.cpp",
1542 ] 1542 ]
1543 deps = [ 1543 deps = [
1544 ":core", 1544 ":core",
1545 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", 1545 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support",
1546 ] 1546 ]
1547 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" 1547 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict"
1548 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" 1548 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus"
1549 } 1549 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698