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

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

Issue 1851293002: Remove BLINK_ASSERT() and BLINK_ASSERT_NOT_REACHED() macros. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Check the |callbacks| for nullptr and use explicit delete. Created 4 years, 8 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 11 matching lines...) Expand all
22 blink_platform_sse_files = [ "graphics/cpu/x86/WebGLImageConversionSSE.h" ] 22 blink_platform_sse_files = [ "graphics/cpu/x86/WebGLImageConversionSSE.h" ]
23 23
24 # blink_common in blink_platform.gyp 24 # blink_common in blink_platform.gyp
25 component("blink_common") { 25 component("blink_common") {
26 visibility = [] # Allow re-assignment of list. 26 visibility = [] # Allow re-assignment of list.
27 visibility = [ "//third_party/WebKit/*" ] 27 visibility = [ "//third_party/WebKit/*" ]
28 sources = [ 28 sources = [
29 "exported/FilePathConversion.cpp", 29 "exported/FilePathConversion.cpp",
30 "exported/URLConversion.cpp", 30 "exported/URLConversion.cpp",
31 "exported/WebCString.cpp", 31 "exported/WebCString.cpp",
32 "exported/WebCommon.cpp",
33 "exported/WebString.cpp", 32 "exported/WebString.cpp",
34 ] 33 ]
35 34
36 defines = [ 35 defines = [
37 "BLINK_COMMON_IMPLEMENTATION=1", 36 "BLINK_COMMON_IMPLEMENTATION=1",
38 "INSIDE_BLINK", 37 "INSIDE_BLINK",
39 ] 38 ]
40 39
41 configs += [ 40 configs += [
42 "//build/config/compiler:wexit_time_destructors", 41 "//build/config/compiler:wexit_time_destructors",
(...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after
597 } 596 }
598 597
599 if (current_cpu == "x86" || current_cpu == "x64") { 598 if (current_cpu == "x86" || current_cpu == "x64") {
600 source_set("blink_x86_sse") { 599 source_set("blink_x86_sse") {
601 sources = blink_platform_sse_files 600 sources = blink_platform_sse_files
602 deps = [ 601 deps = [
603 ":blink_common", 602 ":blink_common",
604 ] 603 ]
605 } 604 }
606 } 605 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698