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

Side by Side Diff: skia/BUILD.gn

Issue 2607603004: Remove PlatformCanvas::GetBitmapContext() (Closed)
Patch Set: Mac build fix Created 3 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
« no previous file with comments | « no previous file | skia/ext/bitmap_platform_device_mac.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//build/config/sanitizers/sanitizers.gni") 7 import("//build/config/sanitizers/sanitizers.gni")
8 import("//printing/features/features.gni") 8 import("//printing/features/features.gni")
9 import("//testing/test.gni") 9 import("//testing/test.gni")
10 import("//third_party/skia/gn/shared_sources.gni") 10 import("//third_party/skia/gn/shared_sources.gni")
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 "ext/analysis_canvas.cc", 196 "ext/analysis_canvas.cc",
197 "ext/benchmarking_canvas.cc", 197 "ext/benchmarking_canvas.cc",
198 "ext/convolver.cc", 198 "ext/convolver.cc",
199 "ext/event_tracer_impl.cc", 199 "ext/event_tracer_impl.cc",
200 "ext/fontmgr_default_linux.cc", 200 "ext/fontmgr_default_linux.cc",
201 "ext/fontmgr_default_win.cc", 201 "ext/fontmgr_default_win.cc",
202 "ext/google_logging.cc", 202 "ext/google_logging.cc",
203 "ext/image_operations.cc", 203 "ext/image_operations.cc",
204 "ext/opacity_filter_canvas.cc", 204 "ext/opacity_filter_canvas.cc",
205 "ext/platform_device.cc", 205 "ext/platform_device.cc",
206 "ext/platform_device_linux.cc",
207 "ext/platform_device_mac.cc",
208 "ext/platform_device_win.cc",
209 "ext/recursive_gaussian_convolution.cc", 206 "ext/recursive_gaussian_convolution.cc",
210 "ext/skia_histogram.cc", 207 "ext/skia_histogram.cc",
211 "ext/skia_memory_dump_provider.cc", 208 "ext/skia_memory_dump_provider.cc",
212 "ext/skia_trace_memory_dump_impl.cc", 209 "ext/skia_trace_memory_dump_impl.cc",
213 "ext/skia_utils_base.cc", 210 "ext/skia_utils_base.cc",
214 "ext/skia_utils_ios.h", 211 "ext/skia_utils_ios.h",
215 "ext/skia_utils_ios.mm", 212 "ext/skia_utils_ios.mm",
216 "ext/skia_utils_mac.mm", 213 "ext/skia_utils_mac.mm",
217 "ext/skia_utils_win.cc", 214 "ext/skia_utils_win.cc",
218 ] 215 ]
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
413 deps += [ 410 deps += [
414 "//build/linux:fontconfig", 411 "//build/linux:fontconfig",
415 "//build/linux:freetype2", 412 "//build/linux:freetype2",
416 "//third_party/expat", 413 "//third_party/expat",
417 "//third_party/icu:icuuc", 414 "//third_party/icu:icuuc",
418 ] 415 ]
419 } 416 }
420 417
421 if (is_android) { 418 if (is_android) {
422 set_sources_assignment_filter([]) 419 set_sources_assignment_filter([])
423 sources += [ "ext/platform_device_linux.cc" ]
424 set_sources_assignment_filter(sources_assignment_filter) 420 set_sources_assignment_filter(sources_assignment_filter)
425 deps += [ 421 deps += [
426 "//third_party/android_tools:cpu_features", 422 "//third_party/android_tools:cpu_features",
427 "//third_party/expat", 423 "//third_party/expat",
428 "//third_party/freetype-android:freetype", 424 "//third_party/freetype-android:freetype",
429 ] 425 ]
430 } 426 }
431 427
432 if (skia_support_pdf) { 428 if (skia_support_pdf) {
433 deps += [ 429 deps += [
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
716 712
717 deps = [ 713 deps = [
718 ":skia", 714 ":skia",
719 "//base", 715 "//base",
720 "//base/test:test_support", 716 "//base/test:test_support",
721 "//build/config/sanitizers:deps", 717 "//build/config/sanitizers:deps",
722 "//build/win:default_exe_manifest", 718 "//build/win:default_exe_manifest",
723 ] 719 ]
724 } 720 }
725 } 721 }
OLDNEW
« no previous file with comments | « no previous file | skia/ext/bitmap_platform_device_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698