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

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

Issue 1811163002: Share link header parsing code between blink and content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@base-optional
Patch Set: address mmenke's comments Created 4 years, 7 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/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 import("//third_party/WebKit/Source/build/scripts/scripts.gni") 7 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
8 import("//third_party/WebKit/Source/config.gni") 8 import("//third_party/WebKit/Source/config.gni")
9 import("//third_party/WebKit/Source/platform/platform.gni") 9 import("//third_party/WebKit/Source/platform/platform.gni")
10 import("//third_party/WebKit/Source/platform/platform_generated.gni") 10 import("//third_party/WebKit/Source/platform/platform_generated.gni")
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 "//third_party/WebKit/Source/wtf", 335 "//third_party/WebKit/Source/wtf",
336 "//third_party/iccjpeg", 336 "//third_party/iccjpeg",
337 "//third_party/libpng", 337 "//third_party/libpng",
338 "//third_party/libwebp", 338 "//third_party/libwebp",
339 "//third_party/ots", 339 "//third_party/ots",
340 "//third_party/qcms", 340 "//third_party/qcms",
341 "//url", 341 "//url",
342 "//v8", 342 "//v8",
343 ] 343 ]
344 deps = [ 344 deps = [
345 "//components/link_header_util:link_header_util",
345 "//mojo/public/c/system:for_component", 346 "//mojo/public/c/system:for_component",
346 "//mojo/public/cpp/bindings:callback", 347 "//mojo/public/cpp/bindings:callback",
347 "//mojo/public/cpp/bindings:wtf_support", 348 "//mojo/public/cpp/bindings:wtf_support",
348 "//third_party/WebKit/Source/platform/heap", 349 "//third_party/WebKit/Source/platform/heap",
349 "//third_party/harfbuzz-ng", 350 "//third_party/harfbuzz-ng",
350 "//third_party/icu", 351 "//third_party/icu",
351 "//ui/gfx", 352 "//ui/gfx",
352 "//ui/gfx/geometry", 353 "//ui/gfx/geometry",
353 ] 354 ]
354 355
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
596 } 597 }
597 598
598 if (current_cpu == "x86" || current_cpu == "x64") { 599 if (current_cpu == "x86" || current_cpu == "x64") {
599 source_set("blink_x86_sse") { 600 source_set("blink_x86_sse") {
600 sources = blink_platform_sse_files 601 sources = blink_platform_sse_files
601 deps = [ 602 deps = [
602 ":blink_common", 603 ":blink_common",
603 ] 604 ]
604 } 605 }
605 } 606 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698