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

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

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

Powered by Google App Engine
This is Rietveld 408576698