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

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: Created 4 years, 8 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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 "//third_party/WebKit/Source/wtf", 332 "//third_party/WebKit/Source/wtf",
333 "//third_party/iccjpeg", 333 "//third_party/iccjpeg",
334 "//third_party/libpng", 334 "//third_party/libpng",
335 "//third_party/libwebp", 335 "//third_party/libwebp",
336 "//third_party/ots", 336 "//third_party/ots",
337 "//third_party/qcms", 337 "//third_party/qcms",
338 "//url", 338 "//url",
339 "//v8", 339 "//v8",
340 ] 340 ]
341 deps = [ 341 deps = [
342 "//components/link_header_util:link_header_util",
342 "//device/battery:mojo_bindings", 343 "//device/battery:mojo_bindings",
343 "//mojo/public/c/system:for_component", 344 "//mojo/public/c/system:for_component",
344 "//third_party/WebKit/Source/platform/heap", 345 "//third_party/WebKit/Source/platform/heap",
345 "//third_party/harfbuzz-ng", 346 "//third_party/harfbuzz-ng",
346 "//third_party/icu", 347 "//third_party/icu",
347 "//ui/gfx", 348 "//ui/gfx",
348 "//ui/gfx/geometry", 349 "//ui/gfx/geometry",
349 ] 350 ]
350 351
351 if (is_mac) { 352 if (is_mac) {
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
598 } 599 }
599 600
600 if (current_cpu == "x86" || current_cpu == "x64") { 601 if (current_cpu == "x86" || current_cpu == "x64") {
601 source_set("blink_x86_sse") { 602 source_set("blink_x86_sse") {
602 sources = blink_platform_sse_files 603 sources = blink_platform_sse_files
603 deps = [ 604 deps = [
604 ":blink_common", 605 ":blink_common",
605 ] 606 ]
606 } 607 }
607 } 608 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698