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

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

Issue 2043753002: Declarative resource hints go through mojo IPC to //content Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 "//url", 358 "//url",
359 "//v8", 359 "//v8",
360 ] 360 ]
361 deps = [ 361 deps = [
362 ":blink_common", 362 ":blink_common",
363 "//components/link_header_util:link_header_util", 363 "//components/link_header_util:link_header_util",
364 "//mojo/public/c/system:for_component", 364 "//mojo/public/c/system:for_component",
365 "//mojo/public/cpp/bindings:callback", 365 "//mojo/public/cpp/bindings:callback",
366 "//mojo/public/cpp/bindings:wtf_support", 366 "//mojo/public/cpp/bindings:wtf_support",
367 "//third_party/WebKit/Source/platform/heap", 367 "//third_party/WebKit/Source/platform/heap",
368 "//third_party/WebKit/public:mojo_bindings",
Marijn Kruisselbrink 2016/06/07 20:22:25 Why are you depending on the non-blink mojo bindin
Charlie Harrison 2016/06/08 12:28:20 Removed. I thought I needed these but I guess not.
369 "//third_party/WebKit/public:mojo_bindings_blink",
368 "//third_party/harfbuzz-ng", 370 "//third_party/harfbuzz-ng",
369 "//third_party/icu", 371 "//third_party/icu",
370 "//ui/gfx", 372 "//ui/gfx",
371 "//ui/gfx/geometry", 373 "//ui/gfx/geometry",
372 ] 374 ]
373 375
374 if (is_mac) { 376 if (is_mac) {
375 sources -= [ 377 sources -= [
376 # Uses KillRingMac.mm instead. 378 # Uses KillRingMac.mm instead.
377 "KillRingNone.cpp", 379 "KillRingNone.cpp",
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
622 } 624 }
623 625
624 if (current_cpu == "x86" || current_cpu == "x64") { 626 if (current_cpu == "x86" || current_cpu == "x64") {
625 source_set("blink_x86_sse") { 627 source_set("blink_x86_sse") {
626 sources = blink_platform_sse_files 628 sources = blink_platform_sse_files
627 deps = [ 629 deps = [
628 ":blink_common", 630 ":blink_common",
629 ] 631 ]
630 } 632 }
631 } 633 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698