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

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

Issue 1808203005: [OnionSoup] Moving VR service from content to Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 "//third_party/WebKit/Source/wtf", 329 "//third_party/WebKit/Source/wtf",
330 "//third_party/iccjpeg", 330 "//third_party/iccjpeg",
331 "//third_party/libpng", 331 "//third_party/libpng",
332 "//third_party/libwebp", 332 "//third_party/libwebp",
333 "//third_party/ots", 333 "//third_party/ots",
334 "//third_party/qcms", 334 "//third_party/qcms",
335 "//url", 335 "//url",
336 "//v8", 336 "//v8",
337 ] 337 ]
338 deps = [ 338 deps = [
339 "//content/common:mojo_bindings",
339 "//device/battery:mojo_bindings", 340 "//device/battery:mojo_bindings",
340 "//mojo/public/c/system:for_component", 341 "//mojo/public/c/system:for_component",
341 "//third_party/WebKit/Source/platform/heap", 342 "//third_party/WebKit/Source/platform/heap",
342 "//third_party/harfbuzz-ng", 343 "//third_party/harfbuzz-ng",
343 "//third_party/icu", 344 "//third_party/icu",
344 "//ui/gfx", 345 "//ui/gfx",
345 "//ui/gfx/geometry", 346 "//ui/gfx/geometry",
346 ] 347 ]
347 348
348 if (is_mac) { 349 if (is_mac) {
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
594 } 595 }
595 596
596 if (current_cpu == "x86" || current_cpu == "x64") { 597 if (current_cpu == "x86" || current_cpu == "x64") {
597 source_set("blink_x86_sse") { 598 source_set("blink_x86_sse") {
598 sources = blink_platform_sse_files 599 sources = blink_platform_sse_files
599 deps = [ 600 deps = [
600 ":blink_common", 601 ":blink_common",
601 ] 602 ]
602 } 603 }
603 } 604 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698