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

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

Issue 1419913002: Remove blink::WebLayerClient and WebGraphicsLayerDebugInfo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: try making webcore_shared link with base to fix win dbg component Created 5 years, 1 month 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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 "BLINK_PLATFORM_IMPLEMENTATION=1", 189 "BLINK_PLATFORM_IMPLEMENTATION=1",
190 "INSIDE_BLINK", 190 "INSIDE_BLINK",
191 ] 191 ]
192 192
193 include_dirs = [ 193 include_dirs = [
194 #"$angle_path/include", 194 #"$angle_path/include",
195 "$root_gen_dir/blink", 195 "$root_gen_dir/blink",
196 ] 196 ]
197 197
198 public_deps = [ 198 public_deps = [
199 "//base",
200 "//cc",
199 "//gpu/command_buffer/client:gles2_c_lib", 201 "//gpu/command_buffer/client:gles2_c_lib",
200 "//skia", 202 "//skia",
201 "//third_party:jpeg", 203 "//third_party:jpeg",
202 "//third_party/iccjpeg", 204 "//third_party/iccjpeg",
203 "//third_party/libpng", 205 "//third_party/libpng",
204 "//third_party/libwebp", 206 "//third_party/libwebp",
205 "//third_party/ots", 207 "//third_party/ots",
206 "//third_party/qcms", 208 "//third_party/qcms",
207 "//url", 209 "//url",
208 "//v8", 210 "//v8",
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 } 423 }
422 424
423 if (current_cpu == "x86" || current_cpu == "x64") { 425 if (current_cpu == "x86" || current_cpu == "x64") {
424 source_set("blink_x86_sse") { 426 source_set("blink_x86_sse") {
425 sources = blink_platform_sse_files 427 sources = blink_platform_sse_files
426 deps = [ 428 deps = [
427 ":blink_common", 429 ":blink_common",
428 ] 430 ]
429 } 431 }
430 } 432 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698