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

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

Issue 1753543002: PaymentRequest Mojo bindings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@interface
Patch Set: Rename WebStuff into PlatformStuff 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 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 "//third_party/WebKit/Source/wtf", 328 "//third_party/WebKit/Source/wtf",
329 "//third_party/iccjpeg", 329 "//third_party/iccjpeg",
330 "//third_party/libpng", 330 "//third_party/libpng",
331 "//third_party/libwebp", 331 "//third_party/libwebp",
332 "//third_party/ots", 332 "//third_party/ots",
333 "//third_party/qcms", 333 "//third_party/qcms",
334 "//url", 334 "//url",
335 "//v8", 335 "//v8",
336 ] 336 ]
337 deps = [ 337 deps = [
338 "//components/payments:mojo_bindings",
338 "//device/battery:mojo_bindings", 339 "//device/battery:mojo_bindings",
339 "//mojo/public/c/system:for_component", 340 "//mojo/public/c/system:for_component",
340 "//third_party/WebKit/Source/platform/heap", 341 "//third_party/WebKit/Source/platform/heap",
341 "//third_party/harfbuzz-ng", 342 "//third_party/harfbuzz-ng",
342 "//third_party/icu", 343 "//third_party/icu",
343 "//ui/gfx", 344 "//ui/gfx",
344 "//ui/gfx/geometry", 345 "//ui/gfx/geometry",
345 ] 346 ]
346 347
347 if (is_mac) { 348 if (is_mac) {
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 } 584 }
584 585
585 if (current_cpu == "x86" || current_cpu == "x64") { 586 if (current_cpu == "x86" || current_cpu == "x64") {
586 source_set("blink_x86_sse") { 587 source_set("blink_x86_sse") {
587 sources = blink_platform_sse_files 588 sources = blink_platform_sse_files
588 deps = [ 589 deps = [
589 ":blink_common", 590 ":blink_common",
590 ] 591 ]
591 } 592 }
592 } 593 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698