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

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: haraken@'s + esprehn@'s comments 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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 "//mojo/public/c/system:for_component", 342 "//mojo/public/c/system:for_component",
343 "//mojo/public/cpp/bindings:callback", 343 "//mojo/public/cpp/bindings:callback",
344 "//mojo/public/cpp/bindings:wtf_support",
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) {
352 sources -= [ 353 sources -= [
353 # Uses KillRingMac.mm instead. 354 # Uses KillRingMac.mm instead.
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
595 } 596 }
596 597
597 if (current_cpu == "x86" || current_cpu == "x64") { 598 if (current_cpu == "x86" || current_cpu == "x64") {
598 source_set("blink_x86_sse") { 599 source_set("blink_x86_sse") {
599 sources = blink_platform_sse_files 600 sources = blink_platform_sse_files
600 deps = [ 601 deps = [
601 ":blink_common", 602 ":blink_common",
602 ] 603 ]
603 } 604 }
604 } 605 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698