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

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

Issue 1807853003: Deprecate some macros in wtf/Assertions.h in favor of base/logging.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 9 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 480 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 491
492 deps = [ 492 deps = [
493 ":platform", 493 ":platform",
494 "//base", 494 "//base",
495 "//base/test:test_support", 495 "//base/test:test_support",
496 "//content/test:test_support", 496 "//content/test:test_support",
497 "//testing/gmock", 497 "//testing/gmock",
498 "//testing/gtest", 498 "//testing/gtest",
499 "//third_party/WebKit/Source/platform:test_support", 499 "//third_party/WebKit/Source/platform:test_support",
500 "//third_party/WebKit/Source/wtf", 500 "//third_party/WebKit/Source/wtf",
501 "//third_party/WebKit/Source/wtf:test_support",
502 ] 501 ]
503 if (is_android) { 502 if (is_android) {
504 deps += [ 503 deps += [
505 "//base:base_java", 504 "//base:base_java",
506 "//content/shell/android:content_shell_assets", 505 "//content/shell/android:content_shell_assets",
507 "//net/android:net_java", 506 "//net/android:net_java",
508 ] 507 ]
509 } 508 }
510 } 509 }
511 510
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
543 "//cc", 542 "//cc",
544 "//cc:test_support", 543 "//cc:test_support",
545 "//cc/blink", 544 "//cc/blink",
546 "//mojo/edk/embedder:headers", 545 "//mojo/edk/embedder:headers",
547 "//mojo/edk/test:test_support", 546 "//mojo/edk/test:test_support",
548 "//mojo/public/cpp/bindings/tests:for_blink_tests", 547 "//mojo/public/cpp/bindings/tests:for_blink_tests",
549 "//skia", 548 "//skia",
550 "//testing/gmock", 549 "//testing/gmock",
551 "//testing/gtest", 550 "//testing/gtest",
552 "//third_party/WebKit/Source/wtf", 551 "//third_party/WebKit/Source/wtf",
553 "//third_party/WebKit/Source/wtf:test_support",
554 "//third_party/harfbuzz-ng", 552 "//third_party/harfbuzz-ng",
555 "//ui/gfx", 553 "//ui/gfx",
556 "//ui/gfx/geometry", 554 "//ui/gfx/geometry",
557 "//url", 555 "//url",
558 ] 556 ]
559 557
560 data_deps = [ 558 data_deps = [
561 ":blink_platform_unittests_data", 559 ":blink_platform_unittests_data",
562 ] 560 ]
563 561
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
598 } 596 }
599 597
600 if (current_cpu == "x86" || current_cpu == "x64") { 598 if (current_cpu == "x86" || current_cpu == "x64") {
601 source_set("blink_x86_sse") { 599 source_set("blink_x86_sse") {
602 sources = blink_platform_sse_files 600 sources = blink_platform_sse_files
603 deps = [ 601 deps = [
604 ":blink_common", 602 ":blink_common",
605 ] 603 ]
606 } 604 }
607 } 605 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698