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

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: Attempt to fix build issue by updating dependencies of 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 387 matching lines...) Expand 10 before | Expand all | Expand 10 after
398 "//third_party/WebKit/Source:config", 398 "//third_party/WebKit/Source:config",
399 ] 399 ]
400 400
401 deps = [ 401 deps = [
402 ":blink_common", 402 ":blink_common",
403 ":platform", 403 ":platform",
404 ":test_support", 404 ":test_support",
405 "//base", 405 "//base",
406 "//base/allocator", 406 "//base/allocator",
407 "//base/test:test_support", 407 "//base/test:test_support",
408 "//cc",
409 "//cc:test_support",
408 "//cc/blink", 410 "//cc/blink",
409 "//skia", 411 "//skia",
410 "//testing/gmock", 412 "//testing/gmock",
411 "//testing/gtest", 413 "//testing/gtest",
412 "//third_party/WebKit/Source/wtf", 414 "//third_party/WebKit/Source/wtf",
413 "//third_party/WebKit/Source/wtf:test_support", 415 "//third_party/WebKit/Source/wtf:test_support",
414 "//third_party/harfbuzz-ng", 416 "//third_party/harfbuzz-ng",
417 "//ui/gfx",
418 "//ui/gfx/geometry",
415 "//url", 419 "//url",
416 ] 420 ]
417 421
418 defines = [ "INSIDE_BLINK" ] 422 defines = [ "INSIDE_BLINK" ]
419 423
420 include_dirs = [ "$root_gen_dir/blink" ] 424 include_dirs = [ "$root_gen_dir/blink" ]
421 } 425 }
422 426
423 if (current_cpu == "arm") { 427 if (current_cpu == "arm") {
424 source_set("blink_arm_neon") { 428 source_set("blink_arm_neon") {
(...skipping 17 matching lines...) Expand all
442 } 446 }
443 447
444 if (current_cpu == "x86" || current_cpu == "x64") { 448 if (current_cpu == "x86" || current_cpu == "x64") {
445 source_set("blink_x86_sse") { 449 source_set("blink_x86_sse") {
446 sources = blink_platform_sse_files 450 sources = blink_platform_sse_files
447 deps = [ 451 deps = [
448 ":blink_common", 452 ":blink_common",
449 ] 453 ]
450 } 454 }
451 } 455 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698