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

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

Issue 1547893003: WIP - compositor worker mega patch. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 11 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 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
399 "//third_party/WebKit/Source:config", 399 "//third_party/WebKit/Source:config",
400 ] 400 ]
401 401
402 deps = [ 402 deps = [
403 ":blink_common", 403 ":blink_common",
404 ":platform", 404 ":platform",
405 ":test_support", 405 ":test_support",
406 "//base", 406 "//base",
407 "//base/allocator", 407 "//base/allocator",
408 "//base/test:test_support", 408 "//base/test:test_support",
409 "//cc",
410 "//cc:test_support",
409 "//cc/blink", 411 "//cc/blink",
410 "//skia", 412 "//skia",
411 "//testing/gmock", 413 "//testing/gmock",
412 "//testing/gtest", 414 "//testing/gtest",
413 "//third_party/WebKit/Source/wtf", 415 "//third_party/WebKit/Source/wtf",
414 "//third_party/WebKit/Source/wtf:test_support", 416 "//third_party/WebKit/Source/wtf:test_support",
415 "//third_party/harfbuzz-ng", 417 "//third_party/harfbuzz-ng",
418 "//ui/gfx",
419 "//ui/gfx/geometry",
416 "//url", 420 "//url",
417 ] 421 ]
418 422
419 defines = [ "INSIDE_BLINK" ] 423 defines = [ "INSIDE_BLINK" ]
420 424
421 include_dirs = [ "$root_gen_dir/blink" ] 425 include_dirs = [ "$root_gen_dir/blink" ]
422 } 426 }
423 427
424 if (current_cpu == "arm") { 428 if (current_cpu == "arm") {
425 source_set("blink_arm_neon") { 429 source_set("blink_arm_neon") {
(...skipping 17 matching lines...) Expand all
443 } 447 }
444 448
445 if (current_cpu == "x86" || current_cpu == "x64") { 449 if (current_cpu == "x86" || current_cpu == "x64") {
446 source_set("blink_x86_sse") { 450 source_set("blink_x86_sse") {
447 sources = blink_platform_sse_files 451 sources = blink_platform_sse_files
448 deps = [ 452 deps = [
449 ":blink_common", 453 ":blink_common",
450 ] 454 ]
451 } 455 }
452 } 456 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698