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

Side by Side Diff: skia/BUILD.gn

Issue 1253403002: [tracing] Adding Skia memory dump provider with cache totals (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nits. Created 5 years, 4 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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 if (current_cpu == "arm") { 8 if (current_cpu == "arm") {
9 import("//build/config/arm.gni") 9 import("//build/config/arm.gni")
10 } 10 }
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 "ext/google_logging.cc", 284 "ext/google_logging.cc",
285 "ext/image_operations.cc", 285 "ext/image_operations.cc",
286 "ext/opacity_filter_canvas.cc", 286 "ext/opacity_filter_canvas.cc",
287 "ext/pixel_ref_utils.cc", 287 "ext/pixel_ref_utils.cc",
288 "ext/platform_canvas.cc", 288 "ext/platform_canvas.cc",
289 "ext/platform_device.cc", 289 "ext/platform_device.cc",
290 "ext/platform_device_linux.cc", 290 "ext/platform_device_linux.cc",
291 "ext/platform_device_mac.cc", 291 "ext/platform_device_mac.cc",
292 "ext/platform_device_win.cc", 292 "ext/platform_device_win.cc",
293 "ext/recursive_gaussian_convolution.cc", 293 "ext/recursive_gaussian_convolution.cc",
294 "ext/skia_memory_dump_provider.cc",
294 "ext/skia_utils_base.cc", 295 "ext/skia_utils_base.cc",
295 "ext/skia_utils_ios.mm", 296 "ext/skia_utils_ios.mm",
296 "ext/skia_utils_mac.mm", 297 "ext/skia_utils_mac.mm",
297 "ext/skia_utils_win.cc", 298 "ext/skia_utils_win.cc",
298 ] 299 ]
299 300
300 if (current_cpu == "x86" || current_cpu == "x64") { 301 if (current_cpu == "x86" || current_cpu == "x64") {
301 sources += [ "ext/convolver_SSE2.cc" ] 302 sources += [ "ext/convolver_SSE2.cc" ]
302 } else if (current_cpu == "mipsel" && mips_dsp_rev >= 2) { 303 } else if (current_cpu == "mipsel" && mips_dsp_rev >= 2) {
303 sources += [ "ext/convolver_mips_dspr2.cc" ] 304 sources += [ "ext/convolver_mips_dspr2.cc" ]
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after
629 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", 630 "tools/filter_fuzz_stub/filter_fuzz_stub.cc",
630 ] 631 ]
631 632
632 deps = [ 633 deps = [
633 ":skia", 634 ":skia",
634 "//base", 635 "//base",
635 "//base/test:test_support", 636 "//base/test:test_support",
636 ] 637 ]
637 } 638 }
638 } 639 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698